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

:root {
    --bs-breakpoint-xs: 0;
    --bs-breakpoint-sm: 576px;
    --bs-breakpoint-md: 768px;
    --bs-breakpoint-lg: 992px;
    --bs-breakpoint-xl: 1200px;
    --bs-breakpoint-xxl: 1400px;
    --bm-blue: #4E91FD;
    --bm-gray: #404041;
    --bm-orange: #F2622E;
    --bm-yellow: #E57A09;
}


/* inter-100 - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100;
    src: url('../fonts/inter-v20-latin-100.woff2') format('woff2');
}

/* inter-200 - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/inter-v20-latin-200.woff2') format('woff2');
}

/* inter-300 - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/inter-v20-latin-300.woff2') format('woff2');
}

/* inter-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
}

/* inter-500 - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/inter-v20-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/inter-v20-latin-600.woff2') format('woff2');
}

/* inter-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/inter-v20-latin-700.woff2') format('woff2');
}

/* inter-800 - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/inter-v20-latin-800.woff2') format('woff2');
}

/* inter-900 - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/inter-v20-latin-900.woff2') format('woff2');
}


body {
    margin: 0;
    -webkit-text-size-adjust: 100%;
    color: #000;
    background: white;
    color: var(--bm-gray)
}

html {
    scroll-behavior: smooth;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container-sm, .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-md, .container-sm, .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-lg, .container-md, .container-sm, .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1336px;
    }
}

.container-fluid {
    padding: 0;
}

body {
    font-family: Inter, serif;
}

.position-relative {
    position: relative;
}

h1 {
    font-weight: 800;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0;
    margin-bottom: 24px;
    margin-top: 0;
}

h2 {
    font-weight: 800;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0;
    margin-bottom: 24px;
    margin-top: 0;
}

h3 {
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0;
    margin-bottom: 15px;
    margin-top: 0;
}

h4 {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    vertical-align: bottom;
    margin-bottom: 15px;
    margin-top: 0;
}

p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    margin: 0;
}

.large-p {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
}

.btn-text {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
}

a {
    text-decoration: none;
}

.img-fluid {
    max-width: 100%;
}

.main-btn {
    text-decoration: none;
    background: var(--bm-blue);
    padding: 0 18px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: white;
    border-radius: 50px;
}

.secondary-btn {
    border: 1px solid var(--bm-orange);
    color: var(--bm-orange);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    height: 40px;
    text-decoration: none;
}

.filled-btn {
    text-decoration: none;
    background: var(--bm-yellow);
    padding: 0 18px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: white;
    border-radius: 50px;
}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 23px;
    padding: 10px 20px;
    border: 2px solid var(--bm-blue);
    border-radius: 50px;
    margin-bottom: 15px;
}

.nav-items {
    display: flex;
    gap: 24px;
}

.nav-items a {
    color: var(--bm-gray);
}

.toggle-menu, .menu-close {
    display: none;
}

#hero {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
}

.hero-desc {
    width: 50%;
    padding: 233px 0;
}

.hero-img {
    position: absolute;
    top: 0;
    right: 0;
}

.hero-img img {
    max-height: 710px;
}

.button-cta {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.hero-desc h1 {
    margin-bottom: 24px;
}

.hero-desc p {
    max-width: 537px;
}

#classes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 93px;
}

#classes .left-side {
    width: 60%;
}

#classes .right-side {
    max-width: 460px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    margin-top: 24px;
}

.feature-list li {
    position: relative;
    padding-left: 21px;
    margin-bottom: 14px;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background-image: url('../img/circle.png');
    background-size: contain;
    background-repeat: no-repeat;
}

#class-list .title {
    text-align: center;
}

#class-list .subtitle {
    max-width: 418px;
    text-align: center;
    margin: auto auto 60px auto;
}


.class-items {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.class-item .class-item-desc {
    text-align: center;
    margin-top: 20px;
}

.class-item .class-item-desc h3 {
    color: black;
}

.class-item .class-item-desc p {
    color: #6D758F;
    margin-bottom: 20px;
}

.class-item .class-item-desc .filled-btn {
    width: 130px;
    margin: auto;
    padding: 0;
}

.class-item-img {
    height: 75%;
    position: relative;
    background: var(--bm-yellow);
    border-top-right-radius: 200px;
    border-top-left-radius: 200px;
}

.class-item-img-wrapper {
    height: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.class-item-img-wrapper img {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

#music-note {
    padding: 52px 114px;
    border-radius: 500px;
    position: relative;
    background: var(--bm-blue) url('../img/music-background.png') no-repeat center;
    margin-top: 136px;
}

#music-note h2 {
    margin-bottom: 20px;
    color: white;
}

#music-note h4 {
    color: white;
}

#music-note .main-btn img {
    filter: invert(80%) sepia(78%) saturate(1025%) hue-rotate(175deg) brightness(92%) contrast(95%);
}

#music-note .main-btn {
    background: #ffffff;
    color: var(--bm-blue);
}

.music-note {
    position: absolute;
    bottom: 0;
    right: 127px;
}

#teachers {
    margin-top: 50px;
}

.teacher-swiper {
    margin-top: 20px;
}

#teachers .title {
    text-align: center;
}

#teachers .subtitle {
    max-width: 660px;
    margin: auto;
    text-align: center;
}

.teacher-img-wrapper {
    background: var(--bm-yellow);
    border-top-right-radius: 200px;
    border-top-left-radius: 200px;
    height: 466px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.teacher-name {
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: black;
    margin-top: 20px;
    margin-bottom: 10px;
}

.teacher-field {
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: black;
}

#faq {
    padding: 100px 0 0;
}

.faq-section {
    max-width: 660px;
    margin: 0 auto;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 20px 13px 31px;
    cursor: pointer;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    box-shadow: 0px 4px 4px 0px #5F5F5F61;
    background: var(--bm-blue);
    color: white;
    border-radius: 50px;
}

.faq-icon {
    font-size: 32px;
    transition: transform 0.3s ease;
    font-weight: 200;
}

.faq-answer {
    display: none;
    padding: 5px 20px;
    color: #555;
    line-height: 1.6;
}

.faq-sec h2 {
    margin-bottom: 60px;
    text-align: center;
}

.faq-item {
    margin-bottom: 15px;
}

#faq::before {
    content: "";
    position: absolute;
    left: -290px;
    top: 50%;
    transform: translateY(-50%);
    width: 550px;
    height: 550px;
    background-image: url('../img/music-pattern.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

#faq::after {
    content: "";
    position: absolute;
    right: -290px;
    top: 50%;
    transform: translateY(-50%);
    width: 550px;
    height: 550px;
    background-image: url('../img/music-pattern.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

#faq {
    position: relative;
    overflow: hidden;
}

#booking {
    display: flex;
    margin-top: 100px;
}

#booking .booking-vec-wrapper {
    width: 50%;
}

.booking-desc {
    max-width: 434px;
    margin: auto auto 0 auto;
}

#booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 32px;
}

#booking-form .filled-btn {
    border: 0;
}

#booking-form input {
    border: 1px solid #F1F3F7;
    box-shadow: 0 1px 4px 0 #19213D14;
    border-radius: 50px;
    height: 50px;
    padding: 0 19px;
    color: #716D6D;
    font-size: 14px;
    font-weight: 400;
    font-family: Inter, sans-serif;
    outline: none;
}

#booking-form textarea {
    border: 1px solid #F1F3F7;
    box-shadow: 0 1px 4px 0 #19213D14;
    border-radius: 30px;
    padding: 20px;
    color: #716D6D;
    font-size: 14px;
    font-weight: 400;
    height: 173px;
    font-family: Inter, sans-serif;
    outline: none;
}

footer {
    background: var(--bm-blue);
    margin-top: 50px;
    padding: 30px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-menu a {
    color: white;
    font-weight: 400;
    font-size: 16px;
}

.footer-menu {
    display: flex;
    gap: 36px;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-logo {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    filter: brightness(100);
}

.swiper-navigation-icon {
    width: 30px !important;
    height: 30px !important;
    background: var(--bm-blue);
    color: white;
    border-radius: 50px;
    padding: 6px;
}

.footer-socials{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
@media (min-width: 769px) and (max-width: 1200px) {
    .music-note {
        right: 0;
    }

    .booking-desc {
        width: 50%;
    }

    #booking {
        gap: 50px;
    }

    #hero-wrapper {
        display: flex;
        align-items: stretch;
    }

    .hero-img {
        position: relative;
    }

    .hero-desc {
        padding-left: 13%;
        padding-top: 100px;
        padding-bottom: 100px;
        width: 100%;
    }

    .hero-desc h1 {
        font-size: 26px;
        line-height: 32px;
    }

    #classes .right-side {
        width: 400px;
    }

    #classes {
        gap: 30px;
    }
}

@media (max-width: 768px) {

    h1 {
        font-size: 30px;
        line-height: 48px;
    }

    h2 {
        font-size: 24px;
        line-height: 40px;
    }

    h3 {
        font-size: 20px;
        line-height: 100%;
    }

    p {
        font-size: 14px;
        line-height: 24px;
    }

    .large-p {
        font-size: 14px;
        line-height: 22px;
    }

    .toggle-menu {
        display: block;
    }

    #navbar .main-btn {
        display: none;
    }

    .nav-items {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;

        flex-direction: column;
        justify-content: center;
        align-items: center;

        height: 100vh;
        background: #034872d9;
        backdrop-filter: blur(3px);
        border-top-right-radius: 50px;
        border-top-left-radius: 50px;

        transform: translateY(100%);
        transition: transform 0.4s ease;
        z-index: 100;
        top: 20px;

    }

    .nav-items.active {
        transform: translateY(0);
    }

    .menu-close {
        display: block;
        position: absolute;
        top: 25px;
        right: 25px;
        background: none;
        border: none;
        font-size: 32px;
        color: white;
        cursor: pointer;
    }

    .nav-items.active a {
        color: white;
    }

    .hero-desc {
        width: 100%;
        text-align: center;
    }

    #hero {
        overflow: hidden;
        flex-direction: column-reverse;
    }

    #hero-wrapper {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
    }

    .hero-img {
        position: relative;
        width: 100%;
        text-align: right;
    }

    .hero-desc {
        padding: 0 0 40px 0;
    }

    .button-cta {
        justify-content: center;
        gap: 10px;
    }

    .main-btn {
        padding: 0 18px;
    }

    #classes {
        flex-direction: column;
    }

    #classes .right-side h2 {
        text-align: center;
    }

    #classes .left-side {
        width: 100%;
        margin-bottom: 40px;
    }

    .swiper {
        width: 90%;
    }

    #booking {
        flex-direction: column;
    }

    footer .container {
        flex-direction: column;
    }

    #music-note h4 {
        font-size: 14px;
        line-height: 22px;
        font-weight: 600;
    }

    #music-note {
        padding: 326px 30px 60px;
        text-align: center;
		margin-top : 200px;
    }

    .music-note {
        top: -150px;
        right: 0;
        left: 0;
        margin-right: auto;
        margin-left: auto;
    }

	.class-item-img-wrapper{
		    align-items: center;
	}
    #faq {
        padding: 140px 20px 0;
    }

    #faq::before {
        background-image: none;
    }

    #faq::after {
        opacity: 30%;
        z-index: -1;
        right: -180px;
        top: 45%;
    }

    #booking .booking-vec-wrapper {
        width: 100%;
        margin-bottom: 30px;
    }

    .faq-question {
        font-weight: 600;
        font-size: 14px;
        line-height: 22px;
    }

    .faq-sec h2 {
        margin-bottom: 30px;
    }

    footer {
        padding: 25px 58px;
    }

    .footer-logo {
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .footer-menu {
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 10px;
    }
    footer .container {
        gap: 25px;
        align-items: self-start;
    }

    .teacher-img-wrapper {
        justify-content: center;
    }

}


/*About Page*/
#about-sec-1 {
    display: flex;
    align-items: center;
    padding: 80px 0;
    justify-content: space-between;
}

