@import url("https://fonts.googleapis.com/css2?family=Lobster&family=Poppins:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700&display=swap");

:root {
    --navyblue: #090E27;
    --purple-light: #1D223A;
    --pink: #FF0090;
    --blue: #6C23E0;
    --purple: #6C23E0;
    --dark-card: #141935;
    --black: #000000;
    --white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
}

body {
    background-color: var(--navyblue);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Header Navigation */
.navbar-hrc {
    display: block;
    position: fixed;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding: 65px 0 35px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-hrc.show {
    height: 100%;
    overflow-y: auto;
}

.navbar-hrc .container {
    position: relative;
}

.navbar-hrc.scrolled {
    background-color: var(--navyblue);
    padding: 35px 0;
}

.navbar-brand img {
    height: 38px;
    width: auto;
}

.nav-link-hrc {
    color: var(--white) !important;
    font-family: 'Lobster', cursive;
    font-size: 32px;
    margin: 0 12px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link-hrc:hover {
    color: var(--pink) !important;
    transform: scale(1.05);
}

.header-socials a {
    color: var(--white);
    font-size: 20px;
    margin-left: 25px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.header-socials a:first-child {
    margin-left: 0;
}

.header-socials a:hover {
    color: var(--pink);
    transform: scale(1.2);
}

@media screen and (max-width: 767px) {
    body {
        font-size: 16px;
    }
    .header-socials {
        display: none !important;
    }
    .navbar-hrc {
        padding: 45px 0 25px;
    }
    .navbar-hrc.scrolled {
        padding: 25px 0;
    }
}

@media screen and (max-width: 580px) {
    .navbar-hrc {
        padding: 65px 0 25px 0;
    }
}

/* Hero Splash Banner */
.hero-banner {
    position: relative;
    background-image: linear-gradient(0deg, #090E27 0%, #090E2700 30%), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-top: 200px;
    padding-bottom: 0;
}

.hero-title-large {
    font-family: 'Lobster', cursive;
    font-size: 200px;
    line-height: 1.1;
    color: transparent;
    -webkit-text-stroke: 1px #ffffff;
    margin: 0;
    user-select: none;
    padding-right: 120px;
    position: relative;
    z-index: 1;
}

.hero-title-sub {
    font-family: 'Lobster', cursive;
    font-size: 128px;
    line-height: 1.1;
    color: var(--pink);
    margin-top: -40px;
    margin-bottom: 45px;
    padding-left: 120px;
}

.hero-socials a {
    color: var(--white);
    font-size: 24px;
    margin-right: 35px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}
.hero-socials a:last-child {
    margin-right: 0;
}

.hero-socials a:hover {
    color: var(--pink);
    transform: translateY(-5px);
}

/* Sections Styling */
.section-padding {
    padding: 100px 0;
    background-color: var(--navyblue);
    background-image: url('images/dancing-background.png');
    background-position: bottom left;
    background-repeat: no-repeat;
}



.hrc-btn-primary {
    background-color: var(--pink);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hrc-btn-primary:hover {
    background-color: #d10074;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(255, 0, 144, 0.4);
    transform: translateY(-2px);
}

/* Footer Styling */
.footer-hrc {
    background-color: #050819;
    background-image: url('../images/footer-background.png');
    background-size: cover;
    background-position: top center;
    padding: 120px 0 40px;
}

.footer-logo {
    font-family: 'Lobster', cursive;
    font-size: 40px;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--pink);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto 30px;
}

.footer-socials a {
    color: var(--white);
    font-size: 24px;
    margin: 0 15px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-socials a:hover {
    color: var(--pink);
    transform: scale(1.2);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 1199px) {
    .hero-title-large {
        font-size: 150px;
    }
    .hero-title-sub {
        font-size: 110px;
        margin-top: -35px;
        padding-left: 80px;
    }
}

@media (max-width: 991px) {
    .hero-title-large {
        font-size: 100px;
    }
    .hero-title-sub {
        font-size: 60px;
        margin-top: -15px;
    }
    .footer-hrc {
        padding: 80px 0 40px;
    }
    .footer-bottom {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .hero-title-large {
        font-size: 75px;
        padding-right: 60px;
    }
    .hero-title-sub {
        font-size: 60px;
        margin-top: -15px;
        padding-left: 5px;
    }
}

/* Overlay Navigation Menu drawer */
.toggle-btn-hrc {
    background-color: var(--pink);
    color: var(--white);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 18px;
    z-index: 1100;
}

.toggle-btn-hrc:hover {
    transform: scale(1.05);
    background-color: #d10074;
}
.toggle-btn-hrc svg {
    width: 24px;
    height: 24px;
}
.toggle-btn-hrc .open {
    display: block;
}
.toggle-btn-hrc .close {
    display: none;
}
nav.show .toggle-btn-hrc .open {
    display: none;
}
nav.show .toggle-btn-hrc .close {
    display: block;
}


.navbar-brand-hrc {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    z-index: 1100;
    position: relative;
}

.navbar-brand-hrc .text1 {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    font-size: 12px;
    font-weight: 100;
    color: #fff;
}

.navbar-brand-hrc img {
    height: 33px;
    width: auto;
    margin-top: -9px;
}

@media screen and (max-width: 767px) {
    .header-socials {
        display: none !important;
    }
    .navbar-brand-hrc img {
        height: 25px;
    }
    .toggle-btn-hrc {
        width: 50px;
        height: 50px;
    }
    .toggle-btn-hrc svg {
        width: 22px;
        height: 22px;
    }
}


/* Overlay Drawer & Submenu Wrapper */
.menu-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 40px);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.navbar-hrc.show .menu-main {
    opacity: 1;
    visibility: visible;
}

.menu-main-inner {
    padding: 120px 12px 40px;
}

.menu-drawer.open {
    transform: translateX(0);
}

/* Submenu panel sliding next to the main menu */
.submenu-drawer {
    position: absolute;
    left: 390px;
    top: 0;
    bottom: 0;
    display: block;
    width: calc(100% - 390px) !important;
    background-color: transparent !important;
    box-shadow: none !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.drawer-nav-item:hover .submenu-drawer {
    opacity: 1;
    visibility: visible;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.drawer-overlay.show {
    opacity: 1;
    visibility: visible;
}

.drawer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.drawer-nav::before {
    content: "";
    display: block;
    position: absolute;
    left: 35%;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, .5);
}

.drawer-nav-item {
    width: 35%;
    position: static;
    margin-bottom: 25px;
}

.drawer-nav-link {
    font-family: 'Lobster', cursive;
    font-size: 45px;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
}

.drawer-nav-link .arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    margin: -21px 0 0 0;
    width: 46px;
    height: 43px;
    display: block;
    background: url('../images/Arrow.svg') no-repeat center center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.drawer-nav-item:hover .drawer-nav-link,
.drawer-nav-item:hover .drawer-nav-link.active {
    color: var(--pink);
}

.drawer-nav-item:hover .drawer-nav-link .arrow,
.drawer-nav-item:hover .drawer-nav-link.active .arrow {
    opacity: 1;
    visibility: visible;
}

.drawer-nav-link i {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.drawer-nav-link.active i {
    transform: rotate(90deg);
}

@media screen and (max-width: 1199px) {
    .drawer-nav-item .drawer-nav-link .arrow,
    .drawer-nav-item .drawer-nav-link.active .arrow {
        opacity: 1;
        visibility: visible;
    }
}

/* Submenu Content Links */
.submenu-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--pink);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.submenu-grid {
    list-style: none;
    padding: 0;
    margin: 0;
}

.submenu-grid-item {
    width: 50%;
    float: left;
    border: 0 !important;
    padding: 0 0 37px 30px;
    margin-bottom: 0;
}

.submenu-grid-item:nth-child(2n + 1) {
    clear: right;
}

.submenu-grid-link {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
}

.submenu-grid-link:hover {
    color: var(--pink);
}

/* Responsive menu behaviour */
@media (max-width: 1199px) {
    .submenu-drawer {
        left: 35%;
        width: calc(100% - 35%) !important;
    }
    .drawer-nav-link {
        font-size: 40px;
    }
    .submenu-grid-link {
        font-size: 20px;
    }
    .submenu-grid-item {
        padding: 0 0 30px 30px;
    }
}
@media (max-width: 991px) {
    .drawer-nav-link {
        font-size: 34px;
    }

}

@media (max-width: 767px) {
    .submenu-drawer {
       position: relative;
       left: 0;
       width: 100% !important;
    }
    .submenu-drawer.open {
        transform: translateX(0);
    }
    .drawer-nav-item {
        width: 100%;
        position: relative;
        margin-bottom: 20px;
    }
    .drawer-nav-link {
        font-size: 30px;
    }
    .drawer-nav::before {
        display: none;
    }
    .menu-main-inner {
        padding: 90px 12px 30px;
    }
    .submenu-grid {
        margin: 10px 0 0;
    }
    .submenu-grid-item {
        width: 100%;
        float: none;
        padding: 0;
        margin: 0 0 20px;
    }
}

/***************** Home - Banner slider *****************/
.hrc-banner-slider-wrap {
    padding: 50px 10px;
}
.hrc-banner-slider-wrap h2 {
    color: var(--white);
    font-size: 50px;
    font-family: "Lobster", Sans-serif;
    text-align: center;
    margin-bottom: 20px;
}
.hrc-banner-slider {
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0 60px !important;
}
.hrc-banner-slider h3 {
    color: var(--white);
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 15px;
}
.hrc-banner-slider h3 a {
    color: var(--white);
    text-decoration: none;
}
.hrc-banner-slider h3 a:hover {
    color: #f8008c;
}
.hrc-banner-btm br {
    display: none;
}
.hrc-banner-slider .location,
.hrc-banner-slider .date {
    font-size: 18px;
    letter-spacing: 0.18px;
    font-weight: 300;
    position: relative;
    padding-left: 35px;
    margin: 0 20px;
    display: inline-block;
}

.hrc-banner-slider .location {
    background: url('../images/Location.svg')no-repeat center left;
}
.hrc-banner-slider .date {
    background: url('../images/Calender.svg')no-repeat center left;
}
.hrc-banner-slider .swiper-slide {
    opacity: 0;
}
.hrc-banner-slider .swiper-slide.swiper-slide-active {
    opacity: 1;
}

/* Responsiveness based on theme */
@media (max-width: 768px) {
    .hrc-banner-slider-wrap {
        padding: 50px 0;
    }
    .hrc-banner-slider-wrap h2 {
        font-size: 40px;
        margin-bottom: 40px;
    }
    .hrc-banner-slider h3 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    .hrc-banner-slider .location, 
    .hrc-banner-slider .date {
        font-size: 16px;
        background-size: 18px !important;
        margin: 10px 0 0;
        padding-left: 30px;
    }
    .hrc-banner-slider {
        padding: 0 50px !important;
    }
    .hrc-banner-btm br {
        display: block;
    }
    .hrc-banner-slider .date {
        display: inline-block;
        vertical-align: top;
    }
}

/***************** Swiper *****************/
.arrow-right-wrap {
    position: relative;
}
.arrow-right-wrap .slider-arrow-wrap {
    position: absolute;
    right: 0;
    top: 50%;
    width: 150px;
    height: 43px;
    margin-top: -21px;
}
.arrow-right-wrap .swiper-button-next,
.arrow-right-wrap .swiper-button-prev {
    top: 0;
    margin: 0;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev,
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    width: 46px !important;
    height: 43px !important;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 100%;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    background-image: url('../images/Arrow-light.svg');
}
.swiper-button-next:hover, .swiper-rtl .swiper-button-prev:hover {
    background-image: url('../images/Arrow.svg');
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    background-image: url('../images/Arrow-reverse-light.svg');
}
.swiper-button-prev:hover, .swiper-rtl .swiper-button-next:hover {
    background-image: url('../images/Arrow-reverse.svg');
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    display: none;
}

@media (max-width: 768px) {
    .swiper-button-prev, .swiper-rtl .swiper-button-next {
        left: 0 !important;
    }
    .swiper-button-next, .swiper-rtl .swiper-button-prev {
        right: 0 !important;
    }
    .swiper-button-next, .swiper-rtl .swiper-button-prev, .swiper-button-prev, .swiper-rtl .swiper-button-next {
        width: 35px !important;
        height: 35px !important;
        background-size: 35px;
        margin-top: -17.5px;
    }
}

.pt-200 {
    padding-top: 200px;
}
.pt-100 {
    padding-top: 100px;
}
.pb-100 {
    padding-bottom: 100px;
}

@media screen and (max-width: 991px) {
    .pt-200 {
        padding-top: 60px;
    }
    .pt-100 {
        padding-top: 60px;
    }
    .pb-100 {
        padding-bottom: 60px;
    }
}


.latestpost-slider-wrap h2 {
    color: var(--white);
    font-size: 50px;
    font-family: "Lobster", Sans-serif;
    margin-bottom: 50px;
}
.latestpost-slider .swiper-slide {
    width: auto;
}
.latestpost-slider .swiper-slide:nth-child(odd) {
    padding-top: 30px;
}
.latestpost-slider-box {
    width: 400px;
    min-height: 536px;
    background-color: var(--purple-light);
    padding: 40px 35px 75px;
    border-radius: 10px;
    margin-top: 20px;
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.latestpost-slider-image {
    height: 0;
    overflow: hidden;
    margin: -60px 0 45px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.latestpost-slider-image img {
    width: 330px;
    height: 208px;
    object-fit: cover;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.latestpost-slider-title {
    margin-bottom: 15px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.latestpost-slider-title h3 {
    font-size: 26px;
    line-height: 1.53;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}
.latestpost-slider-title h3 a {
    color: var(--white);
    text-decoration: none;
}
.latestpost-slider-content {
    height: 180px;
    overflow: hidden;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    margin-bottom: 15px;
}
.latestpost-slider-content p {
    font-weight: 300;
    margin-bottom: 0;
}
.latestpost-slider-readmore p {
    opacity: 1;
}
.latestpost-slider-readmore a {
    color: var(--pink);
    font-size: 20px;
    font-weight: 500;
    text-decoration: underline;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.latestpost-slider-btm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 40px;
    left: 35px;
    right: 35px;
}
.latestpost-slider-btm-left {
    flex: 1;
}
.latestpost-slider-btm-left .date,
.latestpost-slider-btm-right > div {
    font-size: 16px;
    font-weight: 300;
    display: flex;
    align-items: center;
}
.latestpost-slider-btm-left .date .icon,
.latestpost-slider-btm-right > div .icon {
    line-height: 0;
    padding-right: 8px;
}
.latestpost-slider-btm-left .date .icon svg,
.latestpost-slider-btm-right > div .icon svg {
    vertical-align: top;
    width: 22px;
    height: 22px;
}
.latestpost-slider-btm-left .date .icon svg path,
.latestpost-slider-btm-right > div .icon svg path {
    fill: var(--pink);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.latestpost-slider-btm-right > div .dashicons {
    color: var(--pink);
    font-size: 18px;
    line-height: 23px;
    display: inline-block;
    vertical-align: top;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.latestpost-slider-btm-right {
    display: flex;
    align-items: center;
}
.latestpost-slider-btm-right .comments {
    margin-left: 30px;
}
.latestpost-slider-box:hover {
    background-color: var(--blue);
}
.latestpost-slider-box:hover .latestpost-slider-image {
    height: 208px;
}
.latestpost-slider-box:hover .latestpost-slider-content {
    height: 30px;
}
.latestpost-slider-box:hover .latestpost-slider-readmore a {
    color: var(--white);
}
.latestpost-slider-box:hover .latestpost-slider-btm-left .date .icon svg path,
.latestpost-slider-box:hover .latestpost-slider-btm-right > div .icon svg path {
    fill: var(--white);
}
.latestpost-slider-box:hover .latestpost-slider-btm-right > div .dashicons {
    color: var(--white);
}

.post_categories {
    background-color: transparent;
    background-image: linear-gradient(180deg, #6C23E073 0%, #FF00907A 100%);
}
.post_categories h2 {
    color: var(--white);
    font-size: 50px;
    font-family: "Lobster", Sans-serif;
    text-align: center;
    margin-bottom: 50px;
}
.post_categories ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}
.post_categories ul li {
    width: 25%;
    height: 150px;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, .2);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}
.post_categories ul li:nth-child(4n) {
    border-right: 0;
}
.post_categories ul li:nth-child(1),
.post_categories ul li:nth-child(2),
.post_categories ul li:nth-child(3),
.post_categories ul li:nth-child(4) {
    border-top: 0;
}
.post_categories ul li img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.post_categories ul li:hover img {
    opacity: .5;
    visibility: visible;
    transform: scale(1);
}
.post_categories ul li a {
    color: var(--white);
    font-size: 26px;
    line-height: 1.53;
    font-weight: 700;
    word-break: break-word;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
}
.interviews-slider-wrap h2 {
    color: var(--white);
    font-size: 50px;
    font-family: "Lobster", Sans-serif;
    margin-bottom: 30px;
}
.interviews-slider .latestpost-slider-box {
    width: 100%;
    min-height: 380px;
    padding: 40px 25px 20px;
}
.interviews-slider .latestpost-slider-box:hover .latestpost-slider-image {
    margin: -60px 0 10px;
}
.interviews-slider .latestpost-slider-content {
    height: 120px;
    margin-bottom: 10px;
}
.interviews-slider .latestpost-slider-box:hover .latestpost-slider-content {
    height: 0;
    margin: 0;
}
.interviews-slider .latestpost-slider-box:hover .latestpost-slider-title {
    margin-bottom: 5px;
}
.interviews-slider .latestpost-slider-title h3 {
    -webkit-line-clamp: 2;
}
.interviews-slider .latestpost-slider-btm {
    left: 25px;
    right: 25px;
    bottom: 20px;
}
.interviews-slider .latestpost-slider-btm-right .comments {
    margin-left: 20px;
}
@media screen and (max-width: 991px) {
    .interviews-slider-wrap .container.arrow-right-wrap {
        padding: 0 12px;
    }
    .interviews-slider-wrap .container {
        padding: 0;
    }
}

/* Responsive CSS */
@media screen and (max-width: 1024px) {
    .latestpost-slider-box {
        min-height: 445px;
        padding: 40px 25px 75px;
    }
    .interviews-slider .swiper-slide {
        width: auto;
    }
    .interviews-slider .latestpost-slider-box {
        width: 350px;
        min-height: 340px;
    }
    .latestpost-slider-wrap h2 {
        font-size: 40px;
    }
    .latestpost-slider-image img {
        height: 178px;
    }
    .latestpost-slider-box:hover .latestpost-slider-image {
        height: 178px;
    }
    .latestpost-slider-btm {
        left: 25px;
        right: 25px;
    }
    .latestpost-slider-readmore a {
        font-size: 18px;
    }
    .post_categories ul li a {
        font-size: 20px;
        line-height: 1.3;
        padding: 10px 20px;
    }
    .post_categories h2 {
        font-size: 40px;
    }
    .interviews-slider-wrap h2 {
        font-size: 40px;
    }
    .latestpost-slider-content {
        height: 160px;
    }
}

@media screen and (max-width: 767px) {
    .arrow-right-wrap .slider-arrow-wrap {
        right: 10px;
        width: 90px;
    }
    .latestpost-slider-box,
    .interviews-slider .latestpost-slider-box {
        width: 290px;
    }
    .latestpost-slider-wrap h2 {
        padding-right: 100px;
        margin-bottom: 30px;
    }
    .latestpost-slider .swiper-slide:nth-child(odd) {
        padding-top: 0;
    }
    .latestpost-slider-box,
    .interviews-slider .latestpost-slider-box {
        min-height: 410px;
        padding: 40px 15px 55px;
    }
    .latestpost-slider-btm,
    .interviews-slider .latestpost-slider-btm {
        bottom: 20px;
        left: 15px;
        right: 15px;
    }
    .latestpost-slider-title h3 {
        font-size: 20px;
    }
    .latestpost-slider-btm-right .comments {
        margin-left: 15px;
    }
    .latestpost-slider-btm-left .date, .latestpost-slider-btm-right > div {
        font-size: 14px;
    }
    .interviews-slider .latestpost-slider-box {
        min-height: 350px;
    }
    .post_categories h2 {
        margin-bottom: 40px;
    }
    .post_categories ul li {
        width: 33.33%;
        height: 130px;
    }
    .post_categories ul li:nth-child(4n) {
        border-right: 1px solid rgba(255, 255, 255, .2);
    }
    .post_categories ul li:nth-child(3n) {
        border-right: 0;
    }
    .post_categories ul li a {
        font-size: 18px;
    }
    .interviews-slider-wrap h2 {
        padding-right: 100px;
        margin-bottom: 20px;
    }
    .latestpost-slider-content {
        height: 150px;
    }
}

@media screen and (max-width: 479px) {
    .post_categories ul li {
        width: 50%;
    }
    .post_categories ul li:nth-child(3n) {
        border-right: 1px solid rgba(255, 255, 255, .2);
    }
    .post_categories ul li:nth-child(even) {
        border-right: 0;
    }
}

.aboutus {
    background: url('../images/others/dancing-background.png') left bottom no-repeat;
}
.aboutus picture {
    display: block;
    margin-bottom: -120px;
}
.aboutus picture img {
    border-radius: 10px;
}
.aboutus .image-block {
    position: relative;
}
.aboutus .image-block .textone {
    position: absolute;
    left: -190px;
    bottom: 113px;
    font-size: 105px;
    font-weight: 700;
    color: var(--pink);
    line-height: 1;
}
.aboutus .image-block .texttwo {
    position: absolute;
    left: -265px;
    bottom: 15px;
    font-size: 104px;
    font-weight: 700;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #FFFFFF;
    stroke: #FFFFFF;
    color: #6EC1E400;
    white-space: nowrap;
    line-height: 1;
}
.aboutus h2 {
    color: var(--white);
    font-size: 50px;
    font-family: "Lobster", Sans-serif;
    margin-bottom: 30px;
}
p {
    opacity: .7;
    line-height: 1.66;
}
.aboutus .hrc-btn-primary {
    margin-top: 30px;
}
.editor-content p:last-child {
    margin-bottom: 0;
}
@media screen and (max-width: 1650px) {
    .aboutus .image-block .textone {
        left: -140px;
    }
    .aboutus .image-block .texttwo {
        left: -215px;
    }
}
@media screen and (max-width: 1550px) {
    .aboutus .image-block .textone {
        left: -40px;
    }
    .aboutus .image-block .texttwo {
        left: -115px;
    }
}
@media screen and (max-width: 1350px) {
    .aboutus .image-block .textone {
        left: 0;
    }
    .aboutus .image-block .texttwo {
        left: 0;
    }
}
@media screen and (max-width: 991px) {
    .aboutus {
        padding: 0 0 60px;
        background-position: left bottom;
    }
    .aboutus .row {
        row-gap: 40px;
    }
    .aboutus picture {
        margin-bottom: 0;
    }
    .aboutus .image-block .textone {
        font-size: 85px;
    }
    .aboutus .image-block .texttwo {
        font-size: 84px;
    }
}
@media screen and (max-width: 767px) {
    .aboutus .image-block .textone,
    .aboutus .image-block .texttwo {
        font-size: 45px;
        position: relative;
        bottom: 0;
        margin-top: 10px;
        white-space: normal;
    }
    .aboutus h2 {
        font-size: 40px;
    }
}
img {
    max-width: 100%;
}

/* --- Interview About Us --- */
.interviewabout {
    background-color: transparent;
    background-image: linear-gradient(180deg, #6C23E073 0%, #FF00907A 100%);
    padding-top: 200px;
}
.interviewabout .image-block picture {
    display: block;
    margin-bottom: -50px;
    text-align: right;
}
.interviewabout .image-block picture img {
    border-radius: 10px;
}
.interviewabout .header-socials,
.interviewabout .interviewcta {
    margin-top: 2rem;
}
.interviewabout .interviewcta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}
.interviewabout .interviewcta .icon {
    width: 70px;
    flex: 0 0 auto;
}
.interviewabout .interviewcta .icon img {
    margin: 0 auto;
    display: block;
}
.interviewabout .interviewcta .text h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0;
}
.interviewabout .interviewcta .text .buttons {
    display: flex;
    align-items: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 1rem;
}
.interviewabout .interviewcta .text .buttons span {
    display: inline-block;
    vertical-align: middle;
    background-color: #FFFFFF00;
    font-family: "Poppins", Sans-serif;
    font-weight: 300;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-radius: 10px 10px 10px 10px;
    padding: 8px 25px;
    font-size: 15px;
}
@media screen and (max-width: 1199px) {
    .interviewabout {
        padding: 180px 0 0;
    }
}
@media screen and (max-width: 991px) {
    .interviewabout .image-block picture {
        text-align: left;
        margin-bottom: 40px;
    }
    .interviewabout {
        padding: 60px 0;
    }
}

/* --- Gallery Slider Style --- */
.gallery h2 {
    color: var(--white);
    font-size: 50px;
    font-family: "Lobster", Sans-serif;
    margin-bottom: 50px;
}
.gallery-slider .col-auto {
    margin-bottom: 24px;
}
.gallery-slider .col-auto:nth-child(1) {
    width: 25%;
}
.gallery-slider .col-auto:nth-child(2) {
    width: 35%;
}
.gallery-slider .col-auto:nth-child(3) {
    width: 40%;
}
.gallery-slider .col-auto:nth-child(4) {
    width: 40%;
}
.gallery-slider .col-auto:nth-child(5) {
    width: 25%;
}
.gallery-slider .col-auto:nth-child(6) {
    width: 35%;
}
.gallery-slider .col-auto img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.gallery-slider .col-auto .wp-video {
    border-radius: 10px;
    overflow: hidden;
}
.gallery-slider .col-auto .wp-video,
.gallery-slider .col-auto .wp-video .mejs-container {
    height: 300px !important;
}
.gallery-slider .col-auto .wp-video video,
.gallery-slider .col-auto .wp-video .mejs-container video {
    object-fit: cover;
    height: 300px !important;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .gallery-slider .col-auto {
        width: 50% !important;
    }
}
@media screen and (max-width: 575px) {
    .gallery-slider .col-auto {
        width: 100% !important;
    }
    .gallery-slider .col-auto img,
    .gallery-slider .col-auto .wp-video video {
        height: auto !important;
        aspect-ratio: 1.2;
    }
    .gallery-slider .col-auto .wp-video {
        height: auto !important;
    }
}


/* --- Topbar Banner Style --- */
.topbar {
    background: linear-gradient(90deg, var(--pink), var(--purple));
    color: var(--white);
    text-align: center;
    padding: 5px 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
@media screen and (max-width: 767px) {
    .topbar {
        font-size: 12px;
        padding: 5px 10px;
    }
}
