@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

/*==========================
    FADE IN UP ANIMATION
===========================*/

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/*==========================
    BUTTON HOVER ANIMATION
===========================*/

.contact-form button {
    width: 211px;
    height: 56px;
    background: #CBAA6A;
    color: #fff;
    border: none;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 30px;
}

.contact-form button::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
    border-radius: 50%;
}

.contact-form button:hover::before {
    transform: scale(1);
}

.contact-form button:hover {
    background: #b08b49;
    box-shadow: 0 8px 30px rgba(203, 170, 106, 0.5), inset 0 2px 20px rgba(255, 255, 255, 0.2);
}

.btn-animate {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 30px;
}

.btn-animate::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
    border-radius: 50%;
}

.btn-animate:hover::before {
    transform: scale(1);
}

.btn-animate:hover {
    background: #b08b49 !important;
    box-shadow: 0 8px 30px rgba(203, 170, 106, 0.5), inset 0 2px 20px rgba(255, 255, 255, 0.2) !important;
}

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

body {
    font-family: 'Lora', serif;
}

section:last-child {
    margin-bottom: 0;
}





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

.blog-feature {
    padding: 50px 20px;
}

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

.blog-feature-wrapper {

    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    /* align-items: center; */

    gap: 60px;
}

.blog-feature-image {

    width: 100%;
}

.blog-feature-image img {

    width: 100%;

    display: block;

    border-radius: 10px;

    object-fit: cover;
}

.blog-feature-content {

    width: 100%;
}

