/* ==========================================================
                                                                                                                                                                                                               RESET
                                                                                                                                                                                                            ========================================================== */
:root {
    --bg: #08080a;
    --bg-light: #111116;
    --card: rgba(255, 255, 255, .04);
    --text: #ffffff;
    --text-light: #b8bcc6;
    --text-gray: #7d8491;
    --border: rgba(255, 255, 255, .08);
    --primary: #8b5cf6;
    --primary-light: #a855f7;
    --radius: 18px;
    --shadow: 0 20px 60px rgba(0, 0, 0, .35);
    --transition: .35s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

ul {
    list-style: none;
}

/* ==========================================================
                                                                                                                                                                                                               TYPOGRAPHY
                                                                                                                                                                                                            ========================================================== */
h1 {
    font-size: clamp(60px, 7vw, 92px);
    line-height: .95;
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 25px;
}

h2 {
    font-size: clamp(40px, 4vw, 64px);
    font-weight: 800;
    line-height: 1.1;
}

h3 {
    font-size: 28px;
    font-weight: 700;
}

p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-light);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 80px;
    text-align: center;
}

.section-header h2 {
    margin-top: 15px;
}

/* ==========================================================
                                                                                                                                                                                                               LAYOUT
                                                                                                                                                                                                            ========================================================== */
.container {
    width: min(1320px, calc(100% - 60px));
    margin: auto;
}

.section {
    padding: 140px 0;
    position: relative;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ==========================================================
                                                                                                                                                                                                               BUTTONS
                                                                                                                                                                                                            ========================================================== */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 18px 34px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, .45);
}

.btn-secondary {
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
}

/* ==========================================================
                                                                                                                                                                                                               HEADER
                                                                                                                                                                                                            ========================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(18px);
    background: rgba(8, 8, 10, .55);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.header-wrapper {
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo__img {
    /* Задаём высоту логотипа, чтобы шапка выглядела аккуратно */
    height: 150px;
    width: auto; /* Пропорции сохраняются автоматически */
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo span {
    color: var(--primary-light);
    font-size: 12px;
    margin-top: 3px;
}

nav {
    display: flex;
    gap: 34px;
}

nav a {
    position: relative;
    color: var(--text-light);
    font-size: 14px;
    transition: var(--transition);
}

nav a:hover {
    color: white;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: .3s;
}

nav a:hover::after {
    width: 100%;
}

/* ==========================================================
                                                                                                                                                                                                               HERO
                                                                                                                                                                                                            ========================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: url('../images/bg4.png') no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, .18), transparent 70%);
    right: -250px;
    top: -150px;
    filter: blur(60px);
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 650px 220px;
    align-items: center;
    gap: 50px;
}

.hero-left {
    z-index: 5;
}

.hero-left h2 {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero-left p {
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 70px;
}

.hero-stats {
    display: flex;
    gap: 60px;
}

.hero-stat h3 {
    font-size: 50px;
    color: var(--primary-light);
    margin-bottom: 6px;
}

.hero-stat span {
    font-size: 12px;
    color: var(--text-gray);
    /*text-transform: uppercase;*/
    letter-spacing: 1px;
}

.hero-center {
    position: relative;
}

.hero-center img {
    max-height: 900px;
    object-fit: contain;
}

.hero-right {
    display: flex;
    justify-content: flex-end;
}

/* --- 4. БОКОВАЯ ПАНЕЛЬ СОЦСЕТЕЙ --- */
.socials-bar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 40px;
    z-index: 100;
}

.socials-bar__link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 11px;
    letter-spacing: 2px;
}

.socials-bar__link svg {
    transform: rotate(90deg); /* Компенсация поворота текста для иконки */
}

.socials {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.socials a {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--text-gray);
    transition: .3s;
}

.socials a:hover {
    color: white;
}

/* ==========================================================
                                                                                                                                                                                                               ABOUT
                                                                                                                                                                                                            ========================================================== */
.about-wrapper {
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 90px;
    align-items: center;
}

.about-photo {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    aspect-ratio: 4/5;
    background: #111;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .8s;
}