#about-sec-1 .left-side {
    max-width: 548px;
}

#about-sec-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#about-sec-2 .right-side {
    width: 50%;
}

#about-sec-2 .left-side {
    width: 40%;
}

@media (max-width: 768px) {
    #about-sec-1 {
        flex-direction: column-reverse;
        gap: 30px;
        padding: 30px 0 70px;
    }

    #about-sec-1 .left-side {
        padding: 0 15px;
    }

    #about-sec-2 {
        flex-direction: column;
        gap: 30px;
    }

    #about-sec-2 .right-side {
        width: 100%;
    }

    #about-sec-2 .left-side {
        width: 100%;
    }

}


/*Contact Page*/

.location-items {
    display: flex;
    gap: 25px;
    margin-bottom: 80px;
    margin-top: 80px;
}

.location-items .location-item {
    flex: 1;
}

.location-name {
    background: var(--bm-yellow);
    border-radius: 500px;
    padding: 35px 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin-bottom: 30px;
}

.location-address {
    text-align: center;
    margin-bottom: 30px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-info a {
    background: var(--bm-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 500px;
    padding: 20px 20px;
    color: white;
    flex-direction: column;
    font-weight: 500;
}

.location-info .mail-icon {
    height: 35px;
}

.location-info .phone-icon {
    height: 30px;
}

.location-map {
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .location-items {
        flex-direction: column;
    }

    .location-icon {
        height: 71px;
    }

    .location-name {
        padding: 24px 20px;
    }

    .location-items {
        gap: 50px;
        margin-top: 30px;
    }
}

/*Classes*/
#class-list.class-archive {
    margin-top: 80px;
}

/*Teacher*/
#teachers-single {
    display: flex;
    gap: 30px;
    margin-top: 80px;
    align-items: self-end;
}

