3179 lines
62 KiB
CSS
3179 lines
62 KiB
CSS
:root {
|
|
/* ════════════════════════════════════
|
|
DESIGN TOKENS — camp.css
|
|
════════════════════════════════════ */
|
|
|
|
/* ─── Brand Colors ─── */
|
|
--color-primary: #E8753A;
|
|
--color-primary-hover: #D6652E;
|
|
--color-secondary: #3BB2A0;
|
|
--color-accent: #FFD43E;
|
|
|
|
/* ─── Neutral Colors ─── */
|
|
--color-text: #1C2B2D;
|
|
--color-text-muted: #5A6B6D;
|
|
--color-text-light: #8A9A9D;
|
|
--color-bg: #FFFFFF;
|
|
--color-bg-warm: #F8F4EF;
|
|
--color-bg-alt: #EEF3EE;
|
|
|
|
/* ─── Legacy aliases ─── */
|
|
--bg-hero: var(--color-bg-warm);
|
|
--bg-white: var(--color-bg);
|
|
--bg-mint: var(--color-bg-alt);
|
|
|
|
/* ─── Typography ─── */
|
|
--font-display: 'Montserrat', sans-serif;
|
|
--font-body: 'Inter', sans-serif;
|
|
|
|
/* ─── Font Sizes ─── */
|
|
--fs-display: clamp(36px, 5vw, 52px);
|
|
--fs-h1: clamp(28px, 3.6vw, 36px);
|
|
--fs-h2: clamp(24px, 2.8vw, 32px);
|
|
--fs-h3: clamp(18px, 2vw, 24px);
|
|
--fs-body: 16px;
|
|
--fs-small: 14px;
|
|
|
|
/* ─── Spacing Scale ─── */
|
|
--space-xs: 4px;
|
|
--space-sm: 8px;
|
|
--space-md: 16px;
|
|
--space-lg: 24px;
|
|
--space-xl: 32px;
|
|
--space-2xl: 48px;
|
|
--space-3xl: 64px;
|
|
|
|
/* ─── Section ─── */
|
|
--section-padding: clamp(40px, 8vw, 100px);
|
|
|
|
/* ─── Card ─── */
|
|
--card-padding: clamp(20px, 3vw, 32px);
|
|
--card-radius: 20px;
|
|
--card-shadow: 0 2px 16px rgba(0,0,0,0.06);
|
|
--card-shadow-hover: 0 8px 32px rgba(0,0,0,0.1);
|
|
|
|
/* ─── Border Radius ─── */
|
|
--radius-sm: 8px;
|
|
--radius-md: 12px;
|
|
--radius-lg: 16px;
|
|
--radius-xl: 20px;
|
|
--radius-full: 9999px;
|
|
|
|
/* ─── Shadows ─── */
|
|
--shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
|
|
--shadow-md: 0 4px 20px rgba(0,0,0,0.08);
|
|
--shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
|
|
|
|
/* ─── Transitions ─── */
|
|
--transition-fast: 0.2s ease;
|
|
--transition-normal: 0.3s ease;
|
|
}
|
|
|
|
html {
|
|
height: auto;
|
|
}
|
|
|
|
/* =========================== */
|
|
/* camp */
|
|
.camp {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0;
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.camp section {
|
|
padding-top: var(--section-padding);
|
|
padding-bottom: var(--section-padding);
|
|
}
|
|
|
|
.container_camp {
|
|
width: 100%;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 clamp(16px, 3vw, 24px);
|
|
}
|
|
|
|
.camp p {
|
|
font-weight: 400;
|
|
margin: 0 0 20px 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.camp_title {
|
|
font-family: var(--font-display);
|
|
font-weight: 700;
|
|
color: var(--color-text);
|
|
font-size: var(--fs-h1);
|
|
line-height: 1.2;
|
|
text-align: center;
|
|
padding-bottom: clamp(24px, 3vw, 32px);
|
|
}
|
|
|
|
.camp_text {
|
|
font-family: var(--font-body);
|
|
font-size: var(--fs-body);
|
|
line-height: 1.6;
|
|
color: var(--color-text-muted);
|
|
text-align: center;
|
|
max-width: 65ch;
|
|
margin: 0 auto 50px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
/* banner */
|
|
.banner {
|
|
position: relative;
|
|
display: flex;
|
|
border-radius: 40px;
|
|
justify-content: space-between;
|
|
overflow: hidden;
|
|
background: rgb(58, 154, 104);
|
|
background: linear-gradient(45deg, rgba(58, 154, 104, 1) 0%, rgba(47, 204, 122, 1) 100%);
|
|
}
|
|
|
|
.banner_label {
|
|
position: absolute;
|
|
padding: 10px 20px;
|
|
color: #fff;
|
|
font-size: 20px;
|
|
border-radius: 30px;
|
|
}
|
|
|
|
.banner_label1 {
|
|
top: 45%;
|
|
left: 50%;
|
|
background-color: var(--color-primary);
|
|
animation: animate1 4s infinite;
|
|
}
|
|
|
|
.banner_label2 {
|
|
top: 80%;
|
|
left: 48%;
|
|
background-color: var(--color-secondary);
|
|
animation: animate2 3s infinite;
|
|
}
|
|
|
|
.banner_label3 {
|
|
top: 80%;
|
|
left: 80%;
|
|
background-color: #FFB74D;
|
|
animation: animate3 2.5s infinite;
|
|
rotate: -15deg;
|
|
}
|
|
|
|
@keyframes animate1 {
|
|
0% {
|
|
rotate: 15deg;
|
|
}
|
|
|
|
50% {
|
|
rotate: 25deg;
|
|
}
|
|
|
|
100% {
|
|
rotate: 15deg;
|
|
}
|
|
}
|
|
|
|
@keyframes animate2 {
|
|
0% {
|
|
rotate: -15deg;
|
|
}
|
|
|
|
50% {
|
|
rotate: -25deg;
|
|
}
|
|
|
|
100% {
|
|
rotate: -15deg;
|
|
}
|
|
}
|
|
|
|
@keyframes animate3 {
|
|
0% {
|
|
scale: 1;
|
|
}
|
|
|
|
50% {
|
|
scale: 1.1;
|
|
}
|
|
|
|
100% {
|
|
scale: 1;
|
|
}
|
|
}
|
|
|
|
.banner-add {
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
}
|
|
|
|
.banner__left-part {
|
|
width: 50%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 30px;
|
|
padding: 40px 30px 40px 40px;
|
|
}
|
|
|
|
.banner_title {
|
|
color: #fff;
|
|
font-size: 41px;
|
|
line-height: 1.25;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.banner_text {
|
|
color: #fff;
|
|
font-size: 18px;
|
|
line-height: 1.3;
|
|
padding: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.banner_text-min {
|
|
color: #fff;
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
opacity: 0.65;
|
|
}
|
|
|
|
.banner_btn {
|
|
color: #fff;
|
|
font-size: 20px;
|
|
line-height: 1.2;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
border: 2px solid #42425c;
|
|
border-radius: 50px;
|
|
background-color: #42425c;
|
|
transition: .3s;
|
|
padding: 20px 30px;
|
|
width: fit-content;
|
|
}
|
|
|
|
.banner_btn:hover {
|
|
background-color: #fff;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
.banner__right-part {
|
|
border-radius: 40px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
|
|
/* banner END */
|
|
|
|
/* =========================== */
|
|
|
|
/* about-us */
|
|
|
|
/* =========================== */
|
|
|
|
.about-us {
|
|
background: #ffffff;
|
|
|
|
}
|
|
|
|
.about-us__wrapper {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 60px;
|
|
padding: 0 24px;
|
|
overflow: visible;
|
|
}
|
|
|
|
.about-us__image-col {
|
|
|
|
flex: 0 0 45%;
|
|
|
|
max-width: 45%;
|
|
|
|
}
|
|
|
|
.about-us__frame {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.about-us__image {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
border-radius: 24px;
|
|
|
|
object-fit: cover;
|
|
|
|
aspect-ratio: 4 / 3;
|
|
|
|
border: 5px solid #fff;
|
|
box-shadow: var(--shadow-lg);
|
|
|
|
}
|
|
|
|
.about-us__image-placeholder {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
gap: 12px;
|
|
|
|
width: 100%;
|
|
|
|
aspect-ratio: 4 / 3;
|
|
|
|
border-radius: 24px;
|
|
|
|
background: #f0f0f0;
|
|
|
|
color: var(--color-text-light);
|
|
|
|
font-size: 14px;
|
|
|
|
font-family: Inter, sans-serif;
|
|
|
|
border: 2px dashed #ccc;
|
|
|
|
}
|
|
|
|
.about-us__image-placeholder svg {
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
color: #bbb;
|
|
|
|
}
|
|
|
|
.about-us__content-col {
|
|
flex: 1;
|
|
min-width: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 24px;
|
|
}
|
|
|
|
.about-us__title {
|
|
text-align: left;
|
|
padding-bottom: 0;
|
|
font-size: clamp(22px, 2.6vw, 26px);
|
|
}
|
|
|
|
.about-us__text {
|
|
font-family: var(--font-body);
|
|
font-size: 16px;
|
|
line-height: 1.65;
|
|
font-weight: 400;
|
|
color: var(--color-text-muted);
|
|
text-align: left;
|
|
max-width: 65ch;
|
|
margin: 0 0;
|
|
}
|
|
|
|
.about-us__social-proof {
|
|
}
|
|
|
|
.about-us__badge {
|
|
display: inline-block;
|
|
font-family: var(--font-display);
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
color: var(--color-primary);
|
|
background: rgba(232, 117, 58, 0.08);
|
|
padding: 6px 16px;
|
|
border-radius: var(--radius-full);
|
|
}
|
|
|
|
.about-us__cta {
|
|
}
|
|
|
|
.about-us__cta-link {
|
|
display: inline-block;
|
|
font-family: var(--font-display);
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
color: #fff;
|
|
background: var(--color-primary);
|
|
padding: 14px 28px;
|
|
border-radius: var(--radius-full);
|
|
text-decoration: none;
|
|
transition: background var(--transition-fast), transform var(--transition-fast);
|
|
}
|
|
|
|
.about-us__cta-link:hover {
|
|
background: var(--color-primary-hover);
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
.about-us__doodle {
|
|
|
|
position: absolute;
|
|
|
|
object-fit: contain;
|
|
|
|
pointer-events: none;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
.about-us__doodle--plane {
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
top: -12px;
|
|
|
|
right: -16px;
|
|
|
|
}
|
|
|
|
.about-us__doodle--heart {
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
bottom: -16px;
|
|
|
|
left: -12px;
|
|
|
|
}
|
|
|
|
@media (max-width: 780px) {
|
|
|
|
.about-us__wrapper {
|
|
|
|
flex-direction: column;
|
|
|
|
padding: 24px 20px;
|
|
|
|
gap: 24px;
|
|
|
|
}
|
|
|
|
.about-us__image-col {
|
|
|
|
flex: 0 0 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
.about-us__title {
|
|
padding-bottom: 0;
|
|
|
|
font-size: 22px;
|
|
}
|
|
|
|
.about-us__text {
|
|
|
|
font-size: 16px;
|
|
text-align: left;
|
|
|
|
line-height: 1.6;
|
|
|
|
}
|
|
|
|
.about-us__doodle--plane {
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
top: -12px;
|
|
|
|
right: -16px;
|
|
|
|
}
|
|
|
|
.about-us__doodle--heart {
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
bottom: -16px;
|
|
|
|
left: -12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* suggestions icon wrap */
|
|
.suggestions__icon-wrap {
|
|
width: 72px;
|
|
height: 72px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: rgba(232, 117, 58, 0.08);
|
|
border-radius: var(--radius-lg);
|
|
margin: 0 auto var(--space-md);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.suggestions__icon {
|
|
width: 40px;
|
|
height: 40px;
|
|
object-fit: contain;
|
|
}
|
|
|
|
/* suggestions card hover */
|
|
.suggestions__item {
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
cursor: default;
|
|
}
|
|
|
|
.suggestions__item:hover {
|
|
transform: translateY(-6px);
|
|
box-shadow: var(--card-shadow-hover);
|
|
}
|
|
|
|
/* ═══ SECTION REVEAL — fade + translateY + scale ═══ */
|
|
|
|
/* suggestions */
|
|
|
|
@keyframes sugFadeUp {
|
|
from { transform: translateY(24px) scale(0.97); opacity: 0; }
|
|
to { transform: translateY(0) scale(1); opacity: 1; }
|
|
}
|
|
@keyframes sugSpin {
|
|
from { transform: rotate(0deg); }
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
@keyframes sugFloat {
|
|
0%, 100% { transform: translateY(0); }
|
|
50% { transform: translateY(-10px); }
|
|
}
|
|
@keyframes sugBounce {
|
|
0%, 100% { transform: translateY(0) scale(1); }
|
|
50% { transform: translateY(-12px) scale(1.05); }
|
|
}
|
|
.suggestions {
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
.suggestions .container {
|
|
max-width: 1216px;
|
|
margin: 0 auto;
|
|
padding: 0 24px;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
.suggestions__header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin-bottom: 48px;
|
|
}
|
|
|
|
.suggestions__subtitle {
|
|
font-family: var(--font-body);
|
|
font-size: 18px;
|
|
line-height: 1.6;
|
|
color: var(--color-text-muted);
|
|
text-align: center !important;
|
|
font-weight: 400;
|
|
max-width: 700px;
|
|
width: 100%;
|
|
margin-bottom: 32px;
|
|
padding: 0;
|
|
}
|
|
.suggestions-wrapper {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
gap: 20px;
|
|
}
|
|
.suggestions-wrapper > .suggestions__item {
|
|
width: calc(25% - 15px);
|
|
min-width: 220px;
|
|
flex: 0 0 auto;
|
|
}
|
|
.suggestions__item {
|
|
border-radius: var(--card-radius);
|
|
padding: 32px 24px 36px;
|
|
box-shadow: 0 4px 24px rgba(0,0,0,0.08);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
gap: var(--space-md);
|
|
position: relative;
|
|
overflow: hidden;
|
|
background: var(--color-bg);
|
|
transition: transform var(--transition-normal), box-shadow var(--transition-normal);
|
|
}
|
|
.suggestions__item::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 4px;
|
|
background: var(--color-primary);
|
|
opacity: 0.2;
|
|
transition: opacity var(--transition-normal);
|
|
border-radius: var(--card-radius) var(--card-radius) 0 0;
|
|
pointer-events: none;
|
|
}
|
|
.suggestions__item:hover {
|
|
transform: translateY(-6px);
|
|
box-shadow: 0 12px 40px rgba(0,0,0,0.12);
|
|
}
|
|
.suggestions__item:hover::before { opacity: 1; }
|
|
.suggestions__item_title {
|
|
font-family: var(--font-display);
|
|
font-size: 20px;
|
|
line-height: 1.3;
|
|
font-weight: 700;
|
|
color: var(--color-text);
|
|
margin: 0;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
.suggestions__item_text {
|
|
font-family: var(--font-body);
|
|
font-size: 14px;
|
|
line-height: 1.6;
|
|
color: var(--color-text-muted);
|
|
margin: 0;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
.suggestions__doodle {
|
|
position: absolute;
|
|
pointer-events: none;
|
|
z-index: 1;
|
|
}
|
|
.suggestions__doodle--star {
|
|
width: 40px; height: 40px;
|
|
top: 30px; left: 30px;
|
|
opacity: 0.18;
|
|
animation: sugSpin 20s linear infinite;
|
|
filter: invert(55%) sepia(80%) saturate(500%) hue-rotate(175deg);
|
|
}
|
|
.suggestions__doodle--gear {
|
|
width: 56px; height: 56px;
|
|
bottom: 40px; right: 40px;
|
|
opacity: 0.14;
|
|
animation: sugSpin 25s linear infinite reverse;
|
|
}
|
|
.suggestions__doodle--bounce {
|
|
width: 32px; height: 32px;
|
|
top: 50%; left: 60px;
|
|
opacity: 0.12;
|
|
animation: sugBounce 3s ease-in-out infinite;
|
|
filter: invert(45%) sepia(90%) saturate(2000%) hue-rotate(360deg);
|
|
}
|
|
.suggestions__doodle--float {
|
|
width: 28px; height: 28px;
|
|
top: 80px; right: 100px;
|
|
opacity: 0.13;
|
|
animation: sugFloat 5s ease-in-out infinite;
|
|
filter: invert(60%) sepia(80%) saturate(800%) hue-rotate(100deg);
|
|
}
|
|
.suggestions__doodle--paper {
|
|
width: 36px; height: 36px;
|
|
bottom: 80px; left: 120px;
|
|
opacity: 0.1;
|
|
animation: sugFloat 4.5s ease-in-out infinite reverse;
|
|
filter: invert(25%) sepia(60%) saturate(750%) hue-rotate(260deg);
|
|
}
|
|
.suggestions::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
pointer-events: none;
|
|
z-index: 0;
|
|
background-image: radial-gradient(circle at 25% 25%, rgba(57,183,234,0.06) 1px, transparent 1px),
|
|
radial-gradient(circle at 75% 75%, rgba(255,107,0,0.05) 1px, transparent 1px);
|
|
background-size: 40px 40px, 60px 60px;
|
|
}
|
|
@media (prefers-reduced-motion: no-preference) {
|
|
.suggestions__item { animation: sugFadeUp 0.5s ease-out forwards; }
|
|
.suggestions__item:nth-child(1) { animation-delay: 0.08s; }
|
|
.suggestions__item:nth-child(2) { animation-delay: 0.16s; }
|
|
.suggestions__item:nth-child(3) { animation-delay: 0.24s; }
|
|
.suggestions__item:nth-child(4) { animation-delay: 0.32s; }
|
|
.suggestions__item:nth-child(5) { animation-delay: 0.40s; }
|
|
.suggestions__item:nth-child(6) { animation-delay: 0.48s; }
|
|
}
|
|
@media (max-width: 1023px) {
|
|
.suggestions-wrapper { gap: 16px; }
|
|
.suggestions-wrapper > .suggestions__item { width: calc(50% - 8px); min-width: 0; }
|
|
}
|
|
@media (max-width: 767px) {
|
|
.suggestions { padding: 40px 0; }
|
|
.suggestions__subtitle { font-size: 16px; margin: 0 auto 30px; margin-block: 0 30px; margin-inline: auto; padding: 0 20px; }
|
|
.suggestions-wrapper { gap: 14px; }
|
|
.suggestions-wrapper > .suggestions__item { width: 100%; }
|
|
.suggestions__item { padding: 24px 20px 28px; }
|
|
.suggestions__item_title { font-size: 18px; }
|
|
.suggestions__item_text { font-size: 13px; }
|
|
.suggestions__doodle { display: none; }
|
|
.suggestions::before { display: none; }
|
|
.suggestions__header { margin-bottom: 32px; }
|
|
}
|
|
@media (min-width: 769px) {
|
|
.suggestions__subtitle {
|
|
text-align: center !important;
|
|
}
|
|
}
|
|
.infograph {
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
|
|
.infograph__header {
|
|
margin-bottom: 48px;
|
|
}
|
|
|
|
.infograph__lead {
|
|
font-family: Inter, sans-serif;
|
|
font-size: 18px;
|
|
line-height: 1.6;
|
|
color: var(--color-text-muted);
|
|
text-align: center;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.infograph__grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 24px;
|
|
}
|
|
|
|
.infograph__card {
|
|
background: var(--color-bg);
|
|
border-radius: var(--card-radius);
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
box-shadow: var(--card-shadow);
|
|
transition: transform var(--transition-normal), box-shadow var(--transition-normal);
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.infograph__card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 4px;
|
|
background: var(--color-primary);
|
|
}
|
|
|
|
.infograph__card:nth-child(2)::before { background: var(--color-secondary); }
|
|
.infograph__card:nth-child(3)::before { background: var(--color-accent); }
|
|
.infograph__card:nth-child(4)::before { background: var(--color-primary); opacity: 0.6; }
|
|
|
|
.infograph__card:hover {
|
|
transform: translateY(-6px);
|
|
box-shadow: var(--card-shadow-hover);
|
|
}
|
|
|
|
.infograph__card-icon {
|
|
width: 72px;
|
|
height: 72px;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
margin-top: 28px;
|
|
background: rgba(232, 117, 58, 0.08);
|
|
}
|
|
|
|
.infograph__card-icon img {
|
|
width: 36px;
|
|
height: 36px;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.infograph__card:nth-child(2) .infograph__card-icon {
|
|
background: rgba(59, 178, 160, 0.1);
|
|
}
|
|
|
|
.infograph__card:nth-child(3) .infograph__card-icon {
|
|
background: rgba(255, 212, 62, 0.15);
|
|
}
|
|
|
|
.infograph__card:nth-child(4) .infograph__card-icon {
|
|
background: rgba(232, 117, 58, 0.06);
|
|
}
|
|
|
|
.infograph__card-body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--space-xs);
|
|
padding: var(--space-lg) var(--space-lg) 28px;
|
|
}
|
|
|
|
.infograph__stat {
|
|
font-family: var(--font-display);
|
|
font-size: clamp(26px, 3.2vw, 32px);
|
|
font-weight: 900;
|
|
line-height: 1.15;
|
|
color: var(--color-text);
|
|
margin: 0;
|
|
}
|
|
|
|
.infograph__card:nth-child(1) .infograph__stat { color: var(--color-primary); }
|
|
.infograph__card:nth-child(2) .infograph__stat { color: var(--color-secondary); }
|
|
.infograph__card:nth-child(3) .infograph__stat { color: #C49A00; }
|
|
.infograph__card:nth-child(4) .infograph__stat { color: var(--color-primary); opacity: 0.7; }
|
|
|
|
.infograph__label {
|
|
font-family: var(--font-body);
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
line-height: 1.4;
|
|
color: var(--color-text-muted);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
margin: 0;
|
|
}
|
|
|
|
/* infograph END */
|
|
|
|
@media (max-width: 768px) {
|
|
.infograph__header {
|
|
margin-bottom: 32px;
|
|
}
|
|
.infograph__lead {
|
|
font-size: 16px;
|
|
max-width: 100%;
|
|
}
|
|
.infograph__grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 12px;
|
|
}
|
|
.infograph__card {
|
|
padding: 16px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 12px;
|
|
text-align: left;
|
|
}
|
|
.infograph__stat {
|
|
font-size: 20px;
|
|
white-space: nowrap;
|
|
}
|
|
.infograph__card-icon {
|
|
flex: 0 0 42px;
|
|
width: 42px;
|
|
height: 42px;
|
|
margin-top: 0;
|
|
}
|
|
.infograph__card-icon img {
|
|
width: 22px;
|
|
height: 22px;
|
|
}
|
|
.infograph__card-body {
|
|
padding: 0;
|
|
gap: 2px;
|
|
}
|
|
.infograph__label {
|
|
font-size: 11px;
|
|
line-height: 1.3;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 769px) {
|
|
.infograph__lead {
|
|
text-align: center !important;
|
|
}
|
|
}
|
|
|
|
/* programs */
|
|
.programs__grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: 32px;
|
|
}
|
|
|
|
@media (min-width: 641px) {
|
|
.programs__grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 24px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1024px) {
|
|
.programs__grid {
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 30px;
|
|
}
|
|
}
|
|
|
|
.programs__card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-radius: var(--card-radius);
|
|
background: var(--color-bg);
|
|
overflow: hidden;
|
|
box-shadow: var(--card-shadow);
|
|
transition: transform var(--transition-normal), box-shadow var(--transition-normal);
|
|
}
|
|
|
|
.programs__card:hover {
|
|
transform: translateY(-4px);
|
|
box-shadow: var(--card-shadow-hover);
|
|
}
|
|
|
|
.programs__image {
|
|
width: 100%;
|
|
aspect-ratio: 16 / 10;
|
|
object-fit: cover;
|
|
display: block;
|
|
}
|
|
|
|
.programs__body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
padding: var(--card-padding);
|
|
flex: 1;
|
|
}
|
|
|
|
.programs__name {
|
|
font-family: var(--font-display);
|
|
font-size: clamp(18px, 2vw, 22px);
|
|
font-weight: 700;
|
|
line-height: 1.25;
|
|
color: var(--color-text);
|
|
margin: 0;
|
|
}
|
|
|
|
.programs__date {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
color: var(--color-text-light);
|
|
margin: 0;
|
|
font-family: var(--font-body);
|
|
}
|
|
|
|
.programs__desc {
|
|
font-family: var(--font-body);
|
|
font-size: 15px;
|
|
line-height: 1.5;
|
|
color: var(--color-text-muted);
|
|
font-weight: 400;
|
|
margin: 0;
|
|
flex: 1;
|
|
}
|
|
|
|
.programs__footer {
|
|
display: flex;
|
|
align-items: baseline;
|
|
gap: 10px;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.programs__price {
|
|
font-family: var(--font-display);
|
|
font-size: clamp(20px, 2.4vw, 24px);
|
|
font-weight: 700;
|
|
color: var(--color-primary);
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.programs__duration {
|
|
font-size: 14px;
|
|
color: var(--color-text-light);
|
|
font-weight: 400;
|
|
}
|
|
|
|
.programs__btn {
|
|
width: 100%;
|
|
padding: 14px 20px;
|
|
font-size: 15px;
|
|
font-weight: 700;
|
|
font-family: var(--font-display);
|
|
color: var(--color-primary);
|
|
border: 2px solid var(--color-primary);
|
|
background: transparent;
|
|
border-radius: var(--radius-full);
|
|
cursor: pointer;
|
|
transition: background var(--transition-fast), color var(--transition-fast);
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.programs__btn:hover,
|
|
.programs__btn:focus-visible {
|
|
background: var(--color-primary);
|
|
color: #fff;
|
|
outline: none;
|
|
}
|
|
|
|
@media (min-width: 641px) {
|
|
.programs__btn { width: 100%; }
|
|
}
|
|
|
|
@media (min-width: 1024px) {
|
|
.programs__btn { width: 100%; }
|
|
}
|
|
|
|
/* programs END */
|
|
|
|
/* modal */
|
|
.modal-programs,
|
|
.modal-mentors {
|
|
position: fixed;
|
|
inset: 0;
|
|
display: none;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: rgba(0,0,0,0.8);
|
|
z-index: 100;
|
|
padding: 16px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.modal-programs.open,
|
|
.modal-mentors.open {
|
|
display: flex;
|
|
}
|
|
|
|
.modal-programs__card {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0;
|
|
width: 100%;
|
|
max-width: 720px;
|
|
margin: auto;
|
|
background: #fff;
|
|
border-radius: 24px;
|
|
overflow: visible;
|
|
}
|
|
|
|
.modal-programs__close {
|
|
position: absolute;
|
|
top: 12px;
|
|
right: 12px;
|
|
z-index: 10;
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 50%;
|
|
border: none;
|
|
background: rgba(0,0,0,0.35);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
transition: background .2s;
|
|
}
|
|
|
|
.modal-programs__close:hover {
|
|
background: rgba(0,0,0,0.6);
|
|
}
|
|
|
|
.modal-programs__img {
|
|
width: 100%;
|
|
aspect-ratio: 16 / 10;
|
|
overflow: hidden;
|
|
border-radius: 24px 24px 0 0;
|
|
}
|
|
|
|
.modal-programs__img img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
display: block;
|
|
}
|
|
|
|
.modal-programs__body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
padding: 24px 20px 28px;
|
|
}
|
|
|
|
.modal-programs__body .programs__item_title {
|
|
font-family: Montserrat, sans-serif;
|
|
font-size: 22px;
|
|
font-weight: 700;
|
|
line-height: 1.3;
|
|
color: #1c2b2d;
|
|
margin: 0;
|
|
}
|
|
|
|
.modal-programs__body .programs__item_price {
|
|
font-size: 20px;
|
|
font-weight: 700;
|
|
color: var(--color-primary);
|
|
margin: 0;
|
|
font-family: var(--font-display);
|
|
}
|
|
|
|
.programs__content {
|
|
font-size: 16px;
|
|
line-height: 1.7;
|
|
color: #333;
|
|
margin-top: 4px;
|
|
white-space: pre-line;
|
|
}
|
|
|
|
.programs__content p {
|
|
margin: 0 0 16px;
|
|
}
|
|
|
|
.programs__content p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.programs__content ul,
|
|
.programs__content ol {
|
|
margin: 0 0 16px;
|
|
padding-left: 20px;
|
|
}
|
|
|
|
.programs__content li {
|
|
margin-bottom: 8px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.programs__content strong {
|
|
font-weight: 700;
|
|
color: #1c2b2d;
|
|
}
|
|
|
|
@media (min-width: 641px) {
|
|
.modal-programs__card {
|
|
flex-direction: column;
|
|
}
|
|
.modal-programs__img {
|
|
width: 100%;
|
|
aspect-ratio: 16 / 8;
|
|
height: auto;
|
|
border-radius: 24px 24px 0 0;
|
|
margin: 0;
|
|
}
|
|
.modal-programs__body {
|
|
padding: 28px 28px 32px;
|
|
}
|
|
.modal-programs__body .programs__item_title {
|
|
font-size: 24px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1024px) {
|
|
.modal-programs__img {
|
|
aspect-ratio: 16 / 7;
|
|
}
|
|
.modal-programs__body {
|
|
padding: 32px 36px 36px;
|
|
}
|
|
}
|
|
|
|
/* modal END */
|
|
/* bring-child */
|
|
.bring-child-wrapper {
|
|
display: flex;
|
|
gap: 40px;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.pricing-card {
|
|
flex: 1;
|
|
background: var(--color-bg);
|
|
border-radius: var(--card-radius);
|
|
padding: var(--card-padding);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--space-lg);
|
|
border: 1.5px solid #e0e0e0;
|
|
box-shadow: var(--card-shadow);
|
|
transition: transform var(--transition-normal), box-shadow var(--transition-normal);
|
|
position: relative;
|
|
}
|
|
|
|
.pricing-card:hover {
|
|
transform: translateY(-4px);
|
|
box-shadow: var(--card-shadow-hover);
|
|
}
|
|
|
|
.pricing-card--full {
|
|
border-color: var(--color-secondary);
|
|
border-width: 2px;
|
|
box-shadow: 0 4px 20px rgba(59, 178, 160, 0.12);
|
|
}
|
|
|
|
.pricing-card--full::before {
|
|
content: 'Рекомендуем';
|
|
position: absolute;
|
|
top: -14px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
background: var(--color-secondary);
|
|
color: #fff;
|
|
font-family: var(--font-body);
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
padding: 6px 24px;
|
|
border-radius: var(--radius-full);
|
|
white-space: nowrap;
|
|
letter-spacing: 0.02em;
|
|
}
|
|
|
|
.pricing-card__header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 12px;
|
|
text-align: center;
|
|
}
|
|
|
|
.pricing-card__badge {
|
|
width: 48px;
|
|
height: 48px;
|
|
border-radius: 14px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.pricing-card__badge--half {
|
|
background: rgba(232, 117, 58, 0.1);
|
|
}
|
|
|
|
.pricing-card__badge--full {
|
|
background: rgba(59, 178, 160, 0.15);
|
|
}
|
|
|
|
.pricing-card__title {
|
|
font-family: var(--font-display);
|
|
font-size: clamp(22px, 2.6vw, 26px);
|
|
font-weight: 700;
|
|
color: var(--color-text);
|
|
margin: 0;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.pricing-card__desc {
|
|
font-family: var(--font-body);
|
|
font-size: 15px;
|
|
line-height: 1.5;
|
|
color: var(--color-text-muted);
|
|
margin: 0;
|
|
}
|
|
|
|
.pricing-card__price {
|
|
text-align: center;
|
|
padding: 20px 0;
|
|
border-top: 1px solid #eee;
|
|
border-bottom: 1px solid #eee;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
}
|
|
|
|
.pricing-card__amount {
|
|
font-family: var(--font-display);
|
|
font-size: clamp(28px, 3.6vw, 36px);
|
|
font-weight: 800;
|
|
color: var(--color-text);
|
|
line-height: 1.1;
|
|
}
|
|
|
|
.pricing-card--full .pricing-card__amount {
|
|
color: var(--color-secondary);
|
|
}
|
|
|
|
.pricing-card__period {
|
|
font-family: var(--font-body);
|
|
font-size: 14px;
|
|
color: var(--color-text-light);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.pricing-card__slots {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.pricing-card__slot {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 10px 16px;
|
|
background: var(--color-bg-alt);
|
|
border-radius: var(--radius-md);
|
|
}
|
|
|
|
.pricing-card__slot-time {
|
|
font-family: var(--font-body);
|
|
font-size: 15px;
|
|
font-weight: 600;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
.pricing-card__slot-label {
|
|
font-family: var(--font-body);
|
|
font-size: 13px;
|
|
color: var(--color-text-light);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.pricing-card__features {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
padding: 0;
|
|
margin: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
.pricing-card__features li {
|
|
font-family: var(--font-body);
|
|
font-size: 15px;
|
|
line-height: 1.5;
|
|
color: var(--color-text-muted);
|
|
padding-left: 28px;
|
|
position: relative;
|
|
}
|
|
|
|
.pricing-card__features li::before {
|
|
content: '✓';
|
|
position: absolute;
|
|
left: 0;
|
|
top: 2px;
|
|
width: 20px;
|
|
height: 20px;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.pricing-card--half .pricing-card__features li::before {
|
|
background: rgba(232, 117, 58, 0.15);
|
|
color: var(--color-primary);
|
|
}
|
|
|
|
.pricing-card--full .pricing-card__features li::before {
|
|
background: rgba(59, 178, 160, 0.15);
|
|
color: var(--color-secondary);
|
|
}
|
|
|
|
.pricing-card__extra {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 12px 16px;
|
|
background: var(--color-bg-alt);
|
|
border-radius: var(--radius-md);
|
|
font-family: var(--font-body);
|
|
font-size: 14px;
|
|
color: var(--color-text-muted);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.pricing-card__btn {
|
|
width: 100%;
|
|
padding: 16px 0;
|
|
border: none;
|
|
border-radius: var(--radius-full);
|
|
font-family: var(--font-display);
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
cursor: pointer;
|
|
transition: background var(--transition-fast), transform var(--transition-fast);
|
|
color: #fff;
|
|
background: var(--color-primary);
|
|
}
|
|
|
|
.pricing-card__btn:hover {
|
|
background: var(--color-primary-hover);
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
/* bring-child END */
|
|
/* mentors */
|
|
.mentors-wrapper {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 30px;
|
|
justify-content: center;
|
|
}
|
|
|
|
.mentors__item {
|
|
width: calc(25% - 23px);
|
|
}
|
|
|
|
.mentors__card {
|
|
background: var(--color-bg);
|
|
border-radius: var(--card-radius);
|
|
overflow: hidden;
|
|
box-shadow: var(--card-shadow);
|
|
transition: transform var(--transition-normal), box-shadow var(--transition-normal);
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
}
|
|
|
|
.mentors__card:hover {
|
|
transform: translateY(-4px);
|
|
box-shadow: var(--card-shadow-hover);
|
|
}
|
|
|
|
.mentors__card-top {
|
|
background: linear-gradient(135deg, rgba(232, 117, 58, 0.06), rgba(59, 178, 160, 0.06));
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 28px 20px 20px;
|
|
}
|
|
|
|
.mentors__photo {
|
|
width: 120px;
|
|
height: 120px;
|
|
border-radius: 50%;
|
|
object-fit: cover;
|
|
border: 4px solid #fff;
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
|
|
}
|
|
|
|
.mentors__card-body {
|
|
padding: 16px 20px 20px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
flex: 1;
|
|
}
|
|
|
|
.mentors__name {
|
|
font-family: var(--font-display);
|
|
font-size: 20px;
|
|
font-weight: 700;
|
|
line-height: 1.25;
|
|
color: var(--color-text);
|
|
text-align: center;
|
|
}
|
|
|
|
.mentors__job {
|
|
font-family: var(--font-body);
|
|
font-size: 14px;
|
|
line-height: 1.4;
|
|
color: var(--color-text-light);
|
|
text-align: center;
|
|
margin: 0;
|
|
}
|
|
|
|
.mentors__about {
|
|
font-family: var(--font-body);
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
color: var(--color-text-muted);
|
|
text-align: center;
|
|
margin: 4px 0 0;
|
|
}
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
.mentors__item {
|
|
width: calc(50% - 12px);
|
|
}
|
|
.mentors-wrapper {
|
|
gap: 20px;
|
|
}
|
|
.mentors__card-top {
|
|
padding: 24px 16px 16px;
|
|
}
|
|
.mentors__photo {
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
.mentors__card-body {
|
|
padding: 14px 16px 18px;
|
|
gap: 6px;
|
|
}
|
|
.mentors__name {
|
|
font-size: 18px;
|
|
}
|
|
.mentors__job, .mentors__about {
|
|
font-size: 13px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.mentors__item {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
/* mentors END */
|
|
|
|
|
|
/* routine */
|
|
.routine p {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.routine-wrapper {
|
|
position: relative;
|
|
display: flex;
|
|
margin-left: 20px;
|
|
flex-direction: column;
|
|
gap: 40px;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
.routine__item {
|
|
position: relative;
|
|
display: flex;
|
|
gap: 30px;
|
|
}
|
|
|
|
.routine__item_time {
|
|
width: 160px;
|
|
font-size: clamp(18px, 2vw, 24px);
|
|
line-height: 1.2;
|
|
font-weight: 600;
|
|
text-align: end;
|
|
font-family: var(--font-display);
|
|
color: var(--color-text);
|
|
}
|
|
|
|
.routine__item_time-mobile {
|
|
display: none;
|
|
}
|
|
|
|
.routine__item_circle {
|
|
position: relative;
|
|
margin-top: 4px;
|
|
width: 22px;
|
|
height: 22px;
|
|
border-radius: 50%;
|
|
background-color: var(--color-primary);
|
|
border: 4px solid #fff;
|
|
}
|
|
|
|
.routine__item::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 20px;
|
|
width: 2px;
|
|
background-color: #d4d4d4;
|
|
bottom: -50px;
|
|
left: 200px;
|
|
}
|
|
|
|
.routine__item_text {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
}
|
|
|
|
.routine__item_text-title {
|
|
font-size: clamp(20px, 2.4vw, 24px);
|
|
line-height: 1.25;
|
|
font-weight: 600;
|
|
font-family: var(--font-display);
|
|
color: var(--color-text);
|
|
}
|
|
|
|
.routine__item_text-text {
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
font-weight: 400;
|
|
font-family: var(--font-body);
|
|
color: var(--color-text-muted);
|
|
}
|
|
|
|
.routine__item:last-child::before {
|
|
display: none;
|
|
}
|
|
|
|
/* routine END*/
|
|
/* ═══════════════════════════════════════════════
|
|
GALLERY — lazeweb photo grid + modal
|
|
═══════════════════════════════════════════════ */
|
|
.lw-gallery__grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 16px;
|
|
}
|
|
|
|
.lw-gallery__item {
|
|
overflow: hidden;
|
|
border-radius: 16px;
|
|
cursor: pointer;
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
aspect-ratio: 4 / 3;
|
|
}
|
|
|
|
.lw-gallery__item:hover {
|
|
transform: scale(1.02);
|
|
box-shadow: 0 8px 24px rgba(0,0,0,0.12);
|
|
}
|
|
|
|
.lw-gallery__thumb {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
display: block;
|
|
}
|
|
|
|
.lw-modal {
|
|
display: none;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 99999;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.lw-modal--open {
|
|
display: flex;
|
|
}
|
|
|
|
.lw-modal__overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0,0,0,0.8);
|
|
}
|
|
|
|
.lw-modal__content {
|
|
position: relative;
|
|
max-width: 90vw;
|
|
max-height: 90vh;
|
|
border-radius: 16px;
|
|
overflow: hidden;
|
|
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
|
|
}
|
|
|
|
.lw-modal__img {
|
|
display: block;
|
|
max-width: 100%;
|
|
max-height: 90vh;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.lw-modal__close {
|
|
position: absolute;
|
|
top: 12px;
|
|
right: 12px;
|
|
background: rgba(0,0,0,0.5);
|
|
border: none;
|
|
border-radius: 50%;
|
|
width: 40px;
|
|
height: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
z-index: 2;
|
|
transition: background 0.2s;
|
|
}
|
|
|
|
.lw-modal__close:hover {
|
|
background: rgba(0,0,0,0.8);
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.lw-gallery__grid {
|
|
display: flex;
|
|
gap: 12px;
|
|
overflow-x: auto;
|
|
scroll-snap-type: x mandatory;
|
|
-webkit-overflow-scrolling: touch;
|
|
padding-bottom: 8px;
|
|
}
|
|
|
|
.lw-gallery__grid::-webkit-scrollbar {
|
|
height: 6px;
|
|
}
|
|
|
|
.lw-gallery__grid::-webkit-scrollbar-thumb {
|
|
background: #ccc;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.lw-gallery__item {
|
|
flex: 0 0 280px;
|
|
scroll-snap-align: start;
|
|
aspect-ratio: 4 / 3;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.lw-gallery__item {
|
|
flex: 0 0 240px;
|
|
}
|
|
}
|
|
|
|
/* swiper (base — used by reviews) */
|
|
.swiper-slide {
|
|
text-align: center;
|
|
font-size: 18px;
|
|
background: #fff;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.swiper-slide img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
/* swiper END */
|
|
|
|
/* faq */
|
|
.faq-wrapper {
|
|
display: flex;
|
|
gap: 30px;
|
|
}
|
|
|
|
.camp-faq .box__accordion_label::after {
|
|
background-image: none !important;
|
|
}
|
|
|
|
.accordion {
|
|
width: 50%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
border-top: 1px solid #ccc;
|
|
}
|
|
|
|
.camp-faq .accordion .box__accordion {
|
|
position: relative;
|
|
cursor: pointer;
|
|
border-bottom: 1px solid #ccc;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.camp-faq .box__accordion_label {
|
|
position: relative;
|
|
padding: 20px 0;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 20px;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.camp-faq .box__accordion_label span {
|
|
font-size: clamp(18px, 2.2vw, 22px);
|
|
line-height: 1.25;
|
|
font-family: var(--font-display);
|
|
font-weight: 600;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
.box__accordion_label svg {
|
|
width: 36px;
|
|
height: 36px;
|
|
padding: 8px;
|
|
border-radius: 50%;
|
|
background: var(--color-primary);
|
|
stroke: #fff;
|
|
transition: background var(--transition-fast);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.camp-faq .accordion .box__accordion .box__accordion_label {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding-left: 0;
|
|
}
|
|
|
|
.box__accordion_label svg g {
|
|
stroke: #fff;
|
|
}
|
|
|
|
.box__accordion_label svg:hover {
|
|
background: var(--color-primary-hover);
|
|
}
|
|
|
|
.active .box__accordion_label svg {
|
|
rotate: 45deg;
|
|
background: var(--color-primary-hover);
|
|
}
|
|
|
|
.box__accordion_label svg:hover g {
|
|
stroke: #fff;
|
|
}
|
|
|
|
.camp-faq .box__accordion_content {
|
|
display: flex;
|
|
position: relative;
|
|
overflow: hidden;
|
|
max-height: 0;
|
|
transition: .3s;
|
|
gap: 20px;
|
|
align-items: center;
|
|
}
|
|
|
|
.box__accordion_content-text {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
font-size: 16px;
|
|
line-height: 1.6;
|
|
color: var(--color-text-muted);
|
|
padding-bottom: 20px;
|
|
font-family: var(--font-body);
|
|
}
|
|
|
|
/* faq END */
|
|
/* contact */
|
|
.contact-wrapper {
|
|
display: flex;
|
|
gap: 30px;
|
|
}
|
|
|
|
.contact-content {
|
|
width: 40%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
}
|
|
|
|
.contact_subtitle {
|
|
margin-top: 10px;
|
|
font-size: 16px;
|
|
line-height: 1.2;
|
|
font-weight: 600;
|
|
font-family: var(--font-display);
|
|
color: var(--color-text);
|
|
}
|
|
|
|
.contact_tel {
|
|
color: var(--color-primary);
|
|
font-size: clamp(18px, 2.2vw, 22px);
|
|
line-height: 1;
|
|
font-weight: 600;
|
|
font-family: var(--font-body);
|
|
}
|
|
|
|
.contact_social {
|
|
display: flex;
|
|
gap: 15px;
|
|
}
|
|
|
|
.contact-map {
|
|
display: flex;
|
|
border-radius: 30px;
|
|
overflow: hidden;
|
|
flex: 1;
|
|
height: 450px;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
/* contact END */
|
|
/* ═══════════════════════════════════════════════
|
|
REVIEWS — Yandex-style via lazeweb utilities
|
|
═══════════════════════════════════════════════ */
|
|
.lw-scroll-x {
|
|
overflow-x: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
padding-bottom: 8px;
|
|
}
|
|
.lw-scroll-x::-webkit-scrollbar {
|
|
height: 6px;
|
|
}
|
|
.lw-scroll-x::-webkit-scrollbar-thumb {
|
|
background: #ccc;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.lw-grid {
|
|
display: grid;
|
|
}
|
|
.lw-grid--3 {
|
|
grid-template-columns: repeat(3, 1fr);
|
|
}
|
|
.lw-grid--2 {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
.lw-gap-20 {
|
|
gap: 20px;
|
|
}
|
|
|
|
.lw-flex {
|
|
display: flex;
|
|
}
|
|
.lw-flex--row {
|
|
flex-direction: row;
|
|
}
|
|
.lw-flex--col {
|
|
flex-direction: column;
|
|
}
|
|
.lw-gap-12 {
|
|
gap: 12px;
|
|
}
|
|
.lw-gap-8 {
|
|
gap: 8px;
|
|
}
|
|
.lw-items-center {
|
|
align-items: center;
|
|
}
|
|
.lw-justify-between {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.lw-card {
|
|
background: var(--color-bg);
|
|
border-radius: var(--card-radius);
|
|
padding: 20px;
|
|
box-shadow: var(--card-shadow);
|
|
display: flex;
|
|
flex-direction: column;
|
|
transition: box-shadow var(--transition-normal), transform var(--transition-normal);
|
|
}
|
|
.lw-card:hover {
|
|
box-shadow: var(--card-shadow-hover);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.lw-avatar {
|
|
border-radius: 50%;
|
|
overflow: hidden;
|
|
flex-shrink: 0;
|
|
background: rgba(59, 178, 160, 0.1);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
.lw-avatar--48 {
|
|
width: 48px;
|
|
height: 48px;
|
|
}
|
|
.lw-avatar__img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
display: block;
|
|
}
|
|
|
|
.lw-text-dark {
|
|
color: #1c2b2d;
|
|
}
|
|
.lw-text-gray {
|
|
color: #888;
|
|
}
|
|
.lw-text-sm {
|
|
font-size: 14px;
|
|
line-height: 1.4;
|
|
}
|
|
.lw-text-xs {
|
|
font-size: 12px;
|
|
line-height: 1.3;
|
|
}
|
|
.lw-font-medium {
|
|
font-weight: 500;
|
|
}
|
|
.lw-font-semibold {
|
|
font-weight: 600;
|
|
}
|
|
.lw-font-bold {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.lw-mt-8 {
|
|
margin-top: 8px;
|
|
}
|
|
.lw-mb-8 {
|
|
margin-bottom: 8px;
|
|
}
|
|
.lw-mb-12 {
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.lw-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
padding: 4px 10px;
|
|
border-radius: 50px;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
line-height: 1.2;
|
|
white-space: nowrap;
|
|
margin-left: auto;
|
|
flex-shrink: 0;
|
|
}
|
|
.lw-badge--verified {
|
|
background: rgba(59, 178, 160, 0.1);
|
|
color: var(--color-secondary);
|
|
}
|
|
|
|
.lw-stars {
|
|
display: flex;
|
|
gap: 2px;
|
|
align-items: center;
|
|
}
|
|
.lw-star {
|
|
color: var(--color-text-light);
|
|
flex-shrink: 0;
|
|
}
|
|
.lw-star--filled {
|
|
color: #FFD43E;
|
|
}
|
|
|
|
.lw-card__text {
|
|
font-size: 14px;
|
|
line-height: 1.55;
|
|
color: var(--color-text-muted);
|
|
word-break: break-word;
|
|
}
|
|
|
|
/* ─── Десктоп: как карточки наставников ─── */
|
|
.camp-reviews .lw-scroll-x {
|
|
overflow: visible;
|
|
padding: 0;
|
|
}
|
|
.camp-reviews .lw-grid--3 {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 30px;
|
|
justify-content: center;
|
|
}
|
|
.camp-reviews .lw-grid--3 .lw-card {
|
|
width: calc(25% - 23px);
|
|
min-width: 280px;
|
|
padding: 24px;
|
|
border-radius: 20px;
|
|
box-shadow: 0 2px 16px rgba(0,0,0,0.06);
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
}
|
|
.camp-reviews .lw-grid--3 .lw-card:hover {
|
|
transform: translateY(-4px);
|
|
box-shadow: 0 8px 32px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
@media (max-width: 1200px) {
|
|
.camp-reviews .lw-grid--3 .lw-card {
|
|
width: calc(50% - 15px);
|
|
min-width: 280px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.camp-reviews .lw-scroll-x {
|
|
overflow-x: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
padding-bottom: 8px;
|
|
}
|
|
.camp-reviews .lw-grid--3 {
|
|
display: flex;
|
|
gap: 16px;
|
|
overflow-x: auto;
|
|
scroll-snap-type: x mandatory;
|
|
flex-wrap: nowrap;
|
|
justify-content: flex-start;
|
|
padding-bottom: 4px;
|
|
}
|
|
.camp-reviews .lw-grid--3 .lw-card {
|
|
flex: 0 0 300px;
|
|
width: auto;
|
|
scroll-snap-align: start;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.camp-reviews .lw-grid--3 .lw-card {
|
|
flex: 0 0 260px;
|
|
}
|
|
}
|
|
|
|
/* reviews END*/
|
|
|
|
.modal-camp-request-form {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #000;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 99999;
|
|
}
|
|
|
|
/* camp END*/
|
|
|
|
/* ═══════════════════════════════════════════════
|
|
HERO — Galileo-style (городской лагерь)
|
|
═══════════════════════════════════════════════ */
|
|
|
|
.hero-media-search {
|
|
background-color: #f6f1e9;
|
|
overflow: hidden;
|
|
|
|
}
|
|
@media (min-width: 1024px) {
|
|
.hero-media-search {
|
|
|
|
width: 100vw;
|
|
margin-left: calc(-50vw + 50%);
|
|
margin-right: calc(-50vw + 50%);
|
|
}
|
|
}
|
|
|
|
.hero-media-search .container {
|
|
max-width: 1216px;
|
|
margin: 0 auto;
|
|
padding: 0 24px;
|
|
}
|
|
|
|
.hero-media-search__container {
|
|
align-items: stretch;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
justify-content: space-between;
|
|
}
|
|
@media (min-width: 1024px) {
|
|
.hero-media-search__container {
|
|
align-items: center;
|
|
flex-direction: row;
|
|
gap: 40px;
|
|
justify-content: space-between;
|
|
}
|
|
}
|
|
|
|
.hero-media-search .heading-1 {
|
|
font-family: var(--font-display);
|
|
font-weight: 900;
|
|
font-size: var(--fs-display);
|
|
line-height: 1.1;
|
|
letter-spacing: -0.02em;
|
|
color: var(--color-text);
|
|
margin: 0 0 0.5rem 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero-subtitle-brand {
|
|
font-family: var(--font-display);
|
|
font-weight: 600;
|
|
font-size: var(--fs-h2);
|
|
line-height: 1.25;
|
|
color: var(--color-secondary);
|
|
margin: 0 0 0.6rem 0;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.hero-media-search .heading-1 {
|
|
font-size: 32px;
|
|
text-align: center;
|
|
}
|
|
.camp_title { font-size: 26px; padding-bottom: 24px; }
|
|
.about-us__title { font-size: 21px; text-align: left; }
|
|
}
|
|
|
|
.hero-media-search__content {
|
|
text-align: center;
|
|
}
|
|
@media (min-width: 1024px) {
|
|
.hero-media-search__content {
|
|
width: 44%;
|
|
max-width: 520px;
|
|
text-align: center;
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.hero-media-search__propositions.on-desktop {
|
|
display: flex;
|
|
gap: 0 25px;
|
|
justify-content: space-between;
|
|
margin: 15px 0 30px;
|
|
}
|
|
.hero-media-search .wrapper__propositions {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
.hero-media-search .wrapper__propositions h3 {
|
|
font-family: "Montserrat", sans-serif;
|
|
font-weight: 800;
|
|
line-height: 1.2;
|
|
text-align: center;
|
|
color: #1c2b2d;
|
|
margin: 4px 0 0;
|
|
}
|
|
.hero-media-search .wrapper__propositions p {
|
|
font-weight: 500;
|
|
font-family: 'Inter', sans-serif;
|
|
line-height: 1.2;
|
|
text-align: center;
|
|
color: var(--color-text-muted);
|
|
margin: 0;
|
|
}
|
|
.hero-media-search__propositions.on-desktop .wrapper__propositions { width: 120px; }
|
|
.hero-media-search__propositions.on-desktop img { width: 72px; height: auto; }
|
|
.hero-media-search__propositions.on-desktop h3 { font-size: 20px; font-weight: 900; }
|
|
.hero-media-search__propositions.on-desktop p { font-size: 14px; text-transform: capitalize; font-weight: 500; }
|
|
|
|
.hero-media-search__media { width: 100%; }
|
|
@media (min-width: 1024px) {
|
|
.hero-media-search__media {
|
|
width: 52%;
|
|
min-width: 0;
|
|
}
|
|
}
|
|
|
|
.hero-media-search__frame {
|
|
position: relative;
|
|
aspect-ratio: 13 / 9;
|
|
width: 100%;
|
|
}
|
|
@media (max-width: 991px) {
|
|
.hero-media-search__frame { aspect-ratio: 13 / 9; }
|
|
}
|
|
|
|
.hero-media-search__image {
|
|
display: block;
|
|
width: 100%;
|
|
height: auto;
|
|
border: 4px solid #fff;
|
|
border-radius: 20px;
|
|
box-shadow: var(--shadow-lg);
|
|
overflow: hidden;
|
|
object-fit: cover;
|
|
aspect-ratio: 13/9;
|
|
}
|
|
@media (min-width: 1024px) {
|
|
.hero-media-search__image {
|
|
border-width: 6px;
|
|
max-width: 700px;
|
|
}
|
|
.about-us__image {
|
|
border-width: 10px;
|
|
}
|
|
.about-us__doodle--plane {
|
|
width: 90px;
|
|
height: 90px;
|
|
top: -28px;
|
|
right: -28px;
|
|
filter: drop-shadow(0 0 0 5px #fff) drop-shadow(0 0 0 5px #fff);
|
|
}
|
|
.about-us__doodle--heart {
|
|
width: 90px;
|
|
height: 90px;
|
|
bottom: -28px;
|
|
left: -28px;
|
|
filter: drop-shadow(0 0 0 5px #fff) drop-shadow(0 0 0 5px #fff);
|
|
}
|
|
}
|
|
|
|
.hero-media-search__frame .doodle {
|
|
position: absolute;
|
|
object-fit: contain;
|
|
pointer-events: none;
|
|
}
|
|
.hero-media-search__frame .doodle--top-left {
|
|
width: 50px;
|
|
height: 50px;
|
|
left: -16px;
|
|
top: -12px;
|
|
}
|
|
@media (min-width: 1024px) {
|
|
.hero-media-search__frame .doodle--top-left {
|
|
width: 90px;
|
|
height: 90px;
|
|
left: -28px;
|
|
top: -28px;
|
|
}
|
|
}
|
|
.hero-media-search__frame .doodle--bottom-right {
|
|
width: 50px;
|
|
height: 50px;
|
|
bottom: -16px;
|
|
right: -12px;
|
|
}
|
|
@media (min-width: 1024px) {
|
|
.hero-media-search__frame .doodle--bottom-right {
|
|
width: 90px;
|
|
height: 90px;
|
|
bottom: -28px;
|
|
right: -28px;
|
|
}
|
|
}
|
|
|
|
.hero-media-search__propositions.on-mobile {
|
|
display: none;
|
|
gap: 0 25px;
|
|
justify-content: space-between;
|
|
margin: 30px 0 15px;
|
|
}
|
|
@media (max-width: 1023px) {
|
|
.hero-media-search__propositions.on-desktop { display: none; }
|
|
.hero-media-search__propositions.on-mobile { display: flex; }
|
|
}
|
|
.hero-media-search__propositions.on-mobile .wrapper__propositions { width: 84px; }
|
|
.hero-media-search__propositions.on-mobile img { width: 48px; height: auto; }
|
|
.hero-media-search__propositions.on-mobile h3 { font-size: 14px; }
|
|
.hero-media-search__propositions.on-mobile p { font-size: 14px; }
|
|
|
|
@media (max-width: 1023px) {
|
|
.camp .hero-media-search {
|
|
padding-top: clamp(60px, 8vw, 100px);
|
|
}
|
|
}
|
|
|
|
.hero-cta__text {
|
|
font-size: 16px;
|
|
text-align: center;
|
|
color: var(--color-text-muted);
|
|
margin-bottom: 8px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.hero-cta__note {
|
|
font-family: var(--font-body);
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
color: var(--color-text-muted);
|
|
text-align: center;
|
|
margin-top: var(--space-lg) !important;
|
|
max-width: 360px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.btn-write-camp {
|
|
background: var(--color-primary);
|
|
color: #fff;
|
|
border: none;
|
|
padding: 18px 48px;
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
font-family: var(--font-display);
|
|
border-radius: var(--radius-full);
|
|
cursor: pointer;
|
|
transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
|
|
text-decoration: none;
|
|
text-align: center;
|
|
box-sizing: border-box;
|
|
display: inline-block;
|
|
box-shadow: 0 4px 14px rgba(232, 117, 58, 0.3);
|
|
}
|
|
|
|
.btn-write-camp:hover {
|
|
background: var(--color-primary-hover);
|
|
color: #fff;
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 6px 20px rgba(232, 117, 58, 0.4);
|
|
}
|
|
|
|
.on-desktop { display: none; }
|
|
.on-mobile { display: block; }
|
|
|
|
@media (min-width: 768px) {
|
|
.on-desktop { display: block; }
|
|
.on-mobile { display: none; }
|
|
}
|
|
|
|
.hero-cta.on-desktop { display: none; }
|
|
.hero-cta.on-mobile { display: block; }
|
|
|
|
@media (min-width: 768px) {
|
|
.hero-cta.on-desktop { display: block; }
|
|
.hero-cta.on-mobile { display: none; }
|
|
}
|
|
|
|
/* ═══════════════════════════════════════════════
|
|
SECTION BACKGROUNDS — full-width via shared class + data-bg
|
|
═══════════════════════════════════════════════ */
|
|
|
|
.section-bg {
|
|
position: relative;
|
|
}
|
|
.section-bg::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: calc(-50vw + 50%);
|
|
width: 100vw;
|
|
z-index: -1;
|
|
}
|
|
.section-bg[data-bg="hero"]::before { background: var(--bg-hero); }
|
|
.section-bg[data-bg="white"]::before { background: var(--bg-white); }
|
|
.section-bg[data-bg="mint"]::before { background: var(--color-bg-alt); }
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
.suggestions__item { animation: none; }
|
|
.banner_label { animation: none; }
|
|
.scroll-icon-wrapper { display: none; }
|
|
}
|
|
|
|
@media (width > 780px) and (width < 1200px) {
|
|
.camp {
|
|
gap: 0;
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.container_camp {
|
|
max-width: clamp(780px, 100vw, 1200px);
|
|
padding: 0 clamp(13px, 1.67vw, 20px);
|
|
}
|
|
|
|
.camp_title {
|
|
font-size: clamp(29px, 3.75vw, 45px);
|
|
padding-bottom: clamp(29px, 3.75vw, 45px);
|
|
}
|
|
|
|
.camp_text {
|
|
font-size: clamp(12px, 1.5vw, 18px);
|
|
}
|
|
|
|
.banner {
|
|
border-radius: clamp(26px, 3.33vw, 40px);
|
|
}
|
|
|
|
.banner_label {
|
|
padding: clamp(6px, .83vw, 10px) clamp(13px, 1.67vw, 20px);
|
|
font-size: clamp(13px, 1.67vw, 20px);
|
|
border-radius: clamp(20px, 2.5vw, 30px);
|
|
}
|
|
|
|
.banner__left-part {
|
|
gap: clamp(20px, 2.5vw, 30px);
|
|
padding: clamp(26px, 3.33vw, 40px) clamp(20px, 2.5vw, 30px) clamp(26px, 3.33vw, 40px) clamp(26px, 3.33vw, 40px);
|
|
}
|
|
|
|
.banner_title {
|
|
font-size: clamp(27px, 3.42vw, 41px);
|
|
}
|
|
|
|
.banner_text {
|
|
font-size: clamp(12px, 1.5vw, 18px);
|
|
}
|
|
|
|
.banner_text-min {
|
|
font-size: clamp(10px, 1.25vw, 15px);
|
|
}
|
|
|
|
.banner_btn {
|
|
font-size: clamp(13px, 1.67vw, 20px);
|
|
border: clamp(1px, .17vw, 2px) solid #42425c;
|
|
border-radius: clamp(33px, 4.17vw, 50px);
|
|
padding: clamp(13px, 1.67vw, 20px) clamp(20px, 2.5vw, 30px);
|
|
}
|
|
|
|
.banner__right-part {
|
|
border-radius: clamp(26px, 3.33vw, 40px);
|
|
}
|
|
|
|
|
|
.programs-wrapper {
|
|
gap: clamp(20px, 2.5vw, 30px);
|
|
}
|
|
|
|
.programs__item {
|
|
width: calc(33.33% - clamp(13px, 1.67vw, 20px));
|
|
gap: clamp(13px, 1.67vw, 20px);
|
|
}
|
|
|
|
.programs__item_img {
|
|
border-radius: clamp(20px, 2.5vw, 30px);
|
|
aspect-ratio: 3 / 2;
|
|
height: auto;
|
|
}
|
|
|
|
.programs__item_title {
|
|
font-size: clamp(17px, 2.17vw, 26px);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.programs__item_date {
|
|
font-size: clamp(12px, 1.5vw, 18px);
|
|
}
|
|
|
|
.programs__item_text {
|
|
font-size: clamp(10px, 1.33vw, 16px);
|
|
}
|
|
|
|
.programs__item_price {
|
|
font-size: clamp(20px, 2.5vw, 28px);
|
|
color: #3bb273;
|
|
}
|
|
|
|
.btn-details {
|
|
border: clamp(1px, .17vw, 2px) solid #3bb273;
|
|
border-radius: clamp(20px, 2.5vw, 30px);
|
|
padding: clamp(10px, 1.25vw, 15px) clamp(20px, 2.5vw, 30px);
|
|
}
|
|
|
|
|
|
|
|
|
|
.bring-child-wrapper {
|
|
gap: clamp(26px, 3.33vw, 40px);
|
|
}
|
|
|
|
.part-day {
|
|
width: calc(50% - clamp(13px, 1.67vw, 20px));
|
|
padding: clamp(20px, 2.5vw, 30px);
|
|
border-radius: clamp(26px, 3.33vw, 40px);
|
|
border: clamp(1px, .17vw, 2px) solid #e8e8e8;
|
|
gap: clamp(20px, 2.5vw, 30px);
|
|
}
|
|
|
|
.block-row {
|
|
gap: clamp(6px, .83vw, 10px);
|
|
}
|
|
|
|
.part-day_title {
|
|
gap: clamp(6px, .83vw, 10px);
|
|
}
|
|
|
|
.part-day_title-text {
|
|
font-size: clamp(20px, 2.5vw, 30px);
|
|
}
|
|
|
|
.part-day_text {
|
|
font-size: clamp(12px, 1.5vw, 18px);
|
|
}
|
|
|
|
.part-day__price {
|
|
padding-bottom: clamp(20px, 2.5vw, 30px);
|
|
border-bottom: 1px solid #e8e8e8;
|
|
gap: clamp(6px, .83vw, 10px);
|
|
}
|
|
|
|
.part-day__price_price {
|
|
font-size: clamp(29px, 3.75vw, 45px);
|
|
}
|
|
|
|
.part-day__price_time {
|
|
font-size: clamp(12px, 1.5vw, 18px);
|
|
border-radius: clamp(20px, 2.5vw, 30px);
|
|
padding: clamp(3px, .42vw, 5px) clamp(6px, .83vw, 10px);
|
|
margin-left: clamp(6px, .83vw, 10px);
|
|
}
|
|
|
|
.camp-left-part .part-day__price_time {
|
|
border: clamp(1px, .17vw, 2px) solid #3bb273;
|
|
}
|
|
|
|
.camp-right-part .part-day__price_time {
|
|
border: clamp(1px, .17vw, 2px) solid #ae5fcd;
|
|
}
|
|
|
|
.part-day__price_text {
|
|
font-size: clamp(12px, 1.5vw, 18px);
|
|
}
|
|
|
|
.btn-place {
|
|
padding: clamp(13px, 1.67vw, 20px) 0;
|
|
font-size: clamp(13px, 1.67vw, 20px);
|
|
border-radius: clamp(33px, 4.17vw, 50px);
|
|
}
|
|
|
|
.modal-mentors-wrapper {
|
|
padding: clamp(33px, 4.17vw, 50px);
|
|
gap: clamp(26px, 3.33vw, 40px);
|
|
}
|
|
|
|
.modal-mentors__content {
|
|
gap: clamp(13px, 1.67vw, 20px);
|
|
}
|
|
|
|
.modal-mentors__content svg {
|
|
min-width: clamp(20px, 2.5vw, 30px);
|
|
width: clamp(20px, 2.5vw, 30px);
|
|
height: clamp(20px, 2.5vw, 30px);
|
|
}
|
|
|
|
.modal-mentors_name {
|
|
font-size: clamp(28px, 3.58vw, 43px);
|
|
}
|
|
|
|
.modal-mentors_job {
|
|
font-size: clamp(17px, 2.17vw, 26px);
|
|
}
|
|
|
|
.modal-mentors__directions {
|
|
gap: clamp(6px, .83vw, 10px);
|
|
}
|
|
|
|
.modal-mentors__directions span {
|
|
padding: clamp(6px, .83vw, 10px) clamp(13px, 1.67vw, 20px);
|
|
font-size: clamp(10px, 1.33vw, 16px);
|
|
border-radius: clamp(20px, 2.5vw, 30px);
|
|
}
|
|
|
|
.modal-mentors__about {
|
|
gap: clamp(13px, 1.67vw, 20px);
|
|
}
|
|
|
|
.about-item {
|
|
padding: clamp(13px, 1.67vw, 20px);
|
|
border-radius: clamp(13px, 1.67vw, 20px);
|
|
gap: clamp(6px, .83vw, 10px);
|
|
}
|
|
|
|
.mentors__about-col {
|
|
gap: clamp(10px, 1.33vw, 16px);
|
|
}
|
|
|
|
.mentors__about-col_title {
|
|
font-size: clamp(13px, 1.67vw, 20px);
|
|
}
|
|
|
|
.mentors__about-col_text {
|
|
font-size: clamp(10px, 1.33vw, 16px);
|
|
}
|
|
|
|
.modal-additional__education {
|
|
padding: clamp(13px, 1.67vw, 20px);
|
|
border-radius: clamp(13px, 1.67vw, 20px);
|
|
border: clamp(1px, .17vw, 2px) solid #f0f0f0;
|
|
gap: clamp(6px, .83vw, 10px);
|
|
}
|
|
|
|
.modal-additional__education_list ul {
|
|
gap: clamp(6px, .83vw, 10px) clamp(20px, 2.5vw, 30px);
|
|
font-size: clamp(10px, 1.33vw, 16px);
|
|
}
|
|
|
|
.modal-additional__education_list li {
|
|
width: calc(50% - clamp(13px, 1.67vw, 20px));
|
|
padding-left: clamp(13px, 1.67vw, 20px);
|
|
}
|
|
|
|
.modal-additional__education_list li::before {
|
|
width: clamp(4px, .5vw, 6px);
|
|
height: clamp(4px, .5vw, 6px);
|
|
top: clamp(3px, .42vw, 5px);
|
|
}
|
|
|
|
.routine-wrapper {
|
|
margin-left: clamp(13px, 1.67vw, 20px);
|
|
gap: clamp(26px, 3.33vw, 40px);
|
|
}
|
|
|
|
.routine__item {
|
|
gap: clamp(20px, 2.5vw, 30px);
|
|
}
|
|
|
|
.routine__item_time {
|
|
width: clamp(104px, 13.33vw, 160px);
|
|
font-size: clamp(16px, 2vw, 24px);
|
|
}
|
|
|
|
.routine__item_circle {
|
|
margin-top: clamp(3px, .33vw, 4px);
|
|
width: clamp(14px, 1.83vw, 22px);
|
|
height: clamp(14px, 1.83vw, 22px);
|
|
border: clamp(3px, .33vw, 4px) solid #fff;
|
|
}
|
|
|
|
.routine__item::before {
|
|
top: clamp(13px, 1.67vw, 20px);
|
|
width: clamp(1px, .17vw, 2px);
|
|
bottom: -clamp(33px, 4.17vw, 50px);
|
|
left: clamp(130px, 16.67vw, 200px);
|
|
}
|
|
|
|
.routine__item_text {
|
|
gap: clamp(6px, .83vw, 10px);
|
|
}
|
|
|
|
.routine__item_text-title {
|
|
font-size: clamp(16px, 2vw, 24px);
|
|
}
|
|
|
|
.routine__item_text-text {
|
|
font-size: clamp(12px, 1.5vw, 18px);
|
|
}
|
|
|
|
.faq-wrapper {
|
|
gap: clamp(20px, 2.5vw, 30px);
|
|
}
|
|
|
|
.accordion {
|
|
gap: clamp(6px, .83vw, 10px);
|
|
border-top: 1px solid #ccc;
|
|
}
|
|
|
|
.camp-faq .accordion .box__accordion {
|
|
border-bottom: 1px solid #ccc;
|
|
}
|
|
|
|
.camp-faq .box__accordion_label {
|
|
padding: clamp(13px, 1.67vw, 20px) 0;
|
|
gap: clamp(13px, 1.67vw, 20px);
|
|
}
|
|
|
|
.camp-faq .box__accordion_label span {
|
|
font-size: clamp(17px, 2.17vw, 26px);
|
|
}
|
|
|
|
.box__accordion_label svg {
|
|
width: clamp(26px, 3.33vw, 40px);
|
|
height: clamp(26px, 3.33vw, 40px);
|
|
padding: clamp(5px, .67vw, 8px);
|
|
}
|
|
|
|
.camp-faq .box__accordion_content {
|
|
gap: clamp(13px, 1.67vw, 20px);
|
|
}
|
|
|
|
.box__accordion_content-text {
|
|
gap: clamp(6px, .83vw, 10px);
|
|
font-size: clamp(12px, 1.5vw, 18px);
|
|
padding-bottom: clamp(13px, 1.67vw, 20px);
|
|
}
|
|
|
|
.contact-wrapper {
|
|
gap: clamp(20px, 2.5vw, 30px);
|
|
}
|
|
|
|
.contact-content {
|
|
gap: clamp(6px, .83vw, 10px);
|
|
}
|
|
|
|
.contact_subtitle {
|
|
margin-top: clamp(6px, .83vw, 10px);
|
|
font-size: clamp(12px, 1.5vw, 18px);
|
|
}
|
|
|
|
.contact_tel {
|
|
font-size: clamp(13px, 1.7vw, 20px);
|
|
}
|
|
|
|
.contact_social {
|
|
gap: clamp(10px, 1.25vw, 15px);
|
|
}
|
|
|
|
.contact-map {
|
|
border-radius: clamp(20px, 2.5vw, 30px);
|
|
height: clamp(292px, 37.5vw, 450px);
|
|
}
|
|
|
|
}
|
|
|
|
@media (width < 780px) {
|
|
|
|
.camp {
|
|
gap: 0;
|
|
}
|
|
|
|
.camp section {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.camp_title {
|
|
font-size: 30px;
|
|
padding-bottom: 25px;
|
|
}
|
|
|
|
.banner {
|
|
border-radius: 0 0 40px 40px;
|
|
margin-top: 0;
|
|
}
|
|
|
|
.banner_title {
|
|
font-size: 27px;
|
|
width: 100%;
|
|
}
|
|
|
|
.banner_text {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.banner__right-part {
|
|
display: none;
|
|
}
|
|
|
|
.banner__left-part {
|
|
width: 100%;
|
|
padding: 30px;
|
|
}
|
|
|
|
.banner_btn {
|
|
margin: 100px auto 0;
|
|
}
|
|
|
|
.banner_label {
|
|
padding: 5px 10px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.banner_label1 {
|
|
top: 62%;
|
|
left: 39%;
|
|
}
|
|
|
|
.banner_label2 {
|
|
top: 69%;
|
|
left: 10%;
|
|
}
|
|
|
|
.banner_label3 {
|
|
top: 65%;
|
|
right: 10%;
|
|
left: auto;
|
|
rotate: -18deg;
|
|
}
|
|
|
|
.banner_btn {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.camp section {
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
}
|
|
|
|
.camp_text {
|
|
font-size: 16px;
|
|
margin: 0 auto 30px;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
|
|
.programs .camp_title {
|
|
padding: 0 15px 25px 15px;
|
|
}
|
|
|
|
|
|
.programs-wrapper {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
gap: 30px;
|
|
overflow-x: scroll;
|
|
padding: 0 15px 20px 15px;
|
|
}
|
|
|
|
.programs-wrapper::-webkit-scrollbar {
|
|
width: 10px;
|
|
height: 10px;
|
|
}
|
|
|
|
.programs-wrapper::-webkit-scrollbar-thumb {
|
|
background-color: #ccc;
|
|
border-radius: 8px;
|
|
border: 1px solid #8b8b8b;
|
|
}
|
|
|
|
.programs-wrapper::-webkit-scrollbar-track {
|
|
border-radius: 5px;
|
|
}
|
|
|
|
|
|
.programs__item_img {
|
|
aspect-ratio: 3 / 2;
|
|
height: auto;
|
|
}
|
|
|
|
.programs__item_title {
|
|
font-size: 22px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.btn-details {
|
|
width: 100%;
|
|
}
|
|
|
|
.banner-add {
|
|
border-radius: 40px;
|
|
background-color: #3bb273 !important;
|
|
background-image: none !important;
|
|
}
|
|
|
|
.banner-add .banner_title {
|
|
width: 100%;
|
|
}
|
|
|
|
.banner-add .banner__left-part {
|
|
gap: 20px;
|
|
}
|
|
|
|
.banner-add .banner_btn {
|
|
margin-top: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.banner_text-min {
|
|
margin: 0;
|
|
}
|
|
|
|
.bring-child-wrapper {
|
|
gap: 20px;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.part-day {
|
|
width: 100%;
|
|
gap: 15px;
|
|
padding: 20px;
|
|
}
|
|
|
|
.block-row {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.part-day_title-text {
|
|
font-size: 26px;
|
|
}
|
|
|
|
.part-day__price_price {
|
|
width: 100%;
|
|
order: 2;
|
|
font-size: 22px;
|
|
}
|
|
|
|
.part-day__price_time {
|
|
margin: 0;
|
|
}
|
|
|
|
.part-day__price {
|
|
padding-bottom: 20px;
|
|
}
|
|
|
|
.part-day_text {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.btn-place {
|
|
padding: 15px 0;
|
|
}
|
|
|
|
.mentors__item {
|
|
width: calc(50% - 15px);
|
|
}
|
|
|
|
.mentors__item_name {
|
|
font-size: 18px;
|
|
}
|
|
.routine__item_time {
|
|
display: none;
|
|
}
|
|
|
|
.routine__item_text {
|
|
gap: 5px;
|
|
}
|
|
|
|
.routine__item_time-mobile {
|
|
display: block;
|
|
font-size: 20px;
|
|
line-height: 1.2;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.routine__item_text-title {
|
|
font-size: 22px;
|
|
}
|
|
|
|
.routine__item::before {
|
|
left: 10px;
|
|
}
|
|
|
|
.faq-wrapper {
|
|
gap: 0;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.accordion {
|
|
width: 100%;
|
|
gap: 0;
|
|
}
|
|
|
|
.accordion-last {
|
|
border-top: none;
|
|
}
|
|
|
|
.accordion .box__accordion .box__accordion_label {
|
|
padding: 10px 0;
|
|
}
|
|
|
|
.camp-faq .box__accordion_label span {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.box__accordion_label svg {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.contact-wrapper {
|
|
gap: 20px;
|
|
flex-direction: column-reverse;
|
|
}
|
|
|
|
.contact-map {
|
|
width: 100%;
|
|
height: 250px;
|
|
}
|
|
|
|
#ya-map {
|
|
height: 250px !important;
|
|
}
|
|
|
|
.contact-content {
|
|
width: 100%;
|
|
}
|
|
|
|
.contact_tel {
|
|
font-size: 18px;
|
|
}
|
|
.mentors__item_img {
|
|
max-height: 195px;
|
|
}
|
|
.modal-mentors-wrapper {
|
|
position: relative;
|
|
padding: 15px;
|
|
width: 90%;
|
|
gap: 20px;
|
|
color: #212121;
|
|
height: fit-content;
|
|
max-height: 90%;
|
|
border-radius: 10px;
|
|
flex-direction: column;
|
|
}
|
|
.modal-mentors_name {
|
|
font-size: 20px;
|
|
}
|
|
.modal-mentors__about {
|
|
gap: 10px;
|
|
flex-direction: column;
|
|
}
|
|
.about-item {
|
|
width: 100%;
|
|
padding: 10px;
|
|
border-radius: 10px;
|
|
background-color: #e7fff2;
|
|
display: flex;
|
|
gap: 10px;
|
|
flex-direction: column;
|
|
}
|
|
.mentors__about-col {
|
|
gap: 10px;
|
|
}
|
|
.mentors__about-col_title {
|
|
font-size: 18px;
|
|
}
|
|
.mentors__about-col_text {
|
|
font-size: 14px;
|
|
}
|
|
.mentors__about-col_text section {
|
|
padding: 0;
|
|
}
|
|
.modal-additional__education {
|
|
width: 100%;
|
|
padding: 10px;
|
|
border-radius: 10px;
|
|
gap: 10px;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.modal-additional__education_list ul {
|
|
padding-left: 0 !important;
|
|
}
|
|
|
|
.modal-additional__education_list li {
|
|
width: 100%;
|
|
padding-left: 10px;
|
|
}
|
|
}
|
|
|
|
.modal-camp-request-form {
|
|
background-color: rgba(0,0,0,0.6);
|
|
}
|
|
.modal-camp-request-form .form-wrapper {
|
|
width: 100%;
|
|
max-width: 600px;
|
|
background: #fff;
|
|
border-radius: 24px;
|
|
padding: 40px 32px 32px;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
}
|
|
.modal-camp-request-form .btn-close-request-form {
|
|
position: absolute;
|
|
top: 12px;
|
|
right: 12px;
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
z-index: 2;
|
|
}
|
|
.modal-camp-request-form .btn-close-request-form img {
|
|
width: 24px;
|
|
height: 24px;
|
|
display: block;
|
|
}
|
|
|
|
|
|
@media (min-width: 1024px) {
|
|
.hero-media-search__content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 24px;
|
|
}
|
|
.hero-media-search .heading-1 {
|
|
margin: 0;
|
|
}
|
|
.hero-subtitle-brand {
|
|
margin: 0;
|
|
}
|
|
.hero-media-search__propositions.on-desktop {
|
|
margin: 0;
|
|
}
|
|
.hero-cta__note {
|
|
margin-top: 24px !important;
|
|
text-align: center;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
}
|