:root {
    --primary-dark: #1D2943;
    --primary-light: #E6EEF5;
    --accent: #3B82F6;
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --grey-text-color: #4b5563;
    --card-bg: #E6EEF5;
    --header-bg: #1D2943;
    --header-text-color: #ffffff;
    --header-text-hover: #aed2fa
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    background-color: var(--bg-color);
    color: var(--text-color)
}

img[loading=lazy] {
    filter: blur(10px);
    transition: filter .3s ease
}

img[data-loaded=true] {
    filter: blur(0)
}

a {
    text-decoration: none;
    color: var(--text-color)
}

li {
    list-style: none
}

button {
    border: none
}

.container {
    width: 100%;
    max-width: 1540px;
    padding: 15px;
    margin: 0 auto
}

.border {
    display: block;
    width: 80px;
    height: 4px;
    border-radius: 8px;
    margin: 0 auto 48px;
    background: var(--primary-dark)
}

.main-title {
    text-align: center;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 24px
}

.main-subtitle {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    line-height: 36px;
    max-width: 768px;
    margin: 0 auto 32px
}

.title {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 16px
}

.button {
    display: inline-block;
    color: var(--bg-color);
    background-color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    border-radius: 8px;
    padding: 16px 32px;
    transition: background-color .3s ease, color .3s ease
}

.button span {
    font-weight: 700
}

.button i {
    margin-left: 8px
}

.button:hover {
    color: var(--primary-dark);
    background-color: var(--primary-light)
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    height: 80px;
    background-color: var(--header-bg);
    color: var(--header-text-color)
}

.header-mobile {
    display: none
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.header-nav {
    display: flex;
    justify-content: space-between
}

.header-nav img {
    width: 170px;
    margin-right: 35px
}

.header-nav nav,
.header-nav nav ul {
    display: flex;
    align-items: center
}

.header-nav nav ul li:first-child {
    margin-left: 0
}

.header-nav nav ul li {
    margin-left: 30px
}

.header-nav nav ul a {
    color: var(--header-text-color);
    font-size: 16px;
    transition: color .3s ease
}

.header-nav nav ul a:hover {
    color: var(--header-text-hover)
}

.header-lang {
    position: relative;
    display: flex;
    align-items: center
}

.header-btn {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 4px;
    cursor: pointer;
    background-color: transparent;
    color: var(--header-text-color)
}

.header-btn span {
    font-size: 16px;
    margin-right: 5px
}

.language-dropdown {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 40px;
    right: 0;
    background-color: #fff;
    min-width: 120px;
    box-shadow: 0 8px 16px #0003;
    z-index: 1;
    border-radius: 4px
}

.header-mobile-lang {
    width: 100%;
}

.language-mobile-dropdown {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 20px;
    width: 135px;
    display: none;
    justify-content: space-between;
    align-items: center;
}

.language-mobile-dropdown span {
    display: block;
    color: var(--bg-color);

}

.header-btn i {
    font-size: 10px;
    transition: transform .2s ease;
}

.active-icon {
    transform: rotate(180deg);
}

.active-dropdown {
    display: flex;
}

.header-lang:hover .header-btn {
    background-color: #374151;
}

.language-dropdown span {
    color: var(--text-color);
    cursor: pointer;
    padding: 8px 12px;
    display: block;
    border-radius: 4px;
}

.language-dropdown span:hover {
    background-color: var(--primary-light);
}

.main {
    min-height: 100vh;
    padding-top: 80px
}

.hero {
    background: linear-gradient(#1d294399, #1d294399), url(../images/hero-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 120px 0
}

.hero-inner {
    text-align: center;
    color: var(--header-text-color)
}

.hero-inner a {
    display: inline-block;
    background-color: var(--primary-light);
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    transition: opacity .3s ease
}

.hero-inner a:hover {
    opacity: .8
}

.steps {
    background-color: var(--card-bg);
    padding: 64px 0
}

.steps-inner {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.steps-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px;
    border-radius: 8px;
    background-color: var(--bg-color);
    box-shadow: 1px 1px 5px #d1d1d1bf;
    -webkit-box-shadow: 1px 1px 5px 0px rgba(209, 209, 209, .75);
    -moz-box-shadow: 1px 1px 5px 0px rgba(209, 209, 209, .75);
    transition: transform .3s ease
}

.steps-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 22px
}

.steps-card p {
    text-align: center;
    margin-bottom: 16px
}

.steps-card:hover {
    transform: scale(1.03)
}

.steps-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #d9e7fc;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 24px
}

