/* =========================================================
   SJ HERITAGE
   PREMIUM RESPONSIVE HEADER
   FULL CSS
   ========================================================= */


/* =========================================================
   GLOBAL HEADER RESET
   ========================================================= */

#site-header,
#site-header *,
#mobilePanel,
#mobilePanel *,
#menuOverlay {
    box-sizing: border-box;
}


/* =========================================================
   MAIN HEADER
   ========================================================= */

#site-header {
    position: sticky;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    background: rgba(255, 255, 255, 0.97);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(44, 39, 31, 0.08);

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================================
   HEADER CONTAINER
   ========================================================= */

#site-header .container {
    width: min(1200px, calc(100% - 40px));

    min-height: 82px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    gap: 30px;
}


/* =========================================================
   BRAND
   ========================================================= */

#site-header .brand {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;

    text-decoration: none;

    color: #26382f;
}


/* =========================================================
   CREST
   ========================================================= */

#site-header .crest {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #29483b;

    border: 2px solid #c6a15b;

    color: #ffffff;

    box-shadow:
        0 7px 18px rgba(41, 72, 59, 0.18);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


#site-header .brand:hover .crest {
    transform: rotate(-5deg);

    box-shadow:
        0 9px 24px rgba(41, 72, 59, 0.25);
}


#site-header .crest span {
    font-family: Georgia, serif;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================================
   BRAND TEXT
   ========================================================= */

#site-header .brand-text {
    display: flex;

    flex-direction: column;

    line-height: 1.1;
}


#site-header .brand-text .name {
    font-family: Georgia, serif;

    font-size: 18px;

    font-weight: 700;

    color: #24382f;

    letter-spacing: 0.3px;
}


#site-header .brand-text .tag {
    margin-top: 5px;

    font-size: 8px;

    font-weight: 700;

    color: #9a7a3f;

    text-transform: uppercase;

    letter-spacing: 2.2px;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

#site-header .primary-nav {
    margin-left: auto;
}


#site-header .primary-nav ul {
    margin: 0;

    padding: 0;

    list-style: none;

    display: flex;

    align-items: center;

    gap: 3px;
}


#site-header .primary-nav ul > li {
    position: relative;
}


/* =========================================================
   NORMAL NAV LINKS
   ========================================================= */

#site-header .primary-nav ul > li > a {
    position: relative;

    height: 44px;

    padding: 0 15px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #34433c;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;

    transition:
        color 0.25s ease,
        background 0.25s ease;
}


#site-header .primary-nav ul > li > a::after {
    content: "";

    position: absolute;

    left: 15px;
    right: 15px;

    bottom: 4px;

    height: 2px;

    background: #c6a15b;

    border-radius: 2px;

    transform: scaleX(0);

    transform-origin: center;

    transition:
        transform 0.25s ease;
}


#site-header .primary-nav ul > li > a:hover {
    color: #29483b;
}


#site-header .primary-nav ul > li > a:hover::after {
    transform: scaleX(1);
}


/* =========================================================
   PACKAGE DROPDOWN
   ========================================================= */

.voyageHdr-dropdown {
    position: relative;

    display: flex;

    align-items: center;
}


/* =========================================================
   PACKAGE BUTTON
   ========================================================= */

.voyageHdr-dropButton {
    position: relative;

    height: 44px;

    padding: 0 15px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    border: 0;

    outline: none;

    background: transparent;

    color: #34433c;

    font-family: inherit;

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;

    cursor: pointer;

    transition:
        color 0.25s ease;
}


.voyageHdr-dropButton::after {
    content: "";

    position: absolute;

    left: 15px;
    right: 15px;

    bottom: 4px;

    height: 2px;

    background: #c6a15b;

    border-radius: 2px;

    transform: scaleX(0);

    transition:
        transform 0.25s ease;
}


.voyageHdr-dropButton:hover {
    color: #29483b;
}


.voyageHdr-dropButton:hover::after {
    transform: scaleX(1);
}


/* =========================================================
   DROPDOWN ARROW
   ========================================================= */

.voyageHdr-arrow {
    display: inline-block;

    font-size: 17px;

    line-height: 1;

    transition:
        transform 0.3s ease;
}


.voyageHdr-dropdown:hover
.voyageHdr-arrow {
    transform: rotate(180deg);
}