.about-photo:hover img {
    transform: scale(1.05);
}

.about-content h3 {
    font-size: 46px;
    line-height: 1.15;
    margin-bottom: 35px;
    max-width: 650px;
}

.about-content p {
    margin-bottom: 24px;
    max-width: 720px;
}

.about-achievements {
    margin-top: 120px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.achievement {
    padding: 35px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .05);
    transition: .35s;
}

.achievement:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, .35);
}

.achievement h3 {
    font-size: 64px;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.achievement span {
    color: var(--text-light);
    line-height: 1.5;
}

/* ==========================================================
                                                                                                                                                                                                               ADVANTAGES
                                                                                                                                                                                                            ========================================================== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.advantage {
    padding: 40px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .05);
    transition: .35s;
}

.advantage:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, .05);
    border-color: rgba(139, 92, 246, .25);
}

.advantage h3 {
    margin-bottom: 20px;
    font-size: 28px;
}

.advantage p {
    color: var(--text-light);
}

/* ==========================================================
                                                                                                                                                                                                               DIRECTIONS
                                                                                                                                                                                                            ========================================================== */
.directions-grid {
    display: grid;
    gap: 80px;
}

.direction-card {
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 70px;
    align-items: center;
}

.direction-card:nth-child(even) {
    direction: rtl;
}

.direction-card:nth-child(even) .direction-content {
    direction: ltr;
}

.direction-image {
    overflow: hidden;
    border-radius: 36px;
    aspect-ratio: 4/5;
}

.direction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.direction-card:hover img {
    transform: scale(1.08);
}

.direction-content h3 {
    font-size: 48px;
    margin-bottom: 25px;
}

.direction-content p {
    margin-bottom: 20px;
}

/* ==========================================================
                                                                                                                                                                                                               SEASON
                                                                                                                                                                                                            ========================================================== */
.season-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px;
    border-radius: 40px;
    background: linear-gradient( 135deg, rgba(139, 92, 246, .08), rgba(255, 255, 255, .02) );
    border: 1px solid rgba(255, 255, 255, .05);
}

.season-left h2 {
    margin-top: 15px;
}

.season-right p {
    font-size: 18px;
}

.season-right p+p {
    margin-top: 24px;
}

/* ==========================================================
                                                                                                                                                                                                               SCHEDULE
                                                                                                                                                                                                            ========================================================== */
.schedule-address {
    text-align: center;
    margin-bottom: 70px;
}

.schedule-address h3 {
    font-size: 32px;
    margin-bottom: 12px;
}

.schedule-table {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.schedule-item {
    display: grid;
    grid-template-columns: 220px 240px 1fr;
    align-items: center;
    padding: 30px 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .05);
    transition: .35s;
}

.schedule-item:hover {
    transform: translateX(10px);
    border-color: rgba(139, 92, 246, .3);
}

.schedule-item .time {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-light);
}

.schedule-item .group {
    font-size: 22px;
    font-weight: 700;
}

.schedule-item .description {
    color: var(--text-light);
}

/* ==========================================================                                                                                                                                                                                                    
PRICES                                                                                                                                                                                                     
========================================================== */

.media-wrapper {
   display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    align-items: start;
}

.media-video {
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 18px;
    background: #111;
}

.media-video__player {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ========= video ========= */

.prices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.price-card {
    position: relative;
    padding: 45px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .05);
    transition: .35s;
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, .35);
}

.price-card.featured {
    background: linear-gradient( 145deg, rgba(139, 92, 246, .18), rgba(255, 255, 255, .04) );
}

.price-label {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(139, 92, 246, .25);
    color: white;
    font-size: 12px;
    text-transform: uppercase;
}

.price-card h3 {
    margin-bottom: 25px;
}

.price {
    font-size: 64px;
    font-weight: 900;
    color: var(--primary-light);
    margin-bottom: 15px;
}

.price-card ul {
    margin-top: 30px;
}

.price-card li {
    color: var(--text-light);
    margin-bottom: 15px;
    padding-left: 24px;
    position: relative;
}

.price-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-light);
}

.individual-prices {
    margin-top: 100px;
}

