/* DETAILS
==================================================
	Theme Name: NINI
==================================================
*/

@charset "utf-8";

/* ======== Fonts ======== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* ======== Fonts ======== */

:root {
    /* ~-~-~-~-~ common transition ~-~-~-~-~ */
    --transition-common: all 0.5s ease 0s;
    /* ~-~-~-~-~ common transition ~-~-~-~-~ */

    /* ~-~-~-~-~ colors ~-~-~-~-~ */
    --color-primary: #F2B800;
    --color-secondary: #111111;
    --color-tertiary: #171717;
    --color-quaternary: #000000;
    --color-quinary: #000000;

    --color-white: #fff;
    --color-black: #000;
    /* ~-~-~-~-~ colors ~-~-~-~-~ */

    /* ~-~-~-~-~ declare font family & weight ~-~-~-~-~ */
    --ff-base: "Open Sans", sans-serif;
    --ff-accent: "Bebas Neue", sans-serif;
    --ff-awesome: "Font Awesome 6 Free";
    --fw-bold: 700;
    --fw-semibold: 600;
    --fw-medium: 500;
    --fw-regular: 400;
    --fw-light: 300;
    /* ~-~-~-~-~ declare font family & weight ~-~-~-~-~ */

    /* ~-~-~-~-~ declare font size ~-~-~-~-~ */
    --f-size-XXL: 96px;
    --f-size-XL: 60px;
    --f-size-L: 36px;
    --f-size-M: 24px;
    --f-size-S: 18px;
    /* ~-~-~-~-~ declare font size ~-~-~-~-~ */

    /* ~-~-~-~-~ other adjustments ~-~-~-~-~ */
    --margin-title: 0 0 20px 0;
    --margin-paragraph: 0 0 20px 0;
    --border-radius-image: 10px;
    --padding-height: 80px;
    --gap-40: 40px;
    --gap-60: 60px;
    /* ~-~-~-~-~ other adjustments ~-~-~-~-~ */

    /* ~-~-~-~-~ form adjustments ~-~-~-~-~ */
    --form-height: 50px;
    --form-font-color: #999999;
    --form-placeholder-color: #999999;
    --form-border-radious: 10px;
    --form-holder-bg: #F4F4F4;
    /* ~-~-~-~-~ form adjustments ~-~-~-~-~ */
}

@media only screen and (max-width: 1699px) {
    :root {
        --f-size-XXL: 75px;
        --f-size-XL: 55px;
        --f-size-L: 33px;

    }
}


@media only screen and (max-width: 1599px) {
    :root {
        --f-size-XXL: 60px;
        --f-size-XL: 50px;
    }
}

@media only screen and (max-width: 1399px) {
    :root {
        --f-size-L: 30px;
    }
}

@media only screen and (max-width: 1199px) {
    :root {
        --f-size-XXL: 50px;
        --f-size-XL: 45px;

        --f-size-M: 20px;
        --gap-60: 30px;


    }
}

@media only screen and (max-width: 991px) {
    :root {
        --padding-height: 60px;
    }
}

@media only screen and (max-width: 767px) {
    :root {
        --f-size-XXL: 35px;
        --f-size-XL: 32px;
        --f-size-L: 26px;
        --f-size-M: 18px;
        --f-size-S: 16px;
    }

}

/* ~-~-~-~-~-~-~-~-~-~ global font settings start ~-~-~-~-~-~-~-~-~-~ */
body {
    font-family: var(--ff-base) !important;
    font-size: var(--f-size-S);
    line-height: 1.4;
    color: var(--bs-white);
    overflow-x: hidden;
}

body,
p {
    margin: 0;
}

p:not(:last-child) {
    margin: var(--margin-paragraph);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: var(--ff-accent) !important;
    font-weight: var(--fw-medium);
    color: var(--bs-white);
    line-height: 1.2;
    margin: var(--margin-title);
}

h1,
.h1 {
    font-size: var(--f-size-XXL);
}

h2,
.h2 {
    font-size: var(--f-size-XL);
}

h3,
.h3 {
    font-size: var(--f-size-L);
}

h4,
.h4 {
    font-size: var(--f-size-M);
}

h6,
.h6 {
    font-size: var(--f-size-S);
}

/* ~-~-~-~-~-~-~-~-~-~ global adjustments start ~-~-~-~-~-~-~-~-~-~ */
img {
    max-width: 100%;
}

a,
img {
    border: none;
    text-decoration: none;
    outline: none;
}

a,
a:link,
a:visited,
a:focus,
a:hover {
    outline: none;
    text-decoration: none;
    transition: var(--transition-common);
}

/* ==##==##== utility classes ==##==##== */
.padding-common {
    padding-top: var(--padding-height);
    padding-bottom: var(--padding-height);
}

.padding-top-common {
    padding-top: var(--padding-height);
}

.padding-bottom-common {
    padding-bottom: var(--padding-height);
}

.overlay-content {
    position: relative;
    z-index: 3;
}

.fade-bg {
    background: var(--color-secondary);
}