/* =========================================================
   DROPDOWN BOX
   ========================================================= */

.voyageHdr-dropdownMenu {
    position: absolute;

    top: calc(100% + 15px);

    left: 50%;

    width: 275px;

    padding: 9px;

    background: rgba(255, 255, 255, 0.98);

    border: 1px solid rgba(41, 72, 59, 0.10);

    border-radius: 17px;

    box-shadow:
        0 18px 45px rgba(26, 42, 35, 0.15);

    opacity: 0;

    visibility: hidden;

    transform:
        translate(-50%, -10px)
        scale(0.97);

    transform-origin: top center;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}


/* =========================================================
   DROPDOWN TOP ARROW
   ========================================================= */

.voyageHdr-dropdownMenu::before {
    content: "";

    position: absolute;

    top: -6px;

    left: 50%;

    width: 11px;
    height: 11px;

    background: #ffffff;

    border-left:
        1px solid rgba(41, 72, 59, 0.10);

    border-top:
        1px solid rgba(41, 72, 59, 0.10);

    transform:
        translateX(-50%)
        rotate(45deg);
}


/* =========================================================
   SHOW DROPDOWN ON DESKTOP HOVER
   ========================================================= */

@media (min-width: 901px) {

    .voyageHdr-dropdown:hover
    .voyageHdr-dropdownMenu {

        opacity: 1;

        visibility: visible;

        transform:
            translate(-50%, 0)
            scale(1);
    }

}


/* =========================================================
   DROPDOWN ITEMS
   ========================================================= */

.voyageHdr-dropdownItem {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 11px;

    border-radius: 11px;

    text-decoration: none;

    color: #273931;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.voyageHdr-dropdownItem:hover {
    background: #f2f6f3;

    transform: translateX(4px);
}


/* =========================================================
   DROPDOWN NUMBER
   ========================================================= */

.voyageHdr-itemIcon {
    width: 37px;
    height: 37px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #edf2ef;

    color: #29483b;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.5px;
}


/* =========================================================
   DROPDOWN TEXT
   ========================================================= */

.voyageHdr-dropdownItem span:last-child {
    display: flex;

    flex-direction: column;
}


.voyageHdr-dropdownItem strong {
    font-size: 13px;

    font-weight: 700;

    color: #26382f;
}


.voyageHdr-dropdownItem small {
    margin-top: 3px;

    font-size: 10px;

    color: #7a877f;
}


/* =========================================================
   HEADER ACTIONS
   ========================================================= */

#site-header .header-actions {
    display: flex;

    align-items: center;

    gap: 8px;

    flex-shrink: 0;
}


/* =========================================================
   BUTTON BASE
   ========================================================= */

#site-header .header-actions .btn {
    min-height: 42px;

    padding: 0 15px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 24px;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


/* =========================================================
   CALL BUTTON
   ========================================================= */

#site-header .btn-ghost {
    color: #29483b;

    background: transparent;

    border: 1px solid rgba(41, 72, 59, 0.22);
}


#site-header .btn-ghost:hover {
    background: #f1f5f2;

    transform: translateY(-2px);
}


/* =========================================================
   WHATSAPP / BRASS BUTTON
   ========================================================= */

#site-header .btn-brass {
    color: #ffffff;

    background: #29483b;

    border: 1px solid #29483b;
}


#site-header .btn-brass:hover {
    background: #1e392f;

    box-shadow:
        0 9px 20px rgba(41, 72, 59, 0.22);

    transform: translateY(-2px);
}


/* =========================================================
   HAMBURGER
   ========================================================= */

#site-header .hamburger {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 0;

    border-radius: 11px;

    background: #29483b;

    cursor: pointer;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    flex-shrink: 0;
}


#site-header .hamburger span {
    display: block;

    width: 20px;
    height: 2px;

    background: #ffffff;

    border-radius: 3px;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* =========================================================
   HAMBURGER ACTIVE → X
   ========================================================= */

#site-header .hamburger.active
span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}


#site-header .hamburger.active
span:nth-child(2) {
    opacity: 0;
}


#site-header .hamburger.active
span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =========================================================
   MENU OVERLAY
   ========================================================= */

