/* ==========================COMMON CSS START HERE========================== */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* ==========font family========== */
@font-face {
    font-family: 'Open Sans Condensed';
    src: url('../fonts/OpenSansCondensed-Bold.woff2') format('woff2'),
        url('../fonts/OpenSansCondensed-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans Condensed';
    src: url('../fonts/OpenSansCondensed-Light.woff2') format('woff2'),
        url('../fonts/OpenSansCondensed-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans Condensed';
    src: url('../fonts/OpenSansCondensed-LightItalic.woff2') format('woff2'),
        url('../fonts/OpenSansCondensed-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}



:root {
    --lobster-font: "Lobster";
    --playFair: "Playfair Display", serif;
    --blue: #174cc8;
    --white: #fff;
    --OpenSans-font: "Open Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-size: 16px;
    line-height: 20px;
    color: #424242;
    font-weight: 300;
    font-family: "Open Sans", sans-serif;
}

p {
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

/* common_font_sizes */
/* h1 {
    font-size: 80px;
    font-weight: 600;
    line-height: 80px;
} */

h2 {
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    font-family: var(--lobster-font);
    color: var(--blue);
}

h3 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 300;
    color: #424242;
}

p {
    padding: 0;
    margin: 0;
}

a,
a:hover {
    text-decoration: none !important;
    color: inherit;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

/* ========cust-classes======== */
.lobster-font {
    font-family: "Lobster";
    font-weight: 400;
    font-style: normal;
}

.playFair-font {
    font-family: "Playfair Display", serif;
}

.OpenSans-font {
    font-family: "Open Sans", sans-serif;

}

/* ==========================COMMON CSS END HERE========================== */
/* ==============homepage start============== */
header.is-sticky {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    position: fixed;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    transition: all ease-in-out 500ms;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

header {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.20) 0px 1px 10px;
    padding: 20px 0px;
    position: fixed;
    z-index: 99;
    width: 100%;
}

header .header-logo {
    width: 246px;
    height: auto;
    display: block;
    overflow: hidden;
}

header .header-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header .menu-links ul {
    gap: 28px;
}

header .menu-links ul li a {
    font-size: 23px;
    line-height: 28px;
    font-weight: 400;
    text-shadow: 1px 3px 2px #424242;
    font-family: var(--playFair);
    color: #fff;
    text-transform: uppercase;
    transition: all ease-in-out 300ms;
}

header .menu-links ul li a.active {
    color: var(--blue);
}

/* header .menu-links ul li a:hover {
    color: var(--blue);
} */

header .menu-links ul li {
    position: relative;
}

header .menu-links ul li::before {
    position: absolute;
    content: "";
    width: 0px;
    height: 3px;
    background: #2d5c88;
    left: 0;
    bottom: -5px;
    transition: all ease-in-out 500ms;
}

header .menu-links ul li:hover::before {
    width: 100%;
}

header .header-logo a {
    color: #a17ff0;
    font-weight: 700;
    font-size: 50px;
}

header .menu-links .join-btn {
    background: #a17ff0;
    color: #ffff !important;
    padding: 10px 35px;
    display: inline-block;
}


/* =======================MOBILE MENU START======================= */
.mobile-nav {
    width: 100%;
    height: 134px;
    position: fixed;
    /* z-index: 1000; */
    display: none;
}

.mobile-nav .trigger {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translate(0, -50%);
    cursor: pointer;
    display: inline-block;
    width: 52px;
    height: 43px;
    /* background: #fff; */
    padding: 7px 7px;
}

.mobile-nav .trigger span {
    position: relative;
    width: 100%;
    height: 6px;
    transform: translateY(12px);
    background-color: #000;
    display: block;
    border-radius: 9px;
}

.mobile-nav .trigger span::before,
.mobile-nav .trigger span::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 6px;
    background-color: #000;
    display: block;
    border-radius: 9px;
}

.mobile-nav .trigger span::after {
    transform: translateY(12px);
}

.mobile-nav .trigger span::before {
    transform: translateY(-12px);
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    max-width: 90%;
    height: 100%;
    color: #fff;
    z-index: 9999;
    transition: transform 0.5s;
    transform: translateX(100%);
    overflow-y: auto;
    padding: 32px;
    overflow-x: hidden;
    background: #fff;
}

.sidebar .logo {
    width: 200px;
    height: auto;
    overflow: hidden;
    display: block;
}

.sidebar .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .sidebar .menu li a {
    font-size: 18px;
    color: #000;
    margin-bottom: 20px;
    display: block;
} */

.sidebar.show {
    transform: translateX(0);
    box-shadow: -10px 0px 35px rgba(124, 130, 141, 0.3);
}

.nav .trigger {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translate(0, -50%);
    cursor: pointer;
    display: inline-block;
    width: 48px;
    height: 30px;
}

.sidebar .menu li a {
    font-size: 18px;
    color: #000;
    margin-bottom: 20px;
    display: block;
    border-bottom: 1px solid #0000003d;
    padding: 10px 0px;
}

.sidebar .menu li {
    transform: translateX(150px);
    transition: all ease-in-out 1s;
}

.sidebar .menu li .contact-btn {
    background: #a17ff0;
    padding: 12px 30px;
    color: #fff !important;
    width: max-content;
    display: inline-block;
}

.sidebar.show li {
    transform: translateX(0);
}

.sidebar .menu li:nth-of-type(2) {
    transition: all ease-in-out 1.2s;
}

.sidebar .menu li:nth-of-type(3) {
    transition: all ease-in-out 1.3s;
}

.sidebar .menu li:nth-of-type(4) {
    transition: all ease-in-out 1.4s;
}

.sidebar .menu li:nth-of-type(5) {
    transition: all ease-in-out 1.5s;
}

.sidebar .menu li:nth-of-type(6) {
    transition: all ease-in-out 1.6s;
}

.sidebar .logo a {
    color: #a17ff0;
    font-weight: 700;
    font-size: 50px;
}

.sidebar .logo {
    transform: translateX(150px);
    margin-bottom: 60px;
}

.sidebar.show .logo {
    transform: translateX(0);
    transition: all ease-in-out 1s;
}

.trigger.active span {
    background-color: transparent;
}

.trigger span:before {
    animation: downAndTurnReverse 0.5s linear both;
}

.trigger.active span:before {
    animation: downAndTurn 0.5s linear both;
}

.trigger span:after {
    animation: upAndTurnReverse 0.5s linear both;
}

.trigger.active span:after {
    animation: upAndTurn 0.5s linear both;
}

@keyframes downAndTurn {
    0% {
        transform: translateY(-12px) rotate(0deg);
    }

    50% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(0px) rotate(45deg);
    }
}

@keyframes downAndTurnReverse {
    0% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(-12px) rotate(0deg);
    }
}

@keyframes upAndTurn {
    0% {
        transform: translateY(12px) rotate(0deg);
    }

    50% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(0px) rotate(-45deg);
    }
}

@keyframes upAndTurnReverse {
    0% {
        transform: translateY(0px) rotate(-45deg);
    }

    50% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(12px) rotate(0deg);
    }
}