.background-cover {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.responsive-image-wrapper {
    position: relative;
    overflow: hidden;
}

.responsive-image-wrapper img {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mb-60 {
    margin-bottom: var(--gap-60);
}

/* ==##==##== utility classes ==##==##== */

/* ==##==##== container adjustments ==##==##== */
@media only screen and (min-width: 1700px) {
    .container {
        max-width: 1624px;
    }
}

/* ==##==##== container adjustments ==##==##== */

/* ==##==##== button settings ==##==##== */
.button_primary {
    font-family: var(--ff-base) !important;
    font-size: var(--f-size-M);
    color: var(--bs-black);
    font-weight: var(--fw-bold);
    background-color: var(--color-primary);
    border-radius: 10px;
    text-transform: uppercase;
    padding: 15px 42px;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-common);
}

.button_primary:hover {
    background-color: var(--bs-black);
    color: var(--color-white);
}

/* .button_primary .btn-text{ position: relative; z-index: 2;}  */

/* ==##==##== button settings ==##==##== */

/* ==##==##== Slider Arrow settings ==##==##== */

/* ==##==##== Slider Arrow settings ==##==##== */

/* ==##==##== form control settings ==##==##== */
.form-control {
    background-color: var(--form-holder-bg) !important;
    height: var(--form-height);
    border: 0 !important;
    border-radius: var(--form-border-radious);
    box-shadow: none !important;
    color: var(--form-font-color);
    font-size: var(--f-size-M);
    padding-right: 20px;
    padding-left: 20px;
}

select.form-control {
    background: url(../images/select-arrow.svg);
    background-position: right 5px center;
    background-size: 13px;
    background-repeat: no-repeat;
    padding: 2px 22px 2px 15px;
    height: fit-content;
    color: var(--color-secondary);
    cursor: pointer;
}

textarea.form-control {
    height: 100px;
    padding-top: 15px;
    border-radius: 20px;
    resize: none;
}

.form-control::-moz-placeholder {
    color: var(--form-placeholder-color);
    opacity: 1;
    font-weight: 400;
}

.form-control:-ms-input-placeholder {
    color: var(--form-placeholder-color);
    font-weight: 400;
}

.form-control::-webkit-input-placeholder {
    color: var(--form-placeholder-color);
    font-weight: 400;
}

.form-row {
    margin-bottom: 30px;
}

/* ==##==##== utility classes ==##==##== */
.section-title h2 {
    line-height: 1;
    font-weight: var(--fw-regular);
    letter-spacing: 3px;
}

.section-title h2 strong {
    color: var(--color-primary);
    font-weight: var(--fw-regular);
}

.section-title p {
    font-weight: var(--fw-regular);
}


@media only screen and (max-width: 991px) {
    .form-row {
        margin-bottom: 25px;
    }
}

/* ==##==##== form control settings ==##==##== */

/* ~-~-~-~-~-~-~-~-~-~ header adjustments start ~-~-~-~-~-~-~-~-~-~ */

/* ~~hamburger menu start~~ */
.hamburger-nav {
    display: none;
    vertical-align: top;
    width: 28px;
    height: 26px;
    position: relative;
    margin: 0 0 0 15px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    margin-top: 0;
    z-index: 9;
}

.hamburger-nav span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--color-white);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.hamburger-nav span:nth-child(1) {
    top: 2px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.hamburger-nav span:nth-child(2) {
    top: 10px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.hamburger-nav span:nth-child(3) {
    top: 18px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.hamburger-nav-close {
    vertical-align: top;
    width: 30px;
    height: 24px;
    position: relative;
    margin: 0 0 0 15px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    margin-top: 0;
    z-index: 9;
}

.hamburger-nav-close span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--color-white);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.hamburger-nav-close span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 10px;
    left: 3px;
}

.hamburger-nav-close span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.hamburger-nav-close span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 10px;
    left: 2px;
}

/* ~~hamburger menu end~~ */


.main-header {
    position: fixed;
    z-index: 999;
    inset: 0 0 auto 0;
}

.header-logo a {
    display: block;
    height: 60px;
}

.header-logo a img {
    display: block;
    width: auto;
    height: 100%;
}

.desktop-menu ul {
    align-items: center;
}

.desktop-menu ul li:not(.header-button) a {
    display: block;
    font-family: var(--ff-base);
    font-size: var(--f-size-S);
    color: var(--color-white);
    padding: 60px 0;
    margin: 0 27px;
    position: relative;

}

.desktop-menu ul li a:hover,
.main-header ul li.current-menu-item a {
    color: var(--color-primary);
}

.header-right .button_primary {
    box-shadow: 0px 8px 60px 0px rgba(242, 184, 0, 0);
}

.header-right .button_primary:hover {
    box-shadow: 0px 8px 60px 0px rgba(242, 184, 0, 0.3);
}



/* Mobile Menu */
.mobile-menu {
    display: none;
    background: var(--color-secondary);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100vw;
    overflow: hidden;
    z-index: 999;
    transition: var(--transition-common);
}

.mobile-menu .top-row {
    padding: 20px;
}

.mobile-menubar {
    height: calc(100vh - 120px);
    padding: 20px 0;
    overflow: auto;
}

.mobile-menu .mobile-menubar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu .mobile-menubar li {
    opacity: 0;
    -webkit-transform: translateX(-150px);
    transform: translateX(-150px);
    -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
    transition: transform 0.4s, opacity 0.4s;
    padding: 0 20px;
    font-size: 22px;
}

.mobile-menu .mobile-menubar li a {
    color: var(--color-white);
    display: block !important;
}

.mobile-menu .mobile-menubar li a:hover {
    color: var(--color-primary);
}

.mobile-menu .mobile-menubar li:not(.header-button) a {
    display: inline-block;
    padding: 10px 0;
}

.mobile-menu .mobile-menubar li .sub-arrow {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 33px;
    height: 33px;
    position: absolute;
    z-index: 1;
    top: 10px;
    right: 20px;
    color: #fff;
}

.mobile-menu .mobile-menubar li li {
    padding: 0;
}