#menuOverlay {
    position: fixed;

    inset: 0;

    z-index: 9997;

    background:
        rgba(13, 28, 23, 0.45);

    backdrop-filter: blur(3px);

    -webkit-backdrop-filter: blur(3px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


#menuOverlay.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* =========================================================
   MOBILE PANEL
   LEFT → RIGHT
   ========================================================= */

#mobilePanel {
    position: fixed;

    top: 0;

    left: 0;

    width: min(340px, 88vw);

    height: 100vh;

    z-index: 9998;

    padding:
        105px
        25px
        30px;

    background: #ffffff;

    box-shadow:
        15px 0 45px rgba(20, 40, 32, 0.15);

    display: flex;

    flex-direction: column;

    gap: 5px;

    overflow-y: auto;

    /* CLOSED */

    transform:
        translateX(-100%);

    visibility: hidden;

    pointer-events: none;

    transition:
        transform 0.35s cubic-bezier(.4, 0, .2, 1),
        visibility 0.35s ease;
}


/* =========================================================
   MOBILE PANEL OPEN
   ========================================================= */

#mobilePanel.active {
    transform:
        translateX(0);

    visibility: visible;

    pointer-events: auto;
}


/* =========================================================
   MOBILE PANEL LINKS
   ========================================================= */

#mobilePanel > a:not(.btn) {
    position: relative;

    display: flex;

    align-items: center;

    min-height: 50px;

    padding:
        0 15px;

    color: #2b3d35;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    border-radius: 10px;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        padding-left 0.25s ease;
}


#mobilePanel > a:not(.btn):hover {
    color: #29483b;

    background: #f1f5f2;

    padding-left: 20px;
}


/* =========================================================
   MOBILE CALL BUTTON
   ========================================================= */

#mobilePanel .btn-brass {
    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    margin-top: 10px;

    padding:
        0 20px;

    border-radius: 25px;

    background: #29483b;

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


#mobilePanel .btn-brass:hover {
    background: #1e392f;

    transform: translateY(-2px);
}


/* =========================================================
   BODY LOCK
   ========================================================= */

body.menu-open {
    overflow: hidden;
}


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

@media (max-width: 1100px) {

    #site-header .container {
        width:
            calc(100% - 30px);

        gap: 18px;
    }


    #site-header .primary-nav ul > li > a,
    .voyageHdr-dropButton {

        padding-left: 9px;

        padding-right: 9px;

        font-size: 12px;
    }


    #site-header .header-actions .btn {

        padding-left: 11px;

        padding-right: 11px;

        font-size: 10px;
    }

}


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

@media (max-width: 900px) {

    /* HEADER */

    #site-header {
        position: sticky;

        top: 0;
    }


    #site-header .container {

        width:
            calc(100% - 28px);

        min-height: 72px;

        gap: 10px;
    }


    /* HIDE DESKTOP NAV */

    #site-header .primary-nav {
        display: none;
    }


    /* HIDE DESKTOP CTA BUTTONS */

    #site-header .header-actions
    .btn {
        display: none;
    }


    /* SHOW HAMBURGER */

    #site-header .hamburger {
        display: flex;
    }


    /* PUSH HAMBURGER RIGHT */

    #site-header .header-actions {
        margin-left: auto;
    }


    /* CREST */

    #site-header .crest {
        width: 41px;

        height: 41px;
    }


    /* BRAND NAME */

    #site-header .brand-text .name {
        font-size: 16px;
    }


    /* BRAND TAG */

    #site-header .brand-text .tag {
        font-size: 7px;

        letter-spacing: 1.8px;
    }


    /* MOBILE PANEL */

    #mobilePanel {
        width:
            min(340px, 88vw);
    }

}


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

@media (max-width: 480px) {

    #site-header .container {

        width:
            calc(100% - 22px);

        min-height: 68px;
    }


    #site-header .brand {
        gap: 9px;
    }


    #site-header .crest {

        width: 38px;

        height: 38px;
    }


    #site-header .crest span {

        font-size: 12px;
    }


    #site-header .brand-text .name {

        font-size: 14px;
    }


    #site-header .brand-text .tag {

        font-size: 6px;

        letter-spacing: 1.4px;
    }


    #site-header .hamburger {

        width: 41px;

        height: 41px;
    }


    #mobilePanel {

        width:
            min(320px, 90vw);

        padding-left: 20px;

        padding-right: 20px;
    }

}