/* =======================MOBILE MENU END======================= */

/* =======================home banner sec start=======================  */
.home-banner {
    height: 95vh;
    overflow: hidden;
    width: 100%;
    margin-bottom: 80px;
}

.home-banner .owl-dots {
    position: absolute;
    /* left: 50%; */
    bottom: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0px 5px;
}

.home-banner .slider-img {
    width: 100%;
    height: 890px;
    display: block;
    overflow: hidden;
}

.home-banner .slider-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-banner .owl-dots .owl-dot.active {
    background: #fff !important;
}

.home-banner .owl-dots button.owl-dot {
    /* background: #fff !important; */
    border: 3px solid #fff !important;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.home-banner .scroll-down .down {
    width: 34px;
    height: 170px;
    display: block;
    color: #fff;
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    bottom: -100px;
    writing-mode: vertical-rl;
    z-index: 9;
}

.down .text {
    position: relative;
    animation-name: example;
    animation-duration: 3s;
    animation-fill-mode: backwards;
    animation-iteration-count: infinite;
}

.down .text img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@keyframes example {
    from {
        top: 0px;
    }

    to {
        top: 65px;
    }
}

/* 
@keyframes top_bottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
} */

/* =======================home banner sec end=======================  */

.welcome-sec .welcome-img {
    width: 100%;
    height: 310px;
    overflow: hidden;
    display: block;
}

.welcome-sec .row {
    --bs-gutter-x: 5rem;
}

.welcome-sec .welcome-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-sec .content {
    text-align: center;
    padding: 30px 0px;
}

.welcome-sec .content P {
    color: #424242;
    /* line-height: 25px; */
}

.welcome-sec .image-overlay {
    background: rgba(255, 255, 255, 0.6);
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scale(0);
    transition: all ease-in-out 500ms;
}

.welcome-sec a:hover .image-overlay {
    transform: scale(1);
}