#teachers-single .teacher-img-wrapper {
    width: 400px;
    max-width: 100%;
    height: 600px;
}

#teachers-single .teacher-info {
    flex: 1;
}

#teachers-single .teacher-img-wrapper img {
    width: 100%;
    height: 90%;
    object-fit: cover;
}

.teacher-info .teacher-content {
    margin-bottom: 30px;

}

.teacher-info .feature-list {
    margin-bottom: 30px;
}

.page-single-pattern {
    position: absolute;
    left: -190px;
    z-index: -1;
    opacity: 0.1;
}

@media (max-width: 992px) {
    #teachers-single {
        flex-direction: column-reverse;
        margin-top: 60px;
        align-items: center;
    }
    #teachers-single .teacher-img-wrapper {
        width: 320px;
        max-width: 95%;
        height: 466px;
    }
}

/*Class Single*/

#class-single {
    display: flex;
    gap: 120px;
    margin-bottom: 80px;
    margin-top: 80px;
    align-items: self-end;
}

#class-single .class-item-img-wrapper {
    width: 350px;
    max-width: 100%;
}

#class-single .class-info {
    flex: 1;
}

.class-info .teacher-content {
    margin-bottom: 30px;
}

.teacher-cta {
    display: flex;
    gap: 10px;
    justify-content: center;
}