.steps-icon i {
    font-size: 24px;
    color: var(--accent)
}

.about {
    background-color: var(--bg-color);
    padding: 64px 0
}

.about-inner {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.about-left,
.about-right {
    width: 50%
}

.about-left {
    padding-right: 32px
}

.about-left img {
    width: 100%;
    border-radius: 4px;
    object-fit: cover
}

.about-right h2 {
    text-align: start;
    margin-bottom: 24px
}

.about-right p span {
    display: block;
    font-size: 16px;
    margin-bottom: 45px
}

.about-right p span:first-child {
    margin-bottom: 16px
}

.about-items {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 48px
}

.about-item {
    display: flex;
    align-items: center
}

.about-item i {
    color: var(--accent);
    margin-right: 8px
}

.about-item span {
    font-weight: 500
}

.lessons {
    background-color: var(--card-bg);
    padding: 64px 0
}

.lessons-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.lessons-cards {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 48px
}

.lessons-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px;
    border-radius: 8px;
    background-color: var(--bg-color);
    box-shadow: 1px 1px 5px #d1d1d1bf;
    -webkit-box-shadow: 1px 1px 5px 0px rgba(209, 209, 209, .75);
    -moz-box-shadow: 1px 1px 5px 0px rgba(209, 209, 209, .75);
    transition: transform .3s ease
}

.lessons-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 22px
}

.lessons-card p {
    text-align: center;
    margin-bottom: 16px
}

.lessons-card:hover {
    transform: scale(1.03)
}

.lessons-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #d9e7fc;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 24px
}

.lessons-icon iconify-icon,
.lessons-icon i {
    font-size: 30px;
    color: var(--accent)
}

.teachers {
    background-color: var(--bg-color);
    padding: 64px 0
}

.concerts {
    background-color: var(--card-bg);
    padding: 64px 0
}

.teachers-inner,
.concerts-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.teachers-cards,
.concerts-cards {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 48px
}

.teachers-card,
.concerts-card {
    position: relative;
    height: 384px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 1px 1px 5px #d1d1d1bf;
    -webkit-box-shadow: 1px 1px 5px 0px rgba(209, 209, 209, .75);
    -moz-box-shadow: 1px 1px 5px 0px rgba(209, 209, 209, .75)
}

:is(.teachers-card, .concerts-card) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .3s ease
}

.teachers-card img:hover,
.concerts-card img:hover {
    transform: scale(1.05)
}

.teachers-card:hover .teachers-overlay,
.concerts-card:hover .concerts-overlay {
    transform: translateY(0)
}

.teachers-overlay,
.concerts-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    transform: translateY(100%);
    background: #1d2943cc;
    padding: 1rem;
    transition: transform .3s ease
}

:is(.teachers-overlay, .concerts-overlay) h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px
}

:is(.teachers-overlay, .concerts-overlay) p span {
    display: block;
    font-size: 14px;
    margin-bottom: 4px
}

.concerts-overlay h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px
}

.concerts-overlay p {
    display: block;
    font-size: 14px;
    margin-bottom: 4px
}

.footer {
    background-color: var(--primary-dark);
    padding: 64px 0
}

.footer-grids {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(4, minmax(0, 1fr))
}

.footer-grid {
    padding: 0 8px
}

.footer-grid a {
    font-size: 16px;
    font-weight: 300;
    display: block;
    color: var(--primary-light);
    opacity: .8;
    transition: opacity .3s ease, color .3s ease
}

.footer-grid a:hover {
    opacity: 1;
    color: var(--header-text-color)
}

.footer-grid img {
    width: 150px;
    margin-bottom: 16px
}

.footer-grid p {
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    color: var(--primary-light);
    opacity: .8;
    margin-bottom: 16px
}

.footer-social {
    display: flex;
    align-items: center
}

.footer-social a {
    margin-right: 8px
}