.welcome-sec .image-overlay .share-icon {
    width: 60px;
    height: 60px;
    background: var(--blue);
    padding: 20px;
    border-radius: 50%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.welcome-sec .content h2 {
    padding-bottom: 20px;
}

/* ===================GALLERY SEC START=================== */
.home-gallery {
    margin: 70px 0px 50px;
    padding: 88px 0px 55px;
    box-shadow: 0px 0px 1px;
    background: #fff;
}

.home-gallery .gallery-title {
    padding-bottom: 70px;
}

.home-gallery .gallery-bottom .gallery-items {
    width: 100%;
    height: 320px;
    display: block;
    overflow: hidden;
}

.home-gallery .gallery-bottom .gallery-items:hover img {
    transform: scale(1.1);
}

.home-gallery .gallery-bottom .gallery-items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-in-out 300ms;
}

.home-gallery .gallery-bottom .view-btn a {
    padding: 15px 35px;
    /* background: #fff; */
    border: 1px solid #00000030;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    display: inline-block;
    color: #808080;
    margin-top: 60px;
    transition: all ease-in-out 500ms;
}

.home-gallery .gallery-bottom .view-btn a:hover {
    background: var(--blue);
    color: var(--white);
}

.gallery-page .gallery-right label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #444444;
}

.gallery-page .gallery-right .modal h5 {
    color: #444444;
    font-weight: 600;
}

.gallery-page .gallery-right .modal-content {
    padding: 0px 0px 25px;
}

.gallery-page .row.our-gallery {
    --bs-gutter-x: 0.5rem !important;
}

/* ==========================EVENT SEC START HERE========================== */
.event-sec {
    padding-bottom: 55px;
}

.event-sec .event-top {
    padding-bottom: 80px;
}

.event-sec .event-bottom h4 {
    font-size: 34px;
    font-family: 'Open Sans Condensed';
    font-weight: 300;
    line-height: 44px;
    color: #174cc8;
    padding-bottom: 5px;
    text-transform: uppercase;
}

.event-sec .dateAndMonth .comments a {
    font-size: 12px;
    line-height: 24px;
    font-weight: 300;
    color: #808080;
    transition: all ease-in-out 300ms;
    display: block;
}

.event-sec .dateAndMonth a:hover {
    text-decoration: underline !important;
}

.event-sec .event-bottom .dateAndMonth p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: #808080;
}

.event-sec .event-bottom .read-content a {
    color: #2d5c88;
    display: block;
}

.event-sec .event-bottom .read-content a:hover {
    text-decoration: underline !important;
}

.event-sec .event-bottom .left-items.pb-55 {
    padding-bottom: 40px;
}

.event-sec .event-bottom .read-content p {
    color: #424242;
    margin-bottom: 5px;
}

.event-sec .event-bottom .view-news-btn a {
    padding: 15px 35px;
    border: 1px solid #d9d9d9;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    display: inline-block;
    color: #6b6b6b;
    margin-top: 50px;
    text-align: center;
    transition: all ease-in-out 500ms;
}

.event-sec .event-bottom .view-news-btn a:hover {
    background: var(--blue);
    color: var(--white);
}

/* ========================FOOTER START HERE======================== */
footer {
    border-top: 1px solid #424242
}

footer .footer-inner {
    padding: 30px 0;
}

footer .footer-inner p {
    font-size: 14px;
    font-style: italic;
    color: #444444;
}

/* =========================MEDIA PAGE START========================= */
.media-info-sec {
    padding: 220px 0px 50px;
}

.media-info-sec .media-inner,
.contact-page .media-inner,
.gallery-page .media-inner,
.artist-sec .media-inner,
.musings-page .media-inner {
    padding: 20px 0px;
    /* box-shadow: 0px 0px 1px; */
    margin-bottom: 0;
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 55px;
}

.media-top-left a {
    text-transform: uppercase;
}

/* 
.contact-page .contact-area {
    box-shadow: 0px 0px 1px;
    padding: 50px 0px 80px;
    border-top: .5px solid #8080804d;
} */
.media-info-sec .media-inner,
.contact-page .media-inner P {
    text-transform: uppercase;
}

.media-info-sec .media-inner,
.contact-page .media-inner a {
    text-transform: uppercase;
}

.media-info-sec .media-bottom .row {
    --bs-gutter-x: 2rem;
}

.media-info-sec .media-top-right a:hover {
    text-decoration: underline !important;
}