.individual-prices h3 {
    text-align: center;
    margin-bottom: 45px;
}

.individual-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.individual-grid div {
    padding: 35px;
    text-align: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, .03);
}

.individual-grid strong {
    display: block;
    font-size: 22px;
    margin-bottom: 15px;
}

.individual-grid span {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary-light);
}

/* ==========================================================
                                                                                                                                                                                                               COURSES
                                                                                                                                                                                                            ========================================================== */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.course-card {
    overflow: hidden;
    border-radius: 32px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .05);
    transition: .35s;
}

.course-card:hover {
    transform: translateY(-10px);
}

.course-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.course-card:hover img {
    transform: scale(1.08);
}

.course-content {
    padding: 40px;
}

.course-content h3 {
    margin-bottom: 20px;
}

.course-footer {
    margin-top: 70px;
    text-align: center;
}

.course-footer a {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-light);
    font-weight: 700;
    font-size: 22px;
}

/* ==========================================================
                                                                                                                                                                                                               TRIAL
                                                                                                                                                                                                            ========================================================== */
.trial-wrapper {
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 80px;
    align-items: center;
}

.trial-info {
    padding-right: 30px;
}

.trial-info h2 {
    margin: 15px 0 30px;
}

.trial-info p {
    margin-bottom: 20px;
}

.trial-info strong {
    color: var(--primary-light);
    font-weight: 700;
}

.trial-form {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 32px;
    padding: 50px;
    backdrop-filter: blur(18px);
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.form-group label {
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 15px;
}

.form-group input {
    height: 60px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
    color: #fff;
    padding: 0 20px;
    font-size: 16px;
    transition: .3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, .15);
}

.trial-form button {
    width: 100%;
    margin-top: 10px;
}

/* ==========================================================
                                                                                                                                                                                                               FAQ
                                                                                                                                                                                                            ========================================================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-list article {
    padding: 35px 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .05);
    transition: .35s;
}

.faq-list article:hover {
    border-color: rgba(139, 92, 246, .25);
}

.faq-list h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.faq-list p {
    max-width: 900px;
}

/* ==========================================================
                                                                                                                                                                                                               CONTACTS
                                                                                                                                                                                                            ========================================================== */
.contacts-wrapper {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 60px;
    align-items: flex-start;
}

.contacts-wrapper h2 {
    margin: 18px 0 25px;
}

.contacts-wrapper h3 {
    margin-bottom: 25px;
}

.contacts-wrapper p {
    margin-bottom: 10px;
}

.contacts-wrapper ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contacts-wrapper li {
    color: var(--text-light);
    transition: .3s;
}

.contacts-wrapper li:hover {
    color: white;
    transform: translateX(8px);
}

.contacts-wrapper .btn {
    margin-top: 25px;
}

/* ==========================================================
                                                                                                                                                                                                               FOOTER
                                                                                                                                                                                                            ========================================================== */
footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-wrapper h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.footer-wrapper p {
    font-size: 14px;
}

.footer-wrapper a {
    color: var(--text-light);
    transition: .3s;
}

.footer-wrapper a:hover {
    color: white;
}

/* ==========================================================
                                                                                                                                                                                                               SCROLLBAR
                                                                                                                                                                                                            ========================================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #09090b;
}

::-webkit-scrollbar-thumb {
    background: #30303a;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ==========================================================
                                                                                                                                                                                                               SELECTION
                                                                                                                                                                                                            ========================================================== */
::selection {
    background: var(--primary);
    color: white;
}

/* ==========================================================
                                                                                                                                                                                                               ANIMATIONS
                                                                                                                                                                                                            ========================================================== */

@keyframes FadeUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: FadeUp .8s ease both;
}

/* ==========================================================
                                                                                                                                                                                                               RESPONSIVE
                                                                                                                                                                                                            ========================================================== */

/* ==========================================================
                                                                                                                                                                                                               1600px
                                                                                                                                                                                                            ========================================================== */

@media (max-width:1600px) {
    .hero-wrapper {
        grid-template-columns: 1fr 560px 160px;
    }
    .hero-center img {
        max-height: 820px;
    }
}