.footer-social i {
    font-size: 16px;
    color: var(--primary-light);
    opacity: .8
}

.footer-grid-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: var(--header-text-color);
    margin-bottom: 16px
}

.footer-grid-lists li {
    margin-bottom: 12px
}

.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, .2);
    text-align: center;
    margin-top: 32px;
    padding-top: 32px
}

.footer-copy p {
    font-size: 16px;
    font-weight: 300;
    color: var(--primary-light);
    opacity: .8
}

.contacts-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--card-bg)
}

.contacts {
    padding: 64px 0
}

.contacts-inner {
    display: flex;
    gap: 32px;
    align-items: center;
    width: 100%
}

.contacts-form {
    width: 50%;
    padding: 32px;
    border-radius: 8px;
    background-color: var(--bg-color);
    box-shadow: 1px 1px 5px #d1d1d1bf;
    -webkit-box-shadow: 1px 1px 5px 0px rgba(209, 209, 209, .75);
    -moz-box-shadow: 1px 1px 5px 0px rgba(209, 209, 209, .75)
}

.contacts-form h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: var(--primary-dark);
    margin-bottom: 24px
}

.contacts-form button {
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    background-color: var(--primary-dark);
    color: var(--primary-light);
    transition: transform .3s ease
}

.contacts-form button:hover {
    transform: scale(1.03)
}

.form-input {
    margin-bottom: 16px
}

.form-input label {
    display: block;
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 8px
}

.form-input input,
.form-input select {
    padding: 8px 16px;
    width: 100%;
    height: 42px;
    font-size: 16px;
    border: 1px solid #d9d9d9;
    border-radius: 8px
}

.form-input input:focus,
.form-input select:focus,
.form-input textarea:focus {
    outline: none;
    border: 2px solid var(--accent)
}

.form-input textarea {
    padding: 8px 16px;
    width: 100%;
    height: 115px;
    font-size: 16px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    resize: none
}

.form-input p {
    font-size: 14px;
    color: #ff2727;
    padding: 4px 0 0 4px;
    display: none
}

.form-input .input-error {
    border: 2px solid #ff2727
}

.form-input .input-error:focus {
    border: 2px solid #ff2727
}

.modal {
    display: none;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.modal-card {
    background-color: var(--bg-color);
    width: 100%;
    max-width: 700px;
    height: 400px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: var(--primary-dark);
    padding: 20px 0;
    margin-bottom: 8px;
}

.modal-close-btn {
    background-color: var(--primary-dark);
    color: var(--bg-color);
    font-size: 16px;
    cursor: pointer;
    padding: 12px 18px;
    border-radius: 4px;
    transition: transform .3s ease;
}

.modal-close-btn:hover {
    transform: scale(1.03)
}

.modal-spinner {
    display: none;
    border: 5px solid var(--header-text-hover);
    border-top: 5px solid var(--accent);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contacts-info {
    width: 50%
}

.contacts-info-inner,
.contacts-info-map {
    padding: 32px;
    border-radius: 8px;
    background-color: var(--bg-color);
    box-shadow: 1px 1px 5px #d1d1d1bf;
    -webkit-box-shadow: 1px 1px 5px 0px rgba(209, 209, 209, .75);
    -moz-box-shadow: 1px 1px 5px 0px rgba(209, 209, 209, .75)
}

.contacts-info-inner {
    margin-bottom: 24px
}

.contacts-info-inner h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: var(--primary-dark);
    margin-bottom: 24px
}

.contacts-info-item {
    display: flex;
    align-items: start;
    margin-top: 16px
}

.contacts-info-item i {
    color: var(--accent);
    margin: 2px 16px 0 0
}

.contacts-info-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px
}

.contacts-info-item p {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 4px
}

.our-lessons,
.our-teachers,
.our-concerts,
.our-bands {
    background-color: var(--card-bg);
    padding: 64px 0
}