.media-info-sec .media-inner p,
li {
    font-size: 14px;
    color: #666666;
    font-family: 'Open Sans Condensed';
}

.media-inner .media-top-left p {
    font-size: 16px;
    color: #666666;
    font-family: 'Open Sans Condensed';
}

.post-outer ul li:hover {
    text-decoration: underline;
}

.media-info-sec .media-img {
    width: 100%;
    height: 490px;
    display: block;
    overflow: hidden;
    box-shadow: 0px 0px 1px;
    background: #fff;
}

.media-info-sec .tooltip-on-hover {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50px);
    display: none;
}

.media-info-sec .tooltip-on-hover::after {
    content: "";
    display: block;
    position: absolute;
    border-style: solid;
    border-color: #000;
    border-width: 2px 0 0 2px;
    width: 15px;
    height: 15px;
    bottom: -18px;
    left: 45%;
    background: #000;
    transform: rotate(226deg);
}

.media-info-sec .media-left:hover img {
    opacity: 0.5;
}

.media-info-sec .media-left:hover .tooltip-on-hover {
    display: block;
    transition: all ease-in-out 300ms;
}

.media-info-sec .tooltip-on-hover span {
    padding: 12px 40px;
    background: #000;
    color: #fff;
    font-size: 16px;
    text-align: center;
    font-family: 'Open Sans Condensed';
    /* display: none; */
    transition: all ease-in-out 300ms;
}

.media-info-sec .media-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-in-out 300ms;
}

/* =========================MEDIA PAGE END========================= */

/* =======================CONTACT PAGE START======================= */

.contact-page .contact-area {
    border-top: 1px solid #ced4da;
}

.contact-page .contact-area .address P {
    color: #808080;
    line-height: 53px;
    font-size: 25px;
    font-weight: normal;
    font-family: 'Open Sans Condensed';
}

.contact-page .contact-area .address h2 {
    margin-bottom: 30px;
}

.contact-page .contact-area label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #424242;
}

.contact-page .contact-area .form-area h2 {
    padding-bottom: 30px;
}

.contact-page .contact-area .form-control,
.gallery-right .form-control {
    padding: 8px 10px;
    font-size: 16px;
    line-height: 26px;
    border: 1px solid #ced4da;
    color: #000;
    margin-bottom: 20px;
}

.contact-page .contact-area .form-control:focus,
.gallery-right .form-control {
    color: #000;
    background-color: #fff;
    border: 1px solid #ced4da;
    outline: 0;
    box-shadow: none;
}

.gallery-right .modal .btn-primary {
    padding: 16px 20px;
    border-radius: 2px;
    font-size: 12px;
    min-width: 142px;
    outline: none;
    border-bottom: 1px solid #000 !important;
    background: #f0f0f0;
    border: none;
    color: #000;
    margin-top: 15px;
}

.contact-page .contact-area .btn-primary {
    background: var(--blue);
    font-size: 16px;
    line-height: 26px;
    padding: 10px 50px;
    color: #fff;
    border: none !important;
    display: inline-block;
    text-align: center;
    transition: all ease-in-out 300ms;
    border-radius: 2px !important;
    margin-top: 15px;
}

.contact-page h3,
.musings-page h3 {
    font-size: 18px;
    line-height: 28px;
    color: var(--blue);
    font-weight: 600;
    font-family: 'Open Sans Condensed';
}

.contact-page .contact-area .address,
.form-area,
.post-outer {
    padding: 50px 0px 80px;
}

.contact-page .border-left,
.musings-page .border-left {
    border-left: 1px solid #e1e1e1;
}

.contact-page .form-area {
    padding-right: 50px;
}

.post-outer {
    padding-left: 35px;
}

.post-area ul li a {
    font-size: 15px;
    font-style: italic;
    border-bottom: 2px solid #e1e1e1;
    padding: 7px 0px;
    color: #808080;
    display: block;
    transition: all ease-in-out 300ms;
}

.post-area ul li a:hover {
    color: var(--blue);
}

.archives ul a {
    display: block;
    font-size: 18px;
    line-height: 25px;
}

.post-area ul li:last-child {
    border-bottom: none;
}

.archives p {
    font-size: 20px;
    line-height: 25px;
    color: #808080;
    font-family: 'Open Sans Condensed';
}

/* ===========================CONTACT PAGE END HERE=========================== */

/* ==========================GALLERY PAGE START HERE========================== */
.gallery-page,
.media-info-sec,
.artist-sec,
.musings-page,
.contact-page {
    padding: 140px 0px 50px;
}