.menu-open .mobile-menu {
    right: 0;
}

.menu-open .mobile-menu .mobile-menubar li {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    position: relative;
}

.menu-open .mobile-menu .mobile-menubar li:nth-child(2) {
    transition-delay: 0.24s;
}

.menu-open .mobile-menu .mobile-menubar li:nth-child(3) {
    transition-delay: 0.32s;
}

.menu-open .mobile-menu .mobile-menubar li:nth-child(4) {
    transition-delay: 0.40s;
}

.menu-open .mobile-menu .mobile-menubar li:nth-child(5) {
    transition-delay: 0.48s;
}

.menu-open .mobile-menu .mobile-menubar li:nth-child(6) {
    transition-delay: 0.56s;
}

.menu-open .mobile-menu .mobile-menubar li:nth-child(7) {
    transition-delay: 0.57s;
}

.menu-open .mobile-menu .mobile-menubar li:nth-child(8) {
    transition-delay: 0.58s;
}

.menu-open .mobile-menu .mobile-menubar li:nth-child(9) {
    transition-delay: 0.59s;
}


/* ~~ header sticky start ~~ */
@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-sticky .main-header {
    width: 100%;
    background: rgba(0, 0, 0, 0.5) !important;
    box-shadow: 4px 4px 15px 0px rgb(0 0 0 / 10%);
    animation: slide-down 0.5s;
    backdrop-filter: blur(15px);
}

.header-sticky .top-header {
    display: none;
}

/* ~~ header sticky end ~~ */
@media only screen and (max-width: 1699px) {
    .desktop-menu ul li:not(.header-button) a {
        padding: 35px 0;
    }
    .header-right .button_primary{ font-size: 20px; padding: 12px 32px;}
}

@media only screen and (max-width: 1599px) {
    .main-header .container-fluid {
        padding: 0 20px;
    }

    .desktop-menu ul li:not(.header-button) a {}

    .main-header .header-button {
        margin-left: 10px;
    }
}

@media only screen and (max-width: 1399px) {
    .desktop-menu ul li:not(.header-button) a {
        margin: 0 20px;
    }

    .header-right .button_primary {
        font-size: 18px;
    }

}

@media only screen and (max-width: 1199px) {
    .button_primary {
        padding: 12px 35px;
        ;
    }

    .desktop-menu ul li:not(.header-button) a {
        padding: 30px 0;
    }
}

@media only screen and (max-width: 991px) {
    .desktop-menu {
        display: none;
    }

    .hamburger-nav {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .header-right .button_primary {
        font-size: 16px;
        padding: 10px 23px;
    }


    .mobile-menu .logo-wrap a {
        display: inline-block;
        height: 55px;
    }

    .mobile-menu .logo-wrap a img {
        display: block;
        width: auto;
        height: 100%;
    }

    .mobile-menu .sub-menu {
        display: none;
        width: calc(100% - 20px);
        margin-left: auto;
    }

    .mobile-menu .sub-menu li {
        padding: 0;
    }

    .mobile-menu .header-button {
        margin-top: 15px;
    }

    .main-header {
        padding-block: 12px;
    }

}


@media only screen and (max-width: 479px) {

    .header-logo a,
    .mobile-menu .logo-wrap a {
        height: 40px;
    }

    .header-right .button_primary {
        font-size: 14px;
        padding: 7px 8px;
        border-radius: 5px;
    }

    .mobile-menu .mobile-menubar li {
        font-size: 18px;
    }

}




/* ~~ header sticky end ~~ */

/* ~-~-~-~-~-~-~-~-~-~ global adjustments  end ~-~-~-~-~-~-~-~-~-~ */
/* ~-~-~-~-~-~-~-~-~-~~-~-~-~-~-~-~-~-~-~~-~-~-~-~-~-~-~-~-~~-~-~ */

/* HOME PAGE START HERE ********************/
.banner-section {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.banner-section::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0.23) 107.29%);
    z-index: 1;
}

.banner-home {
    min-height: 925px;
}

.banner-info {
    width: 100%;
    padding: 146px 0 0 0;
}

.banner-content-wrap {
    padding-right: 20px;
    padding-block: 30px;
}

.banner-content-wrap h1 {
    letter-spacing: 4%;
}

.banner-content-wrap h1 strong {
    font-size: 72px;
    color: var(--color-primary);
    display: block;
    line-height: 1;
    position: relative;
    padding-bottom: 30px;
}

.banner-content-wrap h1 strong::after {
    content: "";
    position: absolute;
    width: 20%;
    height: 8px;
    background: var(--color-primary);
    left: 0;
    bottom: 0px;
    border-radius: 20px;
}

.banner-list {
    padding-top: 60px;
}

.banner-list li {
    width: 50%;
    position: relative;
    padding-left: 40px;
    padding-right: 10px;
}

.banner-list li:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-image: url('../images/list-check.svg');
    background-repeat: no-repeat;
}

/* HOME PAGE END HERE ********************/

/* ============ ebook-discover-section Start ============ */
.ebook-discover-section {
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: right 75%;
    background-color: var(--color-secondary);
}

.discover-box {
    border: 1px solid var(--bs-white);
    border-radius: 20px;
    overflow: hidden;
    justify-content: center;
}

.discover-item {
    width: 20%;
    text-align: center;
    padding-inline: 15px;
    position: relative;

}

.discover-item:first-child {
    padding-left: 0;
}

.discover-item:last-child {
    padding-right: 0;
}