.our-lessons-cards,
.our-teachers-cards,
.our-concerts-cards,
.our-bands-cards {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.our-lessons-card,
.our-teachers-card,
.our-concerts-card,
.our-bands-card {
    overflow: hidden;
    height: fit-content;
    border-radius: 12px;
    background-color: var(--bg-color);
    box-shadow: 1px 1px 5px #d1d1d1bf;
    -webkit-box-shadow: 1px 1px 5px 0px rgba(209, 209, 209, .75);
    -moz-box-shadow: 1px 1px 5px 0px rgba(209, 209, 209, .75);
    transition: transform .3s ease;
}

.our-lessons-card:hover,
.our-teachers-card:hover,
.our-concerts-card:hover,
.our-bands-card:hover {
    transform: translateY(-10px)
}

.our-lessons-card-top,
.our-teachers-card-top,
.our-concerts-card-top,
.our-bands-card-top {
    height: 192px
}

:is(.our-lessons-card-top, .our-teachers-card-top, .our-concerts-card-top, .our-bands-card-top) img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.our-teachers-card-metanet img {
    object-position: 0 20%;
}

.our-teachers-card-samira img {
    object-position: 0 15%;
}

.our-teachers-card-top {
    height: 256px
}

.our-lessons-card-bottom,
.our-teachers-card-bottom,
.our-concerts-card-bottom,
.our-bands-card-bottom {
    padding: 24px
}

:is(.our-lessons-card-bottom, .our-teachers-card-bottom, .our-concerts-card-bottom, .our-bands-card-bottom) h3 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: var(--primary-dark)
}

:is(.our-lessons-card-bottom, .our-teachers-card-bottom, .our-concerts-card-bottom, .our-bands-card-bottom) p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--primary-dark)
}

.our-teachers-card-bottom h3 {
    font-size: 24px;
    margin-bottom: 0
}

.our-teachers-card-bottom span {
    color: var(--primary-dark);
    display: block;
    font-size: 18px;
    margin-bottom: 16px
}

.our-concerts-card-bottom h3 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 4px
}

.our-concerts-card-bottom p {
    font-size: 14px;
    line-height: 20px;
}

.our-lessons-card-teacher,
.our-bands-card-teacher {
    display: flex;
    align-items: center;
    margin-bottom: 20px
}

.our-lessons-card-teacher-img,
.our-bands-card-teacher-img {
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 12px
}

:is(.our-lessons-card-teacher-img, .our-bands-card-teacher-img) img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

:is(.our-lessons-card-teacher-name, .our-bands-card-teacher-name) p {
    color: var(--primary-dark);
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 700
}

:is(.our-lessons-card-teacher-name, .our-bands-card-teacher-name) span {
    color: var(--primary-dark);
    font-weight: 400
}

.our-lessons-card-types,
.our-teachers-card-types,
.our-bands-card-types {
    display: flex;
    align-items: center;
    justify-content: space-between
}

:is(.our-lessons-card-types, .our-teachers-card-types, .our-bands-card-types) a {
    padding: 8px 12px;
    background-color: var(--primary-dark)
}

:is(.our-lessons-card-types, .our-teachers-card-types, .our-bands-card-types) a span {
    font-size: 14px;
    color: var(--bg-color)
}

:is(.our-lessons-card-types, .our-teachers-card-types, .our-bands-card-types) a:hover {
    background-color: var(--bg-color)
}

:is(.our-lessons-card-types, .our-teachers-card-types, .our-bands-card-types) a:hover span {
    color: var(--primary-dark)
}

.our-teachers-card-types span {
    margin-bottom: 0
}

.our-lessons-card-type,
.our-teachers-card-type,
.our-bands-card-type {
    display: flex;
    gap: 8px
}

:is(.our-lessons-card-type, .our-teachers-card-type, .our-bands-card-type) span {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    flex: 12;
    font-size: 12px;
    line-height: 16px;
    padding: 4px 8px;
    border-radius: 4px
}

.students {
    background-color: var(--primary-dark);
    padding: 64px 0
}

.students-inner h2 {
    color: var(--bg-color)
}

.students-inner .border {
    border: 2px solid var(--bg-color)
}

.students-cards {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.students-card {
    background-color: #ffffff1a;
    padding: 24px;
    border-radius: 12px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px)
}

.students-card p {
    color: var(--bg-color);
    font-style: italic
}

.students-card-star {
    display: flex;
    align-items: center
}

.students-card-star i {
    color: #facc15;
    font-size: 14px;
    line-height: 28px
}