/* ==========================================================
                                                                                                                                                                                                               1400px
                                                                                                                                                                                                            ========================================================== */

@media (max-width:1400px) {
    .container {
        width: min(1200px, calc(100% - 60px));
    }
    h1 {
        font-size: 72px;
    }
    h2 {
        font-size: 54px;
    }
    .hero-wrapper {
        grid-template-columns: 1fr 500px 120px;
        gap: 40px;
    }
    .hero-center img {
        max-height: 760px;
    }
    .achievement h3 {
        font-size: 52px;
    }
}

/* ==========================================================
                                                                                                                                                                                                               1200px
                                                                                                                                                                                                            ========================================================== */

@media (max-width:1200px) {
    .section {
        padding: 110px 0;
    }
    .hero-wrapper {
        grid-template-columns: 1fr 430px;
    }
    .hero-right {
        display: none;
    }
    .about-wrapper {
        grid-template-columns: 420px 1fr;
        gap: 50px;
    }
    .direction-card {
        grid-template-columns: 420px 1fr;
        gap: 50px;
    }
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .prices-grid {
        grid-template-columns: 1fr;
    }
    .individual-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contacts-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==========================================================
                                                                                                                                                                                                               992px
                                                                                                                                                                                                            ========================================================== */

@media (max-width:992px) {
    nav {
        display: none;
    }
    header {
        height: 80px;
    }
    .hero {
        padding-top: 120px;
    }
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-left {
        order: 2;
    }
    .hero-center {
        order: 1;
        margin: auto;
        max-width: 500px;
    }
    .hero-left p {
        margin: auto;
        margin-bottom: 40px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    .about-photo {
        max-width: 520px;
        margin: auto;
    }
    .about-content {
        text-align: center;
    }
    .about-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .about-achievements {
        grid-template-columns: repeat(2, 1fr);
    }
    .direction-card, .direction-card:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .direction-image {
        max-width: 550px;
        margin: auto;
    }
    .season-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px;
    }
    .courses-grid {
        grid-template-columns: 1fr;
    }
    .trial-wrapper {
        grid-template-columns: 1fr;
    }
    .contacts-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ==========================================================
                                                                                                                                                                                                               768px
                                                                                                                                                                                                            ========================================================== */

@media (max-width:768px) {
    .container {
        width: calc(100% - 40px);
    }
    .section {
        padding: 90px 0;
    }
    h1 {
        font-size: 56px;
    }
    h2 {
        font-size: 42px;
    }
    h3 {
        font-size: 28px;
    }
    p {
        font-size: 16px;
    }
    .hero-center img {
        max-height: 520px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-stats {
        flex-direction: column;
        gap: 35px;
    }
    .about-achievements {
        grid-template-columns: 1fr;
    }
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    .schedule-item {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    .individual-grid {
        grid-template-columns: 1fr;
    }
    .trial-form {
        padding: 35px;
    }
    .footer-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .media-wrapper {
        grid-template-columns: 1fr;
    }
   .media-video {
        height: 500px;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ==========================================================
                                                                                                                                                                                                               576px
                                                                                                                                                                                                            ========================================================== */

@media (max-width:576px) {
    .container {
        width: calc(100% - 30px);
    }
    .section {
        padding: 70px 0;
    }
    h1 {
        font-size: 44px;
        letter-spacing: -2px;
    }
    h2 {
        font-size: 34px;
    }
    .hero-center {
        max-width: 340px;
    }
    .hero-center img {
        max-height: 420px;
    }
    .achievement, .advantage, .price-card, .course-content, .faq-list article {
        padding: 28px;
    }
    .trial-form {
        padding: 25px;
    }
    .season-wrapper {
        padding: 35px;
    }
}

/* ==========================================================
                                                                                                                                                                                                               400px
                                                                                                                                                                                                            ========================================================== */

@media (max-width:400px) {
    h1 {
        font-size: 38px;
    }
    h2 {
        font-size: 30px;
    }
    .btn {
        width: 100%;
    }
    .hero-center {
        max-width: 280px;
    }
    .hero-center img {
        max-height: 340px;
    }
}