.discover-item:not(:last-child):after {
    content: "";
    position: absolute;
    width: 1px;
    height: calc(100% - 32px);
    background: var(--color-primary);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.discover-desc {
    height: 100%;
    border-radius: 20px;
    padding: 25px 15px;
    transition: var(--transition-common);
}

.discover-item:hover .discover-desc {
    background: var(--color-tertiary);
}

.discover-desc .icon {
    margin-bottom: 30px;
}

.discover-desc h3 {
    max-width: 180px;
    margin-inline: auto;
    margin-bottom: 10px;
}

/* ============ ebook-discover-section end ============ */


/* ============ exclusive-bonus-section Start ============ */
.exclusive-bonus-section {
    background-repeat: no-repeat;
    background-size: cover;
}

.exclusive-bonus-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(242, 184, 0, 47%);
}

.exclusive-bonus-section .section-title h2 {
    color: var(--bs-white);
}

.exclusive-bonus-section .section-title h2 strong {
    color: var(--bs-black);
}


.bonus-card {
    background: var(--color-tertiary);
    border: 1px solid var(--color-primary);
    border-radius: 10px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 18px;
    height: 100%;
    transition: var(--transition-common);
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--bs-black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-content {
    width: calc(100% - 88px);
}

.bonus-content h4 {
    color: var(--color-primary);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* ============ exclusive-bonus-section end ============ */

/* ============ dj-cta-section start ============ */
.dj-cta-section {
    background-color: var(--bs-black);
    overflow: hidden;
}

.dj-cta-section .section-title p {
    font-size: var(--f-size-M);
}

.cta-features {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: var(--gap-60);
}

.cta-features span {
    color: var(--color-primary);
    font-size: var(--f-size-M);
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-features span:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 28px;
    background: var(--color-primary);
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.cta-features i {
    margin-right: 8px;
}

.cta-btn {
    display: inline-block;
    background: var(--color-primary);
    color: var(--bs-black);
    text-decoration: none;
    font-weight: var(--fw-bold);
    font-size: var(--f-size-M);
    padding: 25px 75px;
    border-radius: 10px;
    line-height: 1.3;
    width: 465px;
    box-shadow: 0px 8px 60px 0px #F2B8004D;
    transition: var(--transition-common);
}

.cta-btn img {
    margin-right: 10px;
    transition: var(--transition-common);
}

.cta-btn:hover {
    transform: translateY(-3px);
}

.cta-btn i {
    margin-right: 10px;
}

.cta-btn:hover img {
    filter: brightness(0) invert(1);
}

/* ============ dj-cta-section end ============ */

/* ============ testimonial-section start ============ */
.testimonial-section {
    background-color: var(--color-secondary);
    background-repeat: no-repeat;
    background-position: right -50%;

}

.testimonial-top {
    margin-bottom: 40px;
}

.testimonial-top p {
    font-weight: var(--fw-regular);
}

.testimonial-slider .slide-item {
    padding: 0 15px;
}

.testimonial-card {
    border: 1px solid var(--bs-white);
    border-radius: 20px;
    text-align: center;
    background: var(--color-tertiary);
    padding: 60px 23px;
}

.testimonial-card p {
    font-weight: var(--fw-regular);
}

.rating {
    gap: 8px;
    margin-bottom: 25px;
}

.rating li i {
    font-size: 30px;
    color: var(--color-primary);
}

.author {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: left;
}

.author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    width: calc(100% - 72px);
}

.author h4 {
    font-family: var(--ff-base) !important;
    color: var(--bs-white);
    margin-bottom: 5px;
}

.author p {
    color: var(--color-primary);
}

.slick-track {
    display: flex !important;
}

.slick-slide {
    height: inherit !important;
}

.slick-slide>div {
    height: 100%;
}

@media(max-width:767px) {
    .testimonial-card {
        min-height: auto;
        padding: 30px 20px;
    }

}

/* ============ testimonial-section end ============ */


/* ============ FOOTER PART START HERE  ============ */
.dj-footer {
    position: relative;
    background: var(--bs-black);
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: left 90%;
}

.footer-logo {
    display: inline-block;
    height: 60px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100%;
}

.footer-info p {
    font-size: 16px;
    max-width: 655px;
    font-weight: var(--fw-regular);
}

.footer-menu {
    display: flex;
    justify-content: flex-end;
    gap: 55px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu a {
    font-size: var(--f-size-S);
    color: var(--bs-white);
    font-weight: var(--fw-medium);
    text-decoration: none;
    transition: var(--transition-common);
}

.footer-menu a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(242, 184, 0, 0.5);
    margin-top: 30px;
    padding-block: 30px;
    text-align: center;
}

.footer-bottom p {
    font-weight: var(--fw-regular);
}

/* ============ FOOTER PART END HERE  ============ */

/* inner page styles */
.banner-inner {
    min-height: 750px;
}

.banner-inner .banner-content-wrap p {
    max-width: 920px;
}

/* ============ blog-listing page start ============ */

.learning-hub-section {
    background: var(--color-secondary);
    overflow: hidden;
}

.learning-hub-section::before {
    content: '';
    position: absolute;
    left: -350px;
    bottom: -100px;
    width: 750px;
    height: 750px;
    background: radial-gradient(circle,
            rgba(255, 193, 7, .35) 0%,
            transparent 70%);
}

.learning-hub-section::after {
    content: '';
    position: absolute;
    right: -180px;
    top: -180px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle,
            rgba(128, 0, 128, .45) 0%,
            transparent 70%);
}

.blog-card {
    background: var(--bs-black);
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: var(--transition-common);
    padding: 20px 20px 30px;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    display: block;
    position: relative;
    padding-bottom: 57%;
    border-radius: 20px;
    overflow: hidden;
}

.blog-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-common);
}