/* =========================================================
   EXTRA SMALL DEVICES
   ========================================================= */

@media (max-width: 360px) {

    #site-header .brand-text .name {
        font-size: 13px;
    }


    #site-header .brand-text .tag {
        font-size: 5.5px;
    }


    #site-header .crest {
        width: 36px;

        height: 36px;
    }


    #site-header .hamburger {
        width: 39px;

        height: 39px;
    }

}


/* =========================================================
   MOBILE PACKAGE DROPDOWN
   ========================================================= */

.mobile-package-box {
    width: 100%;
}


/* PACKAGE BUTTON */

.mobile-package-button {
    width: 100%;

    min-height: 50px;

    padding: 0 15px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border: 0;

    outline: none;

    border-radius: 10px;

    background: transparent;

    color: #2b3d35;

    font-family: inherit;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    text-align: left;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}


.mobile-package-button:hover {
    background: #f1f5f2;

    color: #29483b;
}


/* ARROW */

.mobile-package-arrow {
    font-size: 19px;

    line-height: 1;

    transition:
        transform 0.3s ease;
}


/* ARROW ACTIVE */

.mobile-package-button.active
.mobile-package-arrow {
    transform: rotate(180deg);
}


/* =========================================================
   PACKAGE SUB MENU
   ========================================================= */

.mobile-package-menu {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    padding-left: 10px;
    padding-right: 5px;

    transition:
        max-height 0.35s ease,
        opacity 0.25s ease,
        padding 0.35s ease;
}


/* OPEN */

.mobile-package-menu.active {
    max-height: 400px;

    opacity: 1;

    padding-top: 5px;

    padding-bottom: 5px;
}


/* =========================================================
   PACKAGE ITEMS
   ========================================================= */

.mobile-package-menu > a {
    display: flex;

    align-items: center;

    gap: 11px;

    padding: 9px;

    margin-bottom: 3px;

    border-radius: 10px;

    text-decoration: none;

    color: #2b3d35;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.mobile-package-menu > a:hover {
    background: #f1f5f2;

    transform: translateX(4px);
}


/* =========================================================
   PACKAGE NUMBER
   ========================================================= */

.mobile-package-number {
    width: 34px;

    height: 34px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background: #edf2ef;

    color: #29483b;

    font-size: 9px;

    font-weight: 800;
}


/* =========================================================
   PACKAGE TEXT
   ========================================================= */

.mobile-package-info {
    display: flex;

    flex-direction: column;
}


.mobile-package-info strong {
    font-size: 12px;

    font-weight: 700;

    color: #26382f;
}


.mobile-package-info small {
    margin-top: 2px;

    font-size: 9px;

    color: #7a877f;
}


/* =========================================================
   MOBILE CALL BUTTON
   ========================================================= */

.mobile-call-button {
    margin-top: 10px !important;
}

/* =========================================================
   CUSTOMER TESTIMONIALS
   PREMIUM BLUE THEME
   ========================================================= */

/* =========================================================
   PREMIUM BLUE CUSTOMER TESTIMONIALS
   ========================================================= */

.blueReviewSection {
    position: relative;

    width: 100%;

    padding: 95px 20px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(51, 157, 225, 0.22),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(30, 105, 170, 0.25),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #061a31 0%,
            #082c4c 48%,
            #061b32 100%
        );
}