.students-card-inner {
    display: flex;
    align-items: center;
    margin-bottom: 20px
}

.students-card-inner-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 16px
}

.students-card-inner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.students-card-inner-name p {
    margin-bottom: 0;
    font-weight: 700
}

.students-card-inner-name span {
    color: var(--header-text-hover);
    font-size: 14px
}

.choose {
    background-color: var(--bg-color);
    padding: 64px 0;
    text-align: center
}

.choose-cards {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(3, minmax(0px, 1fr))
}

.choose-card {
    background-color: var(--primary-light);
    padding: 24px
}

.choose-card h3 {
    color: var(--primary-dark);
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 8px
}

.choose-card p {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 8px
}

.choose-card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #d9e7fc;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 16px
}

.choose-card-icon i {
    font-size: 24px;
    color: var(--accent)
}

.learning {
    background-color: var(--card-bg);
    padding: 64px 0;
    text-align: center
}

.learning h2 {
    color: var(--primary-dark)
}

.learning p {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 32px
}

.learning a {
    color: var(--bg-color);
    background-color: var(--primary-dark)
}

.learning a:hover {
    background-color: var(--bg-color);
    color: var(--primary-dark)
}

.our-concerts-card-location,
.our-concerts-card-date,
.our-concerts-card-cost {
    display: flex;
    align-items: center;
    color: var(--primary-dark);
    margin-bottom: 16px
}

:is(.our-concerts-card-location, .our-concerts-card-date, .our-concerts-card-cost) i {
    color: var(--accent);
    margin-right: 8px
}

:is(.our-concerts-card-location, .our-concerts-card-date, .our-concerts-card-cost) span {
    font-size: 16px;
    color: var(--primary-dark)
}

.our-concerts-card-costs {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.our-concerts-card-costs a {
    padding: 8px 12px;
    background-color: var(--primary-dark)
}

.our-concerts-card-costs a span {
    font-size: 14px;
    color: var(--bg-color)
}

.our-concerts-card-costs a:hover {
    background-color: var(--bg-color)
}

.our-concerts-card-costs a:hover span {
    color: var(--primary-dark)
}

.our-concerts-card-cost span {
    color: var(--accent)
}

.founder {
    background-color: var(--bg-color);
    padding: 64px 0
}

.founder-inner {
    display: flex;
    align-items: center;
    gap: 48px
}

.founder-left,
.founder-right {
    width: 50%
}

.founder-left img {
    width: 100%;
    border-radius: 8px;
    height: auto
}

.founder-right h2 {
    color: var(--primary-dark);
    text-align: start;
    margin-bottom: 24px
}

.founder-right p {
    margin-bottom: 24px
}

.founder-right p span {
    display: block;
    font-size: 16px;
    line-height: 22px;
    color: var(--grey-text-color);
    margin-bottom: 16px
}

.founder-right a {
    background-color: var(--primary-dark)
}

.founder-right a span,
.founder-right a i {
    color: var(--bg-color)
}

.founder-right a:hover {
    background-color: var(--bg-color)
}

.founder-right a:hover span,
.founder-right a:hover i {
    color: var(--primary-dark)
}

.founder-items {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 32px
}

.founder-item {
    background-color: var(--card-bg);
    padding: 16px;
    border-radius: 8px
}

.founder-item h3 {
    color: var(--primary-dark);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 8px
}

.founder-item p {
    font-size: 16px;
    line-height: 22px;
    color: var(--grey-text-color)
}

.director{
    background: var(--primary-light);
    padding:64px 0;
}


.directorCard{
    background:#fff;
    border:1px solid #d6e2f0;
    border-radius:18px;
    padding:28px;
    display:grid;
    grid-template-columns: 380px 1fr;
    gap:28px;
    box-shadow:0 14px 30px rgba(16, 24, 40, 0.08);
}

.directorMedia img{
    width:100%;
    height:100%;
    max-height:520px;
    object-fit:cover;
    border-radius:14px;
    display:block;
}

.directorName{
    margin:0;
    font-size: 32px;
    color: var(--primary-dark);
}

.directorRole{
    margin: 8px 0 22px;
    font-weight:700;
    color:#5a6c84;
}

.directorBio{
    margin:0 0 32px;
    color: var(--primary-dark);
    line-height:1.55;
    max-width: 620px;
}

.directorList{
    margin:0 0 32px;
    padding-left:18px;
    color: var(--primary-dark);
    max-width: 620px;
}

.directorList li {
    margin-bottom: 16px;
    font-weight: 600;
}

.directorStats{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:18px;
}

.stat{
    background: #d9effd;
    border:1px solid #9dceff;
    border-radius:14px;
    padding:12px 14px;
    min-width:160px;
}

.stat strong{
    display:block;
    font-size:20px;
    color: var(--primary-dark);
}

.stat span{
    font-size:13px;
    color:#5a6c84;
}

.facilities {
    background-color: var(--card-bg);
    padding: 64px 0
}

.facilities-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin-bottom: 48px
}