@media (max-width: 992px) {
    #class-single {
        flex-direction: column-reverse;
        gap: 30px;
    }

    #class-single .class-item-img-wrapper {
        width: 100%;
        align-items: center;
    }

    .class-item-img {
        width: 320px;
        max-width: 100%;
    }

    #class-single {
        margin-top: 0px;
    }

    .page-single-pattern {
        display: none;
    }
}

/*Camp list*/
#camp-list {
    margin-top: 80px;
}

#camp-list .camp-item {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    border-top: 5px solid var(--bm-blue);
    border-bottom: 5px solid var(--bm-blue);
    border-left: 5px solid var(--bm-blue);
    padding: 30px;
    margin-bottom: 80px;
    background: white;
    border-top-left-radius: 500px;
    border-bottom-left-radius: 500px;
}

.camp-item::after {
    content: "";
    position: absolute;
    top: -5px;
    bottom: -5px;
    right: calc(-49.5vw + 50%);
    width: calc(50vw - 50%);
    border-top: 5px solid var(--bm-blue);
    border-bottom: 5px solid var(--bm-blue);
}

.camp-img-wrapper {
    flex: 1 0 500px;
    height: 500px;
    border-radius: 500px;
    overflow: hidden;
}

.camp-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.camp-item .main-btn {
    width: 100%;
}