.gallery-page .gallery-page-img {
    width: 100%;
    height: 220px;
    display: block;
    overflow: hidden;
    padding: 10px 8px;
    box-shadow: 0px 0px 1px;
}

.gallery-page .gallery-page-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-in-out 500ms;
}

.gallery-page .gallery-page-img:hover img {
    transform: scale(1.1);
}

.gallery-page .gallery-right .contact-btn button {
    background: var(--blue);
    padding: 10px 10px;
    color: #fff;
    font-size: 14px;
    display: inline-block;
    border-radius: 2px;
}

.gallery-page .gallery-right .modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 20px 1rem 0px 1rem;
    border-bottom: none;
    border-radius: 0px !important;
}

.gallery-page .gallery-right .submit-btn {
    padding: 16px 20px;
    border-radius: 2px;
    font-size: 12px;
    min-width: 142px;
    outline: none;
    border-bottom: 1px solid #000 !important;
    background: #f0f0f0;
    border: none;
    color: #000;
    margin-top: 15px;
}

.gallery-page .gallery-right .contact-btn button:hover {
    background: var(--blue) !important;
    color: #fff !important;
}

.gallery-page .gallery-right button:focus {
    box-shadow: none !important;
}

.gallery-page .gallery-right a img {
    width: 20px;
    height: auto;
    object-fit: cover;
    filter: invert(1);
}

.gallery-page .gallery-right h2 {
    font-size: 30px;
    line-height: 40px;
    padding-bottom: 15px;
}

.gallery-page .gallery-right {
    padding-left: 50px;
}

/* ===========================Artist page start here=========================== */

.artist-sec .row {
    --bs-gutter-x: 3rem;
}

.artist-sec p {
    font-size: 14px;
    color: #424242;
    padding-bottom: 15px;
    font-weight: 400;
}

.artist-sec p:last-child {
    padding-bottom: 0px;
}

.artist-sec .artist-img {
    width: 100%;
    height: 640px;
    overflow: hidden;
    display: block;
}

.artist-sec .artist-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* =========================musings-page start here========================= */
.musings-page .media-inner {
    margin-bottom: 0px;
}

.musings-page .jazz-info {
    margin: 55px 0px;
    border-left: 1px solid #e1e1e1;
    padding: 0px 50px 0px 90px;
}

.musings-page .jazz-info .jazz-items {
    margin-bottom: 100px;
    position: relative;
}

.musings-page .jazz-top {
    padding-bottom: 55px;
}

/* .musings-page .musings-inner {
    border-top: 1px solid #e1e1e1;
} */

.musings-page .jazz-info h3 {
    font-family: 'Open Sans Condensed';
    font-size: 22px;
    line-height: 32px;
}

.musings-page .jazz-info ul a:hover {
    text-decoration: underline !important;
    display: block;
}


.musings-page .jazz-info .jazz-img {
    width: 100%;
    height: 345px;
    overflow: hidden;
    display: block;
    margin-bottom: 30px;
}

.musings-page .jazz-info .jazz-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.musings-page .jazz-info .hover-effects {
    background: rgba(255, 255, 255, 0.6);
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scale(0);
    transition: all ease-in-out 500ms;
}