.blog-date {

    display: inline-block;

    font-size: 12px;
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #D0C09E;
    border: 1px solid var(--Primary-Light, #EDE9E1);
    background: var(--Primary-BG, #F7F4EF);


    padding: 8px 14px;

    margin-bottom: 24px;
}

.blog-feature-content h2 {
    max-width: 500px;
    font-size: 32px;
    line-height: 100%;
    color: #18171C;
    margin-bottom: 25px;
    font-weight: 400;
    font-family: 'Lora', sans-serif;
}

.blog-feature-content p {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 16px;
    line-height: 29px;
    color: #18171C;
    margin-bottom: 18px;
    max-width: 485px;
}

@media (max-width:1200px) {

    .blog-feature-wrapper {

        grid-template-columns: 1fr 1fr;

        gap: 45px;
    }

    .blog-feature-content h2 {

        font-size: 30px;
        margin-bottom: 10px;
    }

    .blog-feature-content p {

        font-size: 16px;
    }

}

@media (max-width:991px) {

    .blog-feature {

        padding: 30px 20px;
    }

    .blog-feature-wrapper {

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .blog-feature-image {

        max-width: 700px;

        width: 100%;

        margin: auto;
    }

    .blog-feature-content {

        max-width: 720px;

        margin: auto;

        text-align: center;
    }

    .blog-date {

        margin-bottom: 20px;
    }

    .blog-feature-content h2 {
        margin: 0 auto 10px;
        font-size: 34px;
    }

}

@media (max-width:767px) {

    .container {

        padding: 0 15px;
    }

    .blog-feature {

        padding: 35px 0;
    }

    .blog-feature-wrapper {

        gap: 30px;
    }

    .blog-feature-image img {

        border-radius: 8px;
    }

    .blog-feature-content {

        text-align: center;
    }

    .blog-feature-content h2 {

        font-size: 22px;

        line-height: 1.3;

        margin-bottom: 18px;
    }

    .blog-feature-content p {

        font-size: 14px;

        line-height: 1.8;

        margin-bottom: 16px;
    }

    .blog-date {

        font-size: 12px;

        padding: 7px 12px;
    }

}


/*==========================
    GUIDE SECTION
===========================*/

.guide-section {
    padding: 60px 0;
    background: #fff;
}

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

.guide-wrapper {
    padding: 0 20px;
    display: grid;
    grid-template-columns: 351px 1fr;
    gap: 60px;
    align-items: start;
}


/*==========================
      STICKY SIDEBAR
===========================*/

.guide-sidebar {
    width: 351px;
    height: 1077px;
    position: sticky;
    top: 30px;
    background: #F5F5F5;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.guide-sidebar-inner {
    height: 100%;
    overflow-y: auto;
    padding: 35px 30px;
}

.guide-sidebar-inner::-webkit-scrollbar {
    width: 5px;
}

.guide-sidebar-inner::-webkit-scrollbar-thumb {
    background: #CFC7BD;
    border-radius: 20px;
}

.sidebar-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 35px;
    color: #18171C;
    font-family: 'Lora', serif;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.sidebar-menu li:last-child {
    border: none;
}

.sidebar-menu li a {
    display: block;
    text-decoration: none;
    color: #575757;
    padding: 18px 0;
    line-height: 1.6;
    font-size: 16px;
    transition: .35s;
    font-family: 'Bricolage Grotesque', serif;
}

.sidebar-menu li.active a {
    color: #404093;
    font-weight: 600;
    padding-left: 12px;
    /* border-left: 3px solid #C57921; */
}

.sidebar-menu li a:hover {
    color: #404093;
}


/*==========================
      RIGHT CONTENT
===========================*/

.guide-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}


/*==========================
        INTRO
===========================*/

.guide-intro h2 {
    font-size: 24px;
    line-height: 100%;
    margin-bottom: 10px;
    color: #18171C;
    font-family: 'Lora', serif;
    font-weight: 400;
}

.guide-intro p {
    font-size: 16px;
    font-weight: 400;
    line-height: 29px;
    color: #000000;
    font-family: 'Bricolage Grotesque', serif;
}


/*==========================
      IMAGE + CONTENT
===========================*/

.guide-item {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 45px;
    /* align-items: center; */
}

.guide-image {
    width: 100%;
}

.guide-image img {
    width: 100%;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.guide-text h3 {
    font-size: 24px;
    line-height: 100%;
    margin-bottom: 10px;
    font-weight: 400;
    color: #18171C;
    font-family: 'Lora', serif;
}

.guide-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 29px;
    color: #000000;
    font-family: 'Bricolage Grotesque', serif;
}


/*==========================
       TEXT ONLY
===========================*/

.guide-full-text {
    width: 100%;
}

.guide-full-text h3 {
    font-size: 24px;
    line-height: 100%;
    margin-bottom: 10px;
    color: #18171C;
    font-family: 'Lora', serif;
    font-weight: 400;
}

.guide-full-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 29px;
    color: #000000;
    font-family: 'Bricolage Grotesque', serif;
}


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

@media(max-width:1200px) {

    .guide-wrapper {
        grid-template-columns: 320px 1fr;
        gap: 45px;
    }

    .guide-sidebar {
        width: 320px;
    }

    .guide-item {
        grid-template-columns: 360px 1fr;
        gap: 35px;
    }

    .guide-intro h2 {
        font-size: 40px;
    }

    .guide-text h3,
    .guide-full-text h3 {
        font-size: 22px;
    }

}


/*==========================
        1024
===========================*/

@media(max-width:1024px) {

    .guide-wrapper {
        grid-template-columns: 280px 1fr;
        gap: 30px;
    }

    .guide-sidebar {
        width: 280px;
    }

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

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

    .sidebar-menu li a {
        font-size: 14px;
    }

    .guide-item {
        grid-template-columns: 300px 1fr;
        gap: 25px;
    }

    .guide-content {
        gap: 40px;
    }

    .guide-intro h2 {
        font-size: 22px;
    }

}


/*==========================
        TABLET
===========================*/

@media(max-width:991px) {

    .guide-wrapper {
        grid-template-columns: 240px 1fr;
        gap: 25px;
    }

    .guide-sidebar {
        width: 240px;
        height: 820px;
    }

    .sidebar-title {
        font-size: 22px;
    }

    .sidebar-menu li a {
        font-size: 14px;
    }

    .guide-item {
        grid-template-columns: 1fr;
    }

    .guide-text {
        order: 1;
    }

    .guide-image {
        order: 2;
        max-width: 550px;
    }

    .guide-intro h2 {
        font-size: 20px;
    }

    .guide-text h3,
    .guide-full-text h3 {
        font-size: 20px;
    }

    .guide-intro p {
        font-size: 13px;
        line-height: 22px;
    }

}


/*==========================
        MOBILE
===========================*/

@media(max-width:767px) {

    .container {
        padding: 0 15px;
    }

    .guide-wrapper {
        grid-template-columns: 150px 1fr;
        gap: 15px;
    }

    .guide-sidebar {
        width: 150px;
        height: 620px;
        top: 15px;
    }

    .guide-sidebar-inner {
        padding: 15px;
    }

    .sidebar-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .sidebar-menu li a {
        font-size: 11px;
        padding: 10px 0;
    }

    .guide-item {
        grid-template-columns: 1fr;
    }

    .guide-text {
        order: 1;
    }

    .guide-image {
        order: 2;
        max-width: 100%;
    }

    .guide-content {
        gap: 40px;
    }

    .guide-intro h2 {
        font-size: 18px;
    }

    .guide-text h3,
    .guide-full-text h3 {
        font-size: 18px;
    }

    .guide-intro p,
    .guide-text p,
    .guide-full-text p {
        font-size: 12px;
        line-height: 1.6;
    }

}


/*==========================
    SMOOTH SCROLL
===========================*/

html {
    scroll-behavior: smooth;
}

.section {
    scroll-margin-top: 120px;
}


@media(max-width: 992px) {
    .guide-sidebar {
        display: none;
    }

    .guide-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    article {
        padding: 0 !important;
    }

    .single .guide-wrapper {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}




/* =========================================================
   =========================================================
   AUTHOR CARD
   =========================================================
   ========================================================= */

.author-wrapper {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}



.author-card {
    width: 927px !important;
    max-width: 927px !important;
    /* height: 272px !important; */

    margin: 0px auto 0 !important;
    padding: 45px 0 0 !important;

    background: #F5F5F5;

    border: 1px solid #E6DED3;
    border-radius: 4px;

    box-sizing: border-box;

    overflow: hidden;

    display: flex !important;
    flex-direction: column !important;
}


.author-main {
    width: 100% !important;

    height: 217px !important;
    min-height: 217px !important;

    padding: 18px !important;

    margin: 0 !important;

    box-sizing: border-box;

    display: flex !important;
    flex-direction: row !important;

    align-items: center !important;
}



.author-image {
    width: 96px !important;
    min-width: 96px !important;
    max-width: 96px !important;

    height: 96px !important;
    min-height: 96px !important;
    max-height: 96px !important;

    flex: 0 0 96px !important;

    margin: 0 24px 0 0 !important;
    padding: 0 !important;

    overflow: hidden;

    border: 1px solid #E6DED3;
    border-radius: 4px;

    background: #FFFFFF;

    box-sizing: border-box;
}


.author-image img {
    width: 100% !important;
    height: 100% !important;

    max-width: none !important;

    display: block !important;

    object-fit: cover;

    border-radius: 3px;
}




.author-content {
    width: auto !important;

    max-width: none !important;

    min-width: 0 !important;

    flex: 1 1 auto !important;

    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box;
}



.author-content h3 {
    margin: 0 0 4px 0;
    padding: 0 !important;
    font-family: 'Lora', serif;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 400;
    color: #000000;
}



.author-content>span {
    display: block;
    margin: 0 0 13px 0;
    padding: 0 !important;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 16px;
    line-height: 29px;
    font-weight: 400;
    color: #404093;
}





.author-content p {
    margin: 0;
    padding: 0;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px;
    line-height: 29px;
    font-weight: 400;
    color: #000000;
}


.author-content p a {
    color: #000000;

    text-decoration: underline;
}




.author-social {
    width: 100% !important;

    height: 54px !important;
    min-height: 54px !important;
    max-height: 54px !important;

    margin: 0 !important;
    padding: 0 18px 0 134px !important;

    box-sizing: border-box;

    background: #E9E9E9;

    border: 0 !important;

    display: flex !important;
    flex-direction: row !important;

    align-items: center !important;

    gap: 12px;
}




.author-social span {
    display: block;
    margin: 0 3px 0 0;
    padding: 0;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
    color: #000000;
    white-space: nowrap;
}



.author-social a {
    width: 16px;
    min-width: 16px;
    height: 16px;
    min-height: 16px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #555555;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    transition: color 0.2s ease;
}


.author-social a:hover {
    color: #222222;

    background: transparent;

    border: 0;
}



@media (max-width: 1200px) {

    .author-card {
        width: 90% !important;
        max-width: 927px !important;
    }

}


@media (max-width: 1024px) {

    .author-card {
        width: 95% !important;
        max-width: 927px !important;
    }

    .author-content p {

        font-size: 14px;
        line-height: 19px;
    }

    .author-content>span {
        margin: 0 0 11px 0;
        font-size: 16px;
        line-height: 18px;
    }

}


@media (max-width: 991px) {

    .author-card {
        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;

        margin: 40px auto 0 !important;

        display: flex !important;
        flex-direction: column !important;
    }


    /* IMAGE TOP */
    .author-main {
        width: 100% !important;

        height: auto !important;
        min-height: 0 !important;

        padding: 30px 25px !important;

        display: flex !important;
        flex-direction: column !important;

        align-items: center !important;

        text-align: center !important;
    }


    .author-image {
        width: 125px !important;
        min-width: 125px !important;
        max-width: 125px !important;

        height: 125px !important;
        min-height: 125px !important;
        max-height: 125px !important;

        flex: 0 0 125px !important;

        margin: 0 0 20px 0 !important;
    }


    /* CONTENT BELOW IMAGE */

    .author-content {
        width: 100% !important;

        flex: none !important;
    }


    .author-content h3 {
        font-size: 22px !important;
    }


    .author-content>span {
        font-size: 14px !important;

        margin-bottom: 15px !important;
    }


    .author-content p {
        font-size: 13px !important;

        line-height: 22px !important;
    }


    /* FOLLOW */

    .author-social {
        width: 100% !important;

        height: 54px !important;
        min-height: 54px !important;

        max-height: 54px !important;

        padding: 0 !important;

        justify-content: center !important;
    }

}



@media (max-width: 767px) {

    .author-wrapper {
        width: 100% !important;

        padding: 0 15px !important;

        box-sizing: border-box;
    }


    .author-card {
        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;

        margin-top: 30px !important;
    }


    .author-main {
        width: 100% !important;

        padding: 22px 18px !important;

        gap: 20px;
    }


    .author-image {
        width: 120px !important;
        min-width: 120px !important;
        max-width: 120px !important;

        height: 120px !important;
        min-height: 120px !important;
        max-height: 120px !important;

        flex: 0 0 120px !important;

        margin: 0 0 20px 0 !important;
    }


    .author-content {
        width: 100% !important;
    }


    .author-content h3 {
        font-size: 20px !important;

        line-height: 1.25 !important;
    }


    .author-content>span {
        font-size: 14px !important;

        line-height: 1.5 !important;

        margin-bottom: 13px !important;
    }


    .author-content p {
        font-size: 13px !important;

        line-height: 21px !important;
    }


    .author-social {
        height: 50px !important;
        min-height: 50px !important;
        max-height: 50px !important;

        padding: 0 !important;

        gap: 10px !important;

        justify-content: center !important;
    }


    .author-social a {
        width: 18px !important;
        min-width: 18px !important;

        height: 18px !important;

        font-size: 11px !important;
    }

}



@media (max-width: 576px) {

    .author-wrapper {
        padding: 0 12px !important;
    }


    .author-main {
        padding: 20px 15px !important;
    }


    .author-image {
        width: 105px !important;
        min-width: 105px !important;
        max-width: 105px !important;

        height: 105px !important;
        min-height: 105px !important;
        max-height: 105px !important;

        flex-basis: 105px !important;
    }


    .author-content h3 {
        font-size: 18px !important;
    }


    .author-content>span {
        font-size: 13px !important;
    }


    .author-content p {
        font-size: 12px !important;

        line-height: 20px !important;
    }


    .author-social {
        height: 48px !important;
        min-height: 48px !important;
        max-height: 48px !important;

        gap: 9px !important;
    }


    .author-social a {
        width: 17px !important;
        min-width: 17px !important;

        height: 17px !important;

        font-size: 10px !important;
    }

}




@media (max-width: 400px) {

    .author-main {
        padding: 18px 12px !important;
    }


    .author-image {
        width: 95px !important;
        min-width: 95px !important;
        max-width: 95px !important;

        height: 95px !important;
        min-height: 95px !important;
        max-height: 95px !important;

        flex-basis: 95px !important;
    }


    .author-content h3 {
        font-size: 17px !important;
    }


    .author-content>span {
        font-size: 12px !important;
    }


    .author-content p {
        font-size: 11.5px !important;

        line-height: 19px !important;
    }

}


.blog-collection-section {
    width: 100%;
    max-width: 1920px;

    margin: 0 auto;

    padding: 45px 20px;

    background: #F5F5F5;

    overflow: hidden;

    box-sizing: border-box;
}


.blog-collection-container {
    width: 100%;
    max-width: 1440px;

    margin: 0 auto;

    box-sizing: border-box;
}




.blog-heading {
    text-align: center;

    margin-bottom: 45px;
}


.blog-heading span {
    display: block;

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 10%;

    color: #404093;

    margin-bottom: 15px;

    font-family: 'Bricolage Grotesque', sans-serif;
}


.blog-title {
    max-width: 600px;

    margin: 0 auto 18px;

    font-size: 42px;

    line-height: 100%;

    color: #18171C;

    font-weight: 400;

    font-family: 'Lora', serif;
}


.blog-subtitle {
    max-width: 740px;

    margin: 0 auto;

    font-size: 14px;

    line-height: 24px;

    color: #18171C;

    font-family: 'Bricolage Grotesque', sans-serif;
}


.blogSwiper {
    width: 100%;

    overflow: hidden;

    padding-bottom: 80px;
}


.blogSwiper .swiper-wrapper {
    align-items: stretch;
}


.blogSwiper .swiper-slide {
    display: flex;

    justify-content: center;
}


.blog-card {
    width: 100%;

    max-width: 447px;

    height: 660px;

    position: relative;

    perspective: 1500px;
}


.blog-front,
.blog-back {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    backface-visibility: hidden;

    border-radius: 0;

    overflow: hidden;

    transition: transform .8s ease;
}



.blog-front img {
    width: 100%;

    height: 560px;

    object-fit: cover;

    display: block;

    transition:
        transform .7s ease,
        filter .5s ease;
}


.blog-front p {
    font-size: 26px;

    color: #18171C;

    margin-top: 35px;

    text-align: left;

    font-family: 'Bricolage Grotesque', sans-serif;
}



.blog-back {
    background: #F7F2EA;

    transform: rotateY(180deg);

    padding: 46px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}


.blog-back-content {
    display: flex;

    flex-direction: column;
}


.blog-back-text {
    font-size: 18px;

    line-height: 2;

    color: #333;

    margin-bottom: 60px;

    font-family: 'Lora', serif;
}


.blog-back a {
    width: max-content;

    padding: 18px 36px;

    background: #CBAA6A;

    color: #fff;

    text-decoration: none;

    font-size: 16px;

    font-family: 'Bricolage Grotesque', sans-serif;

    transition:
        background .35s,
        transform .35s;
}


.blog-back a:hover {
    background: #B89449;

    transform: translateY(-3px);
}


.blog-name {
    font-size: 30px;

    color: #222;

    font-family: 'Lora', serif;
}




.blog-card:hover .blog-front {
    transform: rotateY(-180deg);
}


.blog-card:hover .blog-back {
    transform: rotateY(0deg);
}


.blog-card:hover .blog-front img {
    transform: scale(1.05);

    filter: brightness(.9);
}



.blogSwiper .swiper-button-next,
.blogSwiper .swiper-button-prev {
    width: 48px;

    height: 48px;

    border-radius: 50%;

    color: #CBAA6A;

    transition: .35s;
}


.blogSwiper .swiper-button-next:after,
.blogSwiper .swiper-button-prev:after {
    font-size: 35px;

    font-weight: 700;
}


.blogSwiper .swiper-button-prev {
    left: calc(50% - 65px);

    top: auto;

    bottom: 0;
}


.blogSwiper .swiper-button-next {
    right: calc(50% - 65px);

    top: auto;

    bottom: 0;
}




@media (max-width: 1024px) {

    .blog-collection-section {
        padding: 60px 20px;
    }


    .blog-heading {
        margin-bottom: 50px;
    }


    .blog-title {
        font-size: 44px;
    }


    .blog-subtitle {
        max-width: 650px;

        font-size: 14px;
    }


    .blog-card {
        max-width: 340px;

        height: 550px;
    }


    .blog-front img {
        height: 455px;
    }


    .blog-front p {
        font-size: 20px;

        margin-top: 18px;
    }


    .blog-back {
        padding: 32px;
    }


    .blog-back-text {
        font-size: 16px;

        line-height: 1.9;

        margin-bottom: 40px;
    }


    .blog-back a {
        padding: 16px 30px;

        font-size: 15px;
    }


    .blog-name {
        font-size: 24px;
    }

}




@media (max-width: 991px) {

    .blog-collection-section {
        padding: 60px 20px;
    }


    .blog-heading {
        margin-bottom: 40px;
    }


    .blog-title {
        font-size: 38px;
    }


    .blog-subtitle {
        font-size: 14px;

        max-width: 600px;
    }


    .blogSwiper {
        padding-bottom: 60px;
    }


    .blog-card {
        max-width: 100%;

        height: 500px;
    }


    .blog-front img {
        height: 430px;
    }


    .blog-front p {
        font-size: 16px;

        margin-top: 16px;
    }


    .blog-back {
        padding: 28px;
    }


    .blog-back-text {
        font-size: 15px;

        line-height: 1.8;

        margin-bottom: 35px;
    }


    .blog-back a {
        padding: 15px 28px;

        font-size: 14px;
    }


    .blog-name {
        font-size: 22px;
    }

}



@media (max-width: 767px) {

    .blog-collection-section {
        padding: 60px 15px;
    }


    .blog-heading {
        margin-bottom: 35px;
    }


    .blog-title {
        font-size: 32px;
    }


    .blog-subtitle {
        font-size: 13px;

        line-height: 1.7;
    }


    .blog-card {
        height: 430px;
    }


    .blog-front img {
        height: 360px;
    }


    .blog-front p {
        font-size: 20px;
    }


    .blog-back {
        padding: 22px;
    }


    .blog-back-text {
        font-size: 14px;

        margin-bottom: 25px;
    }


    .blog-back a {
        padding: 14px 24px;

        font-size: 13px;
    }


    .blog-name {
        font-size: 20px;
    }

}



@media (max-width: 576px) {

    .blog-collection-section {
        padding: 10px 15px;
    }


    .blog-title {
        font-size: 22px;
    }


    .blog-subtitle {
        font-size: 12px;
    }


    .blog-card {
        height: 360px;
    }


    .blog-front img {
        height: 295px;
    }


    .blog-front p {
        font-size: 13px;
    }


    .blog-back {
        padding: 18px;
    }


    .blog-back-text {
        font-size: 12px;

        line-height: 17px;
    }


    .blog-back a {
        padding: 12px 20px;

        font-size: 12px;
    }


    .blog-name {
        font-size: 18px;
    }


    .blogSwiper .swiper-button-next,
    .blogSwiper .swiper-button-prev {
        display: block;
    }

}