.blueReviewContainer {
    position: relative;

    z-index: 2;

    width: min(1050px, 100%);

    margin: auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.blueReviewHeader {
    max-width: 680px;

    margin: 0 auto 48px;

    text-align: center;
}


.blueReviewLabel {
    display: inline-flex;

    padding: 7px 16px;

    margin-bottom: 13px;

    border: 1px solid rgba(120, 210, 255, 0.2);

    border-radius: 30px;

    background: rgba(72, 172, 225, 0.10);

    color: #76ccff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;
}


.blueReviewHeader h2 {
    margin: 0;

    color: #ffffff;

    font-family: Georgia, serif;

    font-size: clamp(32px, 5vw, 46px);

    line-height: 1.15;
}


.blueReviewHeader p {
    margin: 15px auto 0;

    color: rgba(255,255,255,0.65);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   SLIDER
   ========================================================= */

.blueReviewSlider {
    position: relative;

    padding: 0 55px;

    overflow: hidden;
}


.blueReviewTrack {
    display: flex;

    transition:
        transform 0.65s cubic-bezier(.4,0,.2,1);
}


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

.blueReviewCard {
    position: relative;

    flex: 0 0 100%;

    min-height: 390px;

    padding: 45px 55px 42px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eef8ff
        );

    border: 1px solid rgba(255,255,255,0.8);

    box-shadow:
        0 25px 70px rgba(0,0,0,0.22);
}


/* =========================================================
   CUSTOMER PHOTO
   ========================================================= */

.blueReviewPhotoWrap {
    width: 88px;

    height: 88px;

    padding: 4px;

    margin-bottom: 16px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #1689d0,
            #75d2ff
        );

    box-shadow:
        0 10px 25px rgba(18,120,180,0.25);
}


.blueReviewPhotoWrap img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 50%;

    border: 3px solid #ffffff;
}


/* =========================================================
   CUSTOMER NAME
   ========================================================= */

.blueReviewCard h3 {
    margin: 0;

    color: #102f49;

    font-size: 20px;

    font-weight: 800;
}


/* =========================================================
   STAR RATING
   ========================================================= */

.blueReviewStars {
    margin-top: 7px;

    color: #f4b72d;

    font-size: 18px;

    letter-spacing: 3px;
}


/* =========================================================
   REVIEW
   ========================================================= */

.blueReviewText {
    max-width: 720px;

    margin: 22px auto 0;

    color: #52697a;

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================================
   TRIP LABEL
   ========================================================= */

.blueReviewPlace {
    margin-top: 18px;

    color: #1480bf;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================================
   ARROWS
   ========================================================= */

.blueReviewArrow {
    position: absolute;

    top: 50%;

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 5;

    border: 1px solid rgba(231, 9, 9, 0.25);

    border-radius: 50%;

    background: rgba(5, 80, 229, 0.628);

    backdrop-filter: blur(10px);

    color: #eff4ee;

    font-size: 18px;

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.blueReviewArrow:hover {
    background: #e14c07;

    transform:
        translateY(-50%)
        scale(1.08);
}


.blueReviewPrev {
    left: 0;
}


.blueReviewNext {
    right: 0;
}


/* =========================================================
   DOTS
   ========================================================= */

.blueReviewDots {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 7px;

    margin-top: 28px;
}


.blueReviewDots span {
    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: rgba(255,255,255,0.28);

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}


.blueReviewDots span.active {
    width: 28px;

    border-radius: 10px;

    background: #59c7ff;
}


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

@media (max-width: 768px) {

    .blueReviewSection {
        padding: 75px 15px;
    }


    .blueReviewHeader {
        margin-bottom: 38px;
    }


    .blueReviewSlider {
        padding: 0 45px;
    }


    .blueReviewCard {
        min-height: 380px;

        padding:
            40px 35px;
    }


    .blueReviewText {
        font-size: 14px;
    }


    .blueReviewArrow {
        width: 40px;

        height: 40px;

        font-size: 16px;
    }

}


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

@media (max-width: 520px) {

    .blueReviewSection {
        padding: 65px 10px;
    }


    .blueReviewHeader {
        margin-bottom: 30px;
    }


    .blueReviewHeader h2 {
        font-size: 29px;
    }


    .blueReviewHeader p {
        font-size: 12px;
    }


    .blueReviewSlider {
        padding: 0 3px;
    }


    .blueReviewCard {
        min-height: 390px;

        padding:
            35px 25px;
    }


    .blueReviewPhotoWrap {
        width: 78px;

        height: 78px;

        margin-bottom: 13px;
    }


    .blueReviewCard h3 {
        font-size: 18px;
    }


    .blueReviewStars {
        font-size: 16px;

        letter-spacing: 2px;
    }


    .blueReviewText {
        font-size: 13px;

        line-height: 1.8;

        margin-top: 18px;
    }


    .blueReviewArrow {
        width: 35px;

        height: 35px;

        font-size: 13px;
    }


    .blueReviewPrev {
        left: 3px;
    }


    .blueReviewNext {
        right: 3px;
    }

}