.musings-page .jazz-info .hover-icon {
    width: 80px;
    height: 80px;
    background: var(--blue);
    color: #fff;
    padding: 20px;
    border-radius: 50%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.musings-page .jazz-info a:hover .hover-effects {
    transform: scale(1);
}

.musings-page .jazz-bottom p {
    padding-bottom: 20px;
    line-height: 25px;
    color: #424242;
}

.musings-page .jazz-bottom p:last-child {
    padding-bottom: 0;
}

.musings-page .jazz-bottom .jazz-img.tumult-img {
    height: 150px !important;
}

.musings-page .jazz-bottom .jazz-img.brunch-img {
    height: 330px !important;
}

.musings-page .jazz-bottom .jazz-img.your-art {
    height: 620px !important;
}

.musings-page .jazz-items .detail-box a {
    width: 81px;
    height: 81px;
    background: #808080;
    padding: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease-in-out 300ms;
}

.musings-page .jazz-items .detail-box a:hover {
    background: var(--blue);
}

.musings-page .jazz-items .detail-box img {
    width: 30px;
    height: auto;
    display: block;
    filter: invert(1);
}

.musings-page .jazz-items .detail-box {
    position: absolute;
    content: "";
    top: 10px;
    left: -130px;
}

/* ==============================Jazz detail page start============================== */
.musings-page .jazz-details h4 {
    font-size: 18px;
    line-height: 28px;
    color: var(--blue);
    font-weight: 600;
    font-family: 'Open Sans Condensed';
    padding-bottom: 20px;
}

.musings-page .social-media li a {
    width: 92px;
    height: 50px;
    line-height: 52px;
    border: 1px solid #e1e1e1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    color: #000;
    transition: all ease-in-out 300ms;
}

.musings-page .social-media li a:hover {
    background: var(--blue);
    color: #fff;
}

.musings-page .social-media {
    position: relative;
}

.musings-page .tooltip-On-Hover span::after {
    content: "";
    position: relative;
    border-style: solid;
    border-color: #e1e1e1;
    border-width: 2px 0 0 2px;
    width: 15px;
    height: 21px;
    bottom: -21px;
    left: -40px;
    transform: rotate(237deg);
    background: #fff;
}

.musings-page .social-media span {
    padding: 10px 0;
    width: 160px;
    text-align: center;
    border: 1px solid #e1e1e1;
    background: #fff;
    position: absolute;
    top: -57px;
    left: -30px;
    visibility: hidden;
    transition: all ease-in-out 100ms;
    display: flex;
    justify-content: center;
    align-items: center;
}

.musings-page .social-media li:hover span {
    visibility: visible;
}

.jazz-details .comments-counts span {
    background: var(--blue);
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 22px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.jazz-details .comments-counts {
    flex-direction: column;
    align-items: center;
}

.jazz-details .comments-counts::before {
    content: "";
    position: absolute;
    left: 0;
    top: 29px;
    width: 350px;
    height: 1px;
    background: #e1e1e1;
}

.jazz-details .comments-counts::after {
    content: "";
    position: absolute;
    right: 0;
    top: 29px;
    width: 350px;
    height: 1px;
    background: #e1e1e1;
}

.jazz-details .comments-counts p {
    font-size: 12px;
    color: #808080;
    margin-top: 2px;
}

.jazz-details .form-input-group {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 15px;
}

.jazz-details .form-input-group label {
    color: #424242;
    font-size: 11px;
    font-weight: 600;
}

.jazz-details .form-input-group .form-control {
    flex: 0 0 25%;
    width: 40%;
}

.jazz-details .input-group {
    align-items: center;
    gap: 10px;
}

.blog-detail-page .detail-box {
    display: none;
}

.blog-detail-page .jazz-info {
    border-left: none;
    padding: 0px 50px 0px 0px;
}

.jazz-details .form-control {
    padding: 3px 10px;
    font-size: 16px;
    line-height: 26px;
    border: 1px solid #ced4da;
    color: #000;
}

.jazz-details .form-control:focus {
    color: #000;
    background-color: #fff;
    border: 1px solid #ced4da;
    outline: 0;
    box-shadow: none;
}

.jazz-details .post-form .form-title p {
    font-size: 11px;
    line-height: 15px;
    padding: 15px 0px;
}

.jazz-details .post-form button {
    font-size: 14px;
    display: inline-block;
    padding: 6px 21px;
    border: none;
    border-radius: 0;
    background: var(--blue);
    color: #fff;
    transition: all ease-in-out 300ms;
    margin-top: 13px;
}

.jazz-details .post-form button:hover {
    background: #3d71a1;
}

.jazz-details {
    margin-top: 20px;
}

.blog-detail-page .jazz-info .post-form {
    margin-bottom: 35px;
}

.musings-page .jazz-details #respond p {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 25px;
    margin-top: 20px;
}

.musings-page .jazz-details #respond textarea,
input {
    width: 50%;
    padding: 3px 10px;
    border: 1px solid #ced4da;
    color: #000;
}

.musings-page .jazz-details #respond textarea,
input:focus {
    color: #000;
    background-color: #fff;
    border: 1px solid #ced4da;
    outline: 0;
    box-shadow: none;
}

.musings-page .jazz-details #respond .comment-notes {
    font-size: 11px;
    line-height: 15px;
    padding: 0px;
}

.musings-page .jazz-details #respond label {
    color: #424242;
    font-size: 11px;
    font-weight: 600;
}

.musings-page .jazz-details #respond .comment-form-cookies-consent {
    width: 45%;
    display: none;
}

.musings-page .jazz-details #respond #submit {
    font-size: 14px;
    display: block;
    padding: 6px 21px;
    border: none;
    border-radius: 0;
    background: var(--blue);
    color: #fff;
    transition: all ease-in-out 300ms;
    margin-top: 13px;
    width: 17%;
}