.camp-item h4 {
    margin-bottom: 15px;
    margin-top: 30px;
}

.camp-feature {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    margin-top: 0;
}

.camp-feature li {
    position: relative;
    padding-left: 21px;
    margin-bottom: 14px;
    font-weight: 600;
}

.camp-feature li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 12px;
    height: 12px;
    background-color: var(--bm-yellow);
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 50px;
}

@media (max-width: 1200px) {
    #camp-list .camp-item {
        gap: 40px;
    }

    .camp-img-wrapper {
        flex: 1 0 300px;
        height: 300px;
    }
}

@media (max-width: 992px) {
    #camp-list .camp-item {
        flex-direction: column;
    }

    .camp-item::after {
        content: none;
    }

    #camp-list .camp-item {
        border: 5px solid var(--bm-blue);
        border-bottom-left-radius: 0;
        border-top-right-radius: 500px;
    }

    .camp-img-wrapper {
        flex: 1 0 300px;
        height: 300px;
        width: 300px;
        max-width: 100%;
    }

    #camp-list {
        margin-top: 30px;
    }
}

/*Blog*/
#blog-lists{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    row-gap: 60px;
}
.blog-item{
    padding: 15px;
    border: 5px solid var(--bm-blue);
    border-top-left-radius: 500px;
    border-top-right-radius: 500px;
}
.blog-item .blog-img-wrapper img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.blog-item .blog-img-wrapper{
    display: block;
    aspect-ratio: 1;
    border-radius: 500px;
    overflow: hidden;
    margin-bottom: 30px;
}
.blog-item-desc .main-btn{
    width: 100%;
    margin-top: 15px;
}

.blog-page-title {
    margin-top: 80px;
    text-align: center;
}
.blog-page-subtitle {
    max-width: 418px;
    text-align: center;
    margin: auto auto 60px auto;
}

.blog-pagination{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:10px;
}

.blog-pagination a,
.blog-pagination span{
    background: transparent;
    color: black;
    border: 3px solid var(--bm-blue);
    border-radius: 50px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-pagination .current{
    background: var(--bm-blue);
    color: #fff;
    border-color:var(--bm-blue);
}
@media (max-width: 992px) {
    #blog-lists{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    #blog-lists{
        grid-template-columns: repeat(1, 1fr);
    }
}

/*Single Blog*/
#single-post{
    margin-top: 60px;
}
.featured-section .featured-content ,.featured-section .featured-image{
    flex : 1;
}
.featured-section{
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
}
.featured-image img {
    border-radius: 18px;
}
#post-content p {
    margin-bottom: 30px;
}
.related-posts > h2{
    margin-bottom: 60px;
    text-align: center;
}
.related-posts{
    margin-top: 90px;
}
@media (max-width: 1200px) {
    .featured-section{flex-direction: column-reverse;}
}

#single-page{
	margin-top : 60px;
}