.facilities-item {
    background-color: var(--bg-color);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 1px 1px 5px #d1d1d1bf;
    -webkit-box-shadow: 1px 1px 5px 0px rgba(209, 209, 209, .75);
    -moz-box-shadow: 1px 1px 5px 0px rgba(209, 209, 209, .75)
}

.facilities-item h3 {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 16px
}

.facilities-item p {
    color: var(--grey-text-color);
    margin-bottom: 16px
}

.facilities-item ul {
    color: var(--grey-text-color)
}

.facilities-item ul li {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-top: 8px
}

.facilities-item ul li i {
    color: var(--accent);
    margin-right: 8px
}

.facilities-item-inner {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.facilities-item-instrument {
    display: flex;
    align-items: center
}

.facilities-item-instrument i,
.facilities-item-instrument iconify-icon {
    color: var(--accent);
    margin-right: 8px
}

.facilities-images {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.facilities-images img {
    width: 100%;
    height: 192px;
    object-fit: cover;
    border-radius: 8px
}

.about-learning {
    background-color: var(--bg-color)
}

.hero-events {
    background-image: url("../images/concert1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0
}

.hero-halloween {
    background-image: url("../images/halloween.jpg");
    background-position: 50% 25%;
}

.hero-magicBridge {
    background-image: url("../images/poster.jfif");
    background-position: 50% 39%;
}

.hero-piano-lesson {
    background: linear-gradient(#0009, #0009), url(../images/lesson3.jpg);
    background-size: cover;
    background-position: 50% 90%;
    background-repeat: no-repeat
}

.hero-vocal-lesson {
    background: linear-gradient(#0009, #0009), url(../images/lesson1.jpg);
    background-size: cover;
    background-position: 50% 40%;
    background-repeat: no-repeat
}

.hero-guitar-lesson {
    background: linear-gradient(#0009, #0009), url(../images/lesson2.jpg);
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat
}

.hero-arif-teacher {
    background: linear-gradient(#0009, #0009), url(../images/arif-drum.jpg);
    background-size: cover;
    background-position: 50% 30%;
    background-repeat: no-repeat
}

.hero-kubra-teacher {
    background: linear-gradient(#0009, #0009), url(../images/kubra.jpg);
    background-size: cover;
    background-position: 50% 30%;
    background-repeat: no-repeat
}

.hero-gulshen-teacher {
    background: linear-gradient(#0009, #0009), url(../images/gulshen.jpg);
    background-size: cover;
    background-position: 50% 46%;
    background-repeat: no-repeat
}

.hero-vagif-teacher {
    background: linear-gradient(#0009, #0009), url(../images/vagif-teacher.JPG);
    background-size: cover;
    background-position: 50% 32%;
    background-repeat: no-repeat
}

.hero-nigar-teacher {
    background: linear-gradient(#0009, #0009), url(../images/nigar-bg.JPG);
    background-size: cover;
    background-position: 50% 42%;
    background-repeat: no-repeat
}

.hero-leyla-teacher {
    background: linear-gradient(#0009, #0009), url(../images/Leyla.jpg);
    background-size: cover;
    background-position: 50% 30%;
    background-repeat: no-repeat
}

.hero-samira-teacher {
    background: linear-gradient(#0009, #0009), url(../images/samira-bg.jpg);
    background-size: cover;
    background-position: 50% 36%;
    background-repeat: no-repeat

}

.hero-sugra-teacher {
    background: linear-gradient(#0009, #0009), #1D2943;

}

.hero-metanet-teacher {
    background: linear-gradient(#0009, #0009), #1D2943;
}

.hero-fidan-teacher {
    background: linear-gradient(#0009, #0009), #1D2943;
}

.hero-band {
    background: linear-gradient(#0009, #0009), url(../images/bands1.jpg);
    background-size: cover;
    background-position: 50% 35%;
    background-repeat: no-repeat
}

.hero-events-subtitle {
    display: inline-block;
    background-color: var(--accent);
    padding: 4px 16px;
    border-radius: 12px;
    margin-bottom: 16px
}

.hero-events-subtitle span {
    color: var(--header-text-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px
}

.hero-events-inner h1 {
    color: var(--header-text-color);
    text-align: left
}

.hero-events-inner a {
    background-color: var(--accent);
    border: 1px solid var(--accent);
    color: var(--header-text-color)
}

.hero-events-inner a i {
    color: var(--header-text-color)
}

.hero-events-inner a:hover {
    background-color: var(--bg-color);
    color: var(--accent)
}

.hero-events-inner a:hover i {
    color: var(--accent)
}

.hero-events-date {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px
}

.hero-events-flex {
    display: flex;
    align-items: center;
    color: var(--header-text-color)
}

.hero-events-flex i {
    margin-right: 8px
}

.event-description {
    background-color: var(--bg-color);
    padding: 64px 0
}

.event-description-inner {
    display: flex;
    gap: 32px
}

.event-description-left {
    width: 66%
}

.event-left-item {
    margin-bottom: 32px
}

.event-left-item h2 {
    color: var(--primary-dark);
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 16px
}

.event-left-item p {
    color: var(--grey-text-color);
    font-size: 16px;
    line-height: 24px
}

.event-left-item ul {
    padding-left: 20px
}

.event-left-item ul li {
    color: var(--grey-text-color);
    font-size: 16px;
    list-style: disc;
    margin-bottom: 8px
}

.event-left-inner {
    background-color: #aed2fa4d;
    border-radius: 8px;
    margin-bottom: 24px;
    padding: 24px
}

.event-left-inner h3 {
    color: var(--primary-dark);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 12px
}

.event-left-inner ul li {
    display: flex;
    align-items: center;
    margin-bottom: 12px
}

.event-left-inner ul li i {
    color: var(--accent);
    margin-right: 8px
}

.event-left-inner ul li span,
.event-left-inner ul li a {
    color: var(--accent)
}

.event-description-right {
    width: 34%;
    padding: 24px
}

.event-description-right h2 {
    color: var(--primary-dark);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 20px
}

.event-description-right .button {
    background-color: var(--accent);
    color: var(--bg-color);
    border: 1px solid var(--accent)
}

.event-description-right .button:hover {
    background-color: var(--bg-color);
    color: var(--accent)
}

.event-right-item {
    margin-bottom: 18px
}

.event-right-item h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 8px
}

.event-right-item p {
    font-size: 16px;
    color: var(--grey-text-color)
}

.event-right-item p span {
    display: block;
    margin-bottom: 8px
}

.event-right-item a i,
.event-right-item a span {
    color: var(--accent);
    font-size: 14px
}

.event-right-social {
    display: flex;
    align-items: center
}

.event-right-social .event-facebook,
.event-right-social .event-twitter,
.event-right-social .event-instagram,
.event-right-social .event-youtube {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--accent);
    color: var(--bg-color);
    transition: transform .3s ease
}

.event-right-social .event-facebook,
.event-right-social .event-twitter,
.event-right-social .event-youtube {
    margin-right: 8px
}

.event-right-social .event-facebook:hover,
.event-right-social .event-twitter:hover,
.event-right-social .event-instagram:hover,
.event-right-social .event-youtube:hover {
    transform: scale(1.05)
}

@media (max-width: 1024px) {
    .header-nav img {
        width: 150px;
        margin-right: 25px
    }

    .header-nav nav ul li {
        margin-left: 20px
    }

    .header-nav nav ul li a {
        font-size: 14px
    }

    .header-btn span {
        font-size: 14px
    }

    .main-title {
        font-size: 48px
    }

    .main-subtitle {
        font-size: 22px
    }

    .title {
        font-size: 26px;
        margin-bottom: 10px
    }

    .steps-inner,
    .lessons-cards,
    .teachers-cards,
    .concerts-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .about-inner {
        flex-direction: column
    }

    .about-left img {
        padding-right: 0;
        padding-bottom: 20px
    }

    .about-left,
    .about-right {
        padding-right: 0;
        width: 70%
    }

    .founder-inner {
        flex-direction: column
    }

    .founder-left,
    .founder-right {
        width: 100%
    }

    .facilities-items {
        grid-template-columns: repeat(1, minmax(0, 1fr))
    }

    .facilities-images,
    .choose-cards,
    .students-cards,
    .our-lessons-cards,
    .our-teachers-cards,
    .our-concerts-cards,
    .our-bands-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .contacts-inner {
        flex-direction: column
    }

    .contacts-form,
    .contacts-info {
        width: 100%
    }

    .event-description-inner {
        flex-direction: column
    }

    .event-description-left,
    .event-description-right {
        width: 100%
    }
}

@media (max-width: 900px){
    .directorCard{
        grid-template-columns: 1fr;
    }
    .directorMedia img{
        max-height:420px;
        object-position: 50% 27%;
    }
}

@media (max-width: 768px) {
    .header-inner {
        display: none
    }

    .header-mobile {
        position: relative;
        display: block
    }

    .header-mobile-logo {
        margin-right: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    .header-mobile-logo a img {
        position: relative;
        width: 150px;
        z-index: 999
    }

    .header-mobile-burger {
        position: relative;
        z-index: 999;
        width: 30px;
        height: 18px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer
    }

    .header-mobile-burger span {
        display: block;
        border: 1px solid var(--bg-color);
        transition: transform .3s ease, opacity .3s ease
    }

    .active-burger span:nth-child(1) {
        transform: translateY(10px) rotate(45deg)
    }

    .active-burger span:nth-child(2) {
        opacity: 0
    }

    .active-burger span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg)
    }

    .header-mobile-inner {
        position: fixed;
        top: 0;
        left: -100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-dark);
        transition: left .3s ease
    }

    .header-mobile-inner li {
        text-align: center;
        margin-bottom: 15px
    }

    .header-mobile-inner li a {
        color: var(--bg-color);
        font-size: 18px
    }

    .active-mobile-inner {
        left: 0
    }

    .main-title {
        font-size: 42px
    }

    .main-subtitle {
        font-size: 20px
    }

    .header-mobile-lang {
        position: relative;
        text-align: center
    }

    .header-mobile-lang button {
        background-color: transparent
    }

    .header-mobile-lang button span {
        color: var(--bg-color);
        font-size: 18px
    }

    .header-mobile-lang button i {
        color: var(--bg-color);
        font-size: 14px;
        transition: transform .2s ease
    }

    .steps-inner,
    .lessons-cards,
    .teachers-cards,
    .concerts-cards {
        grid-template-columns: repeat(1, minmax(0, 1fr))
    }

    .about-left,
    .about-right {
        width: 100%
    }

    .directorMedia img{
        object-position: 50% 30%;
    }

    .footer-grids {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .footer-grid:nth-child(2),
    .footer-grid:nth-child(3) {
        display: none
    }

    .founder-items,
    .facilities-images,
    .choose-cards,
    .students-cards,
    .our-lessons-cards,
    .our-teachers-cards,
    .our-concerts-cards,
    .our-bands-cards {
        grid-template-columns: repeat(1, minmax(0, 1fr))
    }
}

@media (max-width: 425px) {
    .main-title {
        font-size: 36px
    }

    .main-subtitle {
        font-size: 18px;
        line-height: 28px
    }

    .our-lessons-card-types, .our-teachers-card-types, .our-bands-card-types {
        flex-direction: column;
        align-items: start;
    }

    .our-lessons-card-type, .our-teachers-card-type, .our-bands-card-type {
        margin-bottom: 15px;
    }

    .footer-grids {
        grid-template-columns: repeat(1, minmax(0, 1fr))
    }
}