.blog-image:hover img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px 0 0;
}

.blog-content h3 {
    font-family: var(--ff-base) !important;
    color: var(--bs-white);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.read-more {
    color: var(--color-primary);
    text-decoration: none;
    font-size: var(--f-size-S);
    font-weight: var(--fw-bold);
}

.read-more svg {
    margin-left: 10px;
    transition: var(--transition-common);
}

.read-more:hover {
    color: var(--color-white);
}

.read-more:hover svg {
    margin-left: 15px;
}

.blog-footer span {
    color: var(--color-primary);
    font-size: var(--f-size-S);
}

.load-more .button_primary {
    box-shadow: 0px 8px 60px 0px rgba(242, 184, 0, 0);
    outline: none;
    border: none;
}

.load-more .button_primary:hover {
    box-shadow: 0px 8px 60px 0px rgba(242, 184, 0, 0.3);
}



/* ============ blog-listing page End ============ */

/* ============ About page start ============ */
.future-dj-section {
    background: var(--color-secondary);
}


.future-card {
    position: relative;
    background: var(--color-tertiary);
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: var(--transition-common);
}

.future-dj-item {
    padding-inline: 12px;
}

.future-image {
    padding-bottom: 55.3%;
    border-radius: 20px;
    border-bottom: 1px solid var(--color-primary);
}

.future-content {
    padding: 0 30px 20px;
    margin-top: -30px;
    position: relative;
}

.future-content h4 {
    font-family: var(--ff-base) !important;
    font-weight: var(--fw-semibold);
}

.future-number {
    font-size: var(--f-size-M);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-black);
    color: var(--bs-white);
    font-weight: var(--fw-regular);
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    margin-bottom: 10px;
}

/* ====== Journey Section ====== */
.journey-section {
    background-color: var(--bs-black);
    background-repeat: no-repeat;
    background-position: right 150%;
}

.journey-image {
    padding-bottom: 58%;
    border-radius: 20px;
}


.mission-vision-wrapper {
    background: var(--color-tertiary);
    border-radius: 30px;
    margin-top: 80px;
    overflow: hidden;
    padding: 35px 100px;
}

.mission-box {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px 0;
    height: 100%;
}

.mission-box .content {
    width: calc(100% - 150px);

}

.mission-box h3 {
    color: var(--bs-white);
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: var(--fw-regular);
}

.mission-box h3 strong {
    color: var(--color-primary);
    font-weight: var(--fw-regular);
}


.col-md-6:first-child .mission-box {
    padding-right: 145px;
    border-right: 1px solid var(--color-primary);
}

.col-md-6:last-child .mission-box {
    padding-left: 145px;
}

/* ============= DJ School Page Start ============= */
.learning-path-section {
    background-color: var(--color-secondary);
    background-repeat: no-repeat;
    background-position: right 100%;
}

.learning-image {
    padding-bottom: 60%;
    border-radius: 20px;
}

.learning-content h2 {
    margin-bottom: 10px;
}

.feature-item {
    height: 100%;
    border-right: 1px solid rgba(238, 238, 238, 0.5);
    padding-right: 10px;
}

.learning-content .col-md-6:nth-child(even) .feature-item {
    border-right: 0;
    padding-right: 0;
}

.feature-item h4 {
    font-family: var(--ff-base) !important;
    font-weight: var(--fw-bold);
    color: var(--color-primary);
}

.learning-content .row {
    row-gap: 30px;
    margin-top: 30px;
}

.learning-content {
    padding-left: 5px;
}

/* =========  */
.discover-section {
    background: var(--color-tertiary);
}

.discover-card {
    background: var(--bs-black);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    height: 100%;
    transition: var(--transition-common);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.discover-card:hover {
    transform: translateY(-5px);
}

.discover-card .icon {
    margin-bottom: 30px;
}

.discover-card h3 {
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* ========  */
.book-section {
    background-color: var(--color-secondary);
    background-repeat: no-repeat;
    background-position: left 0;
}

.book-inner {
    background-color: var(--color-tertiary);
    border-radius: 30px;
    padding: 60px;
}

.book-inner .calendly-info img {
    border-radius: 30px;
}

.book-inner .section-title {
    padding-right: 60px;
}

.calendly-info {
    height: 100%;
    display: flex;
    align-items: center;
}

.calendly-info .calendly-inline-widget {
    width: 100%;
    position: relative;
    padding-bottom: 138% !important;
}

.calendly-info .calendly-inline-widget iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}


/* ============= DJ School Page End ============= */

/* ============= Blog-Details Page Start ============= */
.modal-body h4 {
    color: var(--bs-black);
    letter-spacing: 1px;
}

.no-banner {
    background-color: var(--color-secondary);
}

.no-banner .main-header {
    border-bottom: 1px solid #AAAAAA;
}

.no-banner main {
    padding-top: 146.19px;
}

.blog-details-section {
    background-repeat: no-repeat;
    background-position: right 105%;
}

.blog-details-section h1 {
    letter-spacing: 3px;
    font-weight: var(--fw-regular);
}

.blog-details-section h1 strong {
    font-weight: var(--fw-regular);
    color: var(--color-primary);
}

.blog-left-bottom-info {
    padding-right: 110px;
}

.blog-left-top-info ul {
    column-gap: 80px;
    row-gap: 20px;
    margin-bottom: 30px;
}

.blog-left-top-info ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-left-top-info ul li span {
    line-height: 1.1;
}

.blog-left-top-info .image {
    padding-bottom: 50%;
    border-radius: 20px;
    margin-bottom: 60px;
}

.blog-details-list {
    padding-top: 20px;
}

.blog-details-list h3,
.blog-left-bottom-info h3 {
    letter-spacing: 1px;
    color: var(--color-primary);
}

.blog-details-list hr {
    border-color: #eeeeee9c;
    margin-block: 25px;
}

.blog-details-box:last-child {
    border-bottom: 0;
}

.verdict-box {
    background-color: var(--color-tertiary);
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 30px;
    margin-top: 20px;
}

.icon-container {
    width: 115px;
    height: 115px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-area {
    width: calc(100% - 133px);
}

.content-area h3 {
    color: var(--color-primary);
    margin-bottom: 10px;
}

.content-area p {
    font-size: var(--f-size-M);
}

.rating-container {
    gap: 10px;
}

.rating-container h4 {
    font-family: var(--ff-base) !important;
    font-weight: var(--fw-regular);
    margin-bottom: 0;
}


.rating-container .stars {
    padding: 0;
    margin-bottom: 0;
}

.rating-container .stars li {
    line-height: 1;
}

.rating-container .stars i {
    font-size: 24px;
    color: var(--color-primary);
}

/* ======  */

.dj-hub {
    text-align: center;
    padding: 60px 20px 0;
}

.blog-left-info {
    border-right: 1px solid rgba(170, 170, 170, 0.5);
    padding-right: 30px;
}

.dj-hub .section-title p {
    font-size: var(--f-size-M);
}

.dj-hub ul {
    gap: 30px;
    padding-top: 30px;
    margin-bottom: 20px;
}

.dj-hub ul li a {
    font-size: var(--f-size-M);
    font-weight: var(--fw-semibold);
    color: var(--bs-black);
    min-width: 390px;
    border-radius: 10px;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 7px 30px 0px rgba(242, 184, 0, 0);
    gap: 20px;
    row-gap: 5px;
    padding: 14px;
    flex-wrap: wrap;
}
.dj-hub ul li a span{ display: block; width: 100%; font-size: 16px;}

.dj-hub ul li a:hover {
    transform: translateY(-5px);
    box-shadow: 0px 7px 30px 0px rgba(242, 184, 0, 0.3);
}

.dj-hub ul li:last-child a {
    background-color: #EDEDED;
}


/* Section Titles */
.sidebar-widget h2 {
    letter-spacing: 1px;
    margin-bottom: 30px;
    padding-bottom: 5px;
    border-bottom: 1px solid #AAAAAA;
    position: relative;
}

.sidebar-widget h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 30%;
    height: 1px;
    background: var(--color-primary);
}

.author-wrap {
    border-bottom: 1px solid #AAAAAA;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.author-box {
    text-align: center;
}

.author-box .author-icon {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-box .author-icon-desc {
    width: calc(100% - 115px);
    text-align: start;
    padding-left: 30px;
}

.author-box .author-icon-desc h4 {
    color: var(--color-primary);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.author-box .author-icon-desc .learn-more {
    font-size: var(--f-size-S);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.author-box .author-icon-desc .learn-more:hover {
    color: var(--bs-white);
}


.related-posts li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 30px;
}

.related-posts li::before {
    content: "";
    width: 18px;
    height: 18px;
    background: var(--color-primary);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

.related-posts a {
    font-size: var(--f-size-M);
    font-weight: var(--fw-semibold);
    color: #fff;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.related-posts a:hover {
    color: var(--color-primary);
}

.related-posts .post-date {
    font-size: var(--f-size-S);
    color: var(--color-primary);
}

.sidebar-widget .modal-body {
    height: 380px;
    overflow-y: auto;
}

/* CTA Card */
.cta-card {
    border: 1px solid var(--color-primary);
    border-radius: 10px;
    padding: 30px 20px;
    margin-top: 25px;
    background: var(--color-tertiary);
}

.cta-card h3 {
    font-size: 30px;
    max-width: 305px;
    margin: 0 auto 30px;
}

.cta-card h3 strong {
    font-weight: var(--fw-regular);
    color: var(--color-primary);
}


.book-img {
    max-width: 258px;
    margin: 0 auto 20px;
    display: block;
}

.feature-bottom p {
    font-size: var(--f-size-M);
    margin-bottom: 30px;
}

.feature-list {
    padding-bottom: 50px;
}

.feature-list li {
    position: relative;
    font-size: var(--f-size-M);
    padding-left: 40px;
    margin-bottom: 30px;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list li:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-image: url('../images/list-check.svg');
    background-repeat: no-repeat;
}

.sidebar-widget .cta-btn {
    width: 100%;
}

.download-text {
    font-size: var(--f-size-S);
    display: inline-block;
    color: var(--bs-white);
    margin-top: 10px;
    pointer-events: none;
}

/* .download-text:hover {
    color: var(--color-primary);
} */


/* ========== Common page =========== */
.common-page {
    min-height: 400px;
    display: flex;
    align-items: center;
    background-color: var(--color-secondary);
}

.errorimg img {
    width: 300px;
    margin-bottom: 40px;
}

.common-page .button_primary {
    box-shadow: 0px 8px 60px 0px rgba(242, 184, 0, 0);
}

.common-page .button_primary:hover {
    box-shadow: 0px 8px 60px 0px rgba(242, 184, 0, 0.3);
}


/* ========= Responsive Start ========= */
@media only screen and (max-width: 1699px) {
    .banner-inner {
        min-height: 560px;
    }

    .banner-info {
        padding: 100px 0 0 0;
    }

    .no-banner main {
        padding-top: 100px;
    }

    .banner-content-wrap h1 strong {
        font-size: 62px;
    }

    .author-box .author-icon {
        width: 85px;
        height: 85px;
    }

    .author-box .author-icon img {
        height: 50px;
    }

    .blog-details-section h1 {
        font-size: 70px;
    }

    .blog-left-top-info ul {
        column-gap: 40px;
    }

    .sidebar-widget .cta-btn {
        padding: 20px 25px;
    }

    .col-md-6:first-child .mission-box {
        padding-right: 45px;
    }

    .col-md-6:last-child .mission-box {
        padding-left: 45px;
    }

    .mission-vision-wrapper {
        padding: 35px 60px;
    }


}

@media only screen and (max-width: 1599px) {
    .banner-home {
        min-height: 755px;
    }

    .banner-content-wrap h1 strong {
        font-size: 45px;
    }

}

@media only screen and (max-width: 1399px) {
    .banner-list {
        padding-top: 30px;
    }

    .banner-list li:after {
        width: 25px;
        height: 25px;
        background-size: contain;
    }

    .banner-list li {
        padding-left: 35px;
    }

    .banner-list {
        padding-top: 20px;
        row-gap: 15px !important;
    }

    .footer-menu {
        gap: 30px;
    }

    /* ============ Inner Page Start =========== */
    .banner-inner {
        min-height: 520px;
    }

    .blog-details-section h1 {
        font-size: 60px;
    }

    .blog-left-top-info ul {
        column-gap: 15px;
    }

    .blog-left-top-info ul li {
        font-size: 16px;
    }

    .blog-left-top-info .image {
        margin-bottom: 30px;
    }

    .icon-container {
        width: 95px;
        height: 95px;
    }

    .icon-container img {
        width: 40px;
    }

    .content-area {
        width: calc(100% - 113px);
    }

    .sidebar-widget h2 {
        font-size: 45px;
    }

    .author-box .author-icon-desc {
        width: calc(100% - 85px);
        padding-left: 20px;
    }

    .related-posts a {
        font-size: 20px;
    }

    .related-posts li {
        margin-bottom: 20px;
    }

    .book-img {
        max-width: 200px;
    }

    .feature-bottom p {
        font-size: 20px;
    }

    .feature-list li {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .sidebar-widget .cta-btn {
        font-size: 18px;
    }

    .dj-hub ul li a {
        min-width: 290px;
    }

    .mission-box {
        gap: 20px;
    }

    .mission-box .icon {
        width: 80px;
    }

    .mission-box .content {
        width: calc(100% - 100px);
    }

    .mission-vision-wrapper {
        padding: 25px 30px;
        margin-top: 50px;
    }

    .future-content {
        padding: 0 20px 20px;
    }

    .future-number {
        width: 50px;
        height: 50px;
    }

    .future-image {
        padding-bottom: 68.3%;
    }

    .discover-card {
        padding: 30px 25px;
    }

    .discover-card .icon img {
        width: 50px;
    }

    .book-inner {
        padding: 40px;
    }


}

@media only screen and (max-width: 1199px) {
    .banner-home {
        min-height: 635px;
    }

    .banner-content-wrap h1 strong {
        font-size: 40px;
    }

    .banner-info {
        padding: 85px 0 0 0;
    }

    .discover-item {
        width: 50%;
        padding: 10px;
    }

    .discover-item:first-child,
    .discover-item:last-child {
        padding-left: 10px;
        padding-right: 10px;
    }

    .discover-item:not(:last-child):after {
        display: none;
    }

    .discover-desc {
        border: 1px solid var(--color-primary);
    }

    .bonus-card {
        flex-wrap: wrap;
    }

    .bonus-content {
        width: 100%;
    }

    .bonus-card {
        padding: 20;
    }

    .cta-btn {
        padding: 18px 45px;
        width: 400px;
    }

    .discover-box {
        border: 0;
        justify-content: center;
    }

    .testimonial-card {
        padding: 40px 15px;
    }

    .testimonial-slider .slide-item {
        padding: 0 12px;
    }

    .footer-bottom {
        margin-top: 20px;
        padding-block: 20px;
    }

    /* ========= Inner Page Start ========== */
    .no-banner main {
        padding-top: 87px;
    }

    .banner-inner {
        min-height: 450px;
    }

    .blog-content h3 {
        font-size: 22px;
    }

    .blog-card {
        padding: 15px 15px 20px;
    }

    .blog-details-section h1 {
        font-size: 50px;
    }

    .blog-left-top-info ul li {
        font-size: 14px;
    }

    .blog-left-top-info ul li span {
        width: 14px;
    }

    .dj-hub ul {
        gap: 15px;
    }

    .dj-hub ul li a {
        min-width: 270px;
    }

    .sidebar-widget h2 {
        font-size: 35px;
    }

    .author-box .author-icon {
        width: 65px;
        height: 65px;
    }

    .author-box .author-icon img {
        height: 35px;
    }

    .author-box .author-icon-desc {
        width: calc(100% - 65px);
    }

    .author-wrap {
        margin-bottom: 30px;
    }

    .related-posts a {
        font-size: 18px;
    }

    .related-posts li {
        padding-left: 20px;
    }

    .related-posts li::before {
        width: 14px;
        height: 14px;
        top: 6px;
    }

    .feature-bottom p {
        margin-bottom: 20px;
    }

    .feature-list li:after {
        width: 20px;
        height: 20px;
        background-size: contain;
        top: 5px;
    }

    .feature-list li {
        padding-left: 30px;
    }

    .sidebar-widget .cta-btn {
        padding: 14px 15px;
        font-size: 16px;
    }

    .cta-btn img {
        width: 25px;
    }

    .learning-path-row {
        row-gap: 30px;
    }

    .discover-card {
        padding: 20px 15px;
    }

    .book-inner .section-title {
        padding-right: 20px;
    }


}

@media only screen and (max-width: 991px) {
    .banner-info .row {
        flex-direction: column-reverse;
    }

    .banner-book-image {
        justify-content: center !important;
        margin-top: 20px;
    }

    .banner-book-image img {
        width: 250px;
    }

    .banner-content-wrap {
        padding-right: 0;
    }

    .exclusive-bonus-section .row {
        row-gap: 24px;
    }

    .cta-features {
        row-gap: 15px;
    }

    .cta-btn {
        width: 340px;
        padding: 14px 35px;
    }

    .footer-info {
        text-align: center;
    }

    .footer-menu {
        justify-content: center;
    }

    /* ========= Inner Responsive ========= */
    .banner-inner {
        min-height: 380px;
    }

    .blog-left-info {
        border-right: 0;
        padding-right: 0;
    }

    .blog-left-bottom-info {
        padding-right: 0;
    }

    .sidebar-widget {
        padding-top: 40px;
    }

    .mission-box {
        flex-wrap: wrap;
    }

    .mission-box .content {
        width: 100%;
    }

    .col-md-6:last-child .mission-box {
        padding-left: 35px;
    }

    .col-md-6:first-child .mission-box {
        padding-right: 35px;
    }

    .mission-box .icon {
        width: 60px;
    }

    .discover-section .row {
        row-gap: 24px;
    }

    .book-inner .row {
        flex-direction: column-reverse;
    }

    .book-inner .calendly-info {
        text-align: center;
        margin-bottom: 30px;
    }

    .book-inner .section-title {
        padding-right: 0;
        text-align: center;
    }


}

@media only screen and (max-width: 767px) {
    .section-title h2 {
        letter-spacing: 1px;
    }

    .banner-book-image img {
        width: 190px;
    }

    .banner-content-wrap h1 strong {
        font-size: 28px;
    }

    .banner-content-wrap h1 strong {
        padding-bottom: 20px;
    }

    .banner-content-wrap h1 strong::after {
        height: 5px;
    }

    .banner-list {
        padding-top: 10px;
        row-gap: 10px !important;
    }

    .banner-list li:after {
        width: 20px;
        height: 20px;
        top: 5px;
    }

    .banner-list li {
        padding-left: 30px;
    }

    .discover-desc .icon {
        margin-bottom: 10px;
    }

    .discover-desc .icon img {
        width: 40px;
    }

    .bonus-content h4 {
        letter-spacing: 1px;
    }

    .cta-btn {
        width: 320px;
        padding: 14px 25px;
    }

    /* ========== Inner Page Start ========== */
    .banner-inner {
        min-height: 320px;
    }

    .blog-details-section h1 {
        font-size: 36px;
    }

    .blog-left-top-info ul {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .blog-details-box {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .verdict-box {
        padding: 20px;
    }

    .dj-hub ul {
        flex-wrap: wrap;
    }

    .col-md-6:first-child .mission-box {
        padding-right: 0;
        border-right: 0;
        border-bottom: 1px solid var(--color-primary);
    }

    .col-md-6:last-child .mission-box {
        padding-left: 0;
    }

    .feature-item {
        border-right: 0;
    }

    .book-inner {
        padding: 30px;
    }


}

@media only screen and (max-width: 479px) {
    .banner-home h1 {
        font-size: 30px;
    }

    .banner-content-wrap h1 strong {
        font-size: 24px;
    }

    .banner-book-image img {
        width: 160px;
    }

    .banner-list {
        row-gap: 10px !important;
    }

    .banner-list li {
        width: 100%;
    }

    .discover-item {
        width: 100%;
    }

    .cta-features span:not(:last-child)::after {
        display: none;
    }

    .cta-btn {
        width: 290px;
        padding: 10px 18px;
    }

    .rating {
        gap: 4px;
        margin-bottom: 15px;
    }

    .rating li i {
        font-size: 25px;
    }

    .testimonial-card {
        padding: 20px 15px;
    }

    .author img {
        width: 50px;
        height: 50px;
    }

    .author-info {
        width: calc(100% - 62px);
    }

    .footer-bottom {
        margin-top: 10px;
        padding-block: 10px;
    }

    .footer-menu {
        gap: 20px;
    }

    .footer-bottom p {
        font-size: 14px;
    }

    /* ========= Inner Responsive ========== */
    .blog-details-section {
        padding-top: 40px;
    }

    .no-banner main {
        padding-top: 65px;
    }

    .blog-left-top-info .image {
        padding-bottom: 64%;
    }

    .verdict-box {
        flex-wrap: wrap;
    }

    .content-area {
        width: 100%;
    }

    .icon-container {
        width: 75px;
        height: 75px;
    }

    .related-posts a {
        font-size: 16px;
    }

    .related-posts li {
        margin-bottom: 15px;
    }

    .mission-vision-wrapper {
        padding: 0 20px;
        margin-top: 50px;
    }

    .book-inner {
        padding: 20px;
    }


}