a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

:root {
    overflow-x: hidden;
}

.header {
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 999;
    border: none;
    outline: none;
    background: #fff;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.17);
}

.header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 100%;
    height: auto;
}

.header .navbar {
    width: 100%;
    padding: 0;
    height: auto;
}

.header .menu {
    padding-left: 0;
}

.header .menu>.menu-item {
    position: relative;
    display: inline-block;
    margin: 8px;
}

.header .menu>.menu-item>a {
    display: block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    line-height: inherit;
    padding: 1rem 0;
    border: none;
    outline: none;
    color: #000;
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
    transition: all 0.35s ease;
}

.header .menu>.menu-item>a .expand {
    position: relative;
    display: inline-block;
    height: 0.75rem;
    width: 0.65rem;
    margin-left: 0.35rem;
    border: none;
    outline: none;
    pointer-events: none;
}

.header .menu>.menu-item>a .expand:before,
.header .menu>.menu-item>a .expand:after {
    position: absolute;
    box-sizing: inherit;
    content: "";
    left: 50%;
    top: 50%;
    width: 100%;
    height: 2px;
    background: #888;
    transform: translate(-50%, -50%);
    transition: all 0.35s ease;
}

.header .menu>.menu-item:hover>a {
    color: #000;
}

.header .menu>.menu-item:hover>a .expand::before,
.header .menu>.menu-item:hover>a .expand::after {
    background: #000;
}

.header .menu>.menu-item>a .expand::after {
    transform: translate(-50%, -50%) rotate(-90deg);
}

.header .menu>.menu-item>.sub-menu>.menu-item>a:hover {
    color: #ffb300;
}

.header .menu>.menu-item>.sub-menu {
    position: absolute;
    right: -10rem;
    top: 100%;
    width: 15rem;
    height: auto;
    padding: 0.75rem 0;
    border: none;
    outline: none;
    opacity: 0;
    visibility: hidden;
    border-top: 3px solid #ffb300;
    background: #fff;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.17);
    transform: translateY(1rem);
    transition: all 0.35s ease;
}

.header .menu>.menu-item>.sub-menu>.menu-item {
    display: block;
}

.header .menu>.menu-item>.sub-menu>.menu-item>a {
    display: block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    line-height: inherit;
    padding: 1rem 1.25rem;
    color: #000;
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
    transition: all 0.35s ease;
}

.header .menu>.menu-item>.sub-menu>.menu-item>a img {
    margin-right: 6px;
}

.header .opened-menu {
    position: relative;
    display: none;
    cursor: pointer;
    width: 2rem;
    height: 1rem;
    border: none;
    outline: none;
    opacity: 0;
    visibility: hidden;
    background: none;
    transform: rotate(0deg);
    transition: all 0.35s ease;
}

.header .opened-menu span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 0.25rem;
    background: #000;
    transform: rotate(0deg);
    transition: all 0.25s ease;
}

.header .opened-menu span:nth-child(1) {
    top: 0;
}

.header .opened-menu span:nth-child(2),
.header .opened-menu span:nth-child(3) {
    top: 0.5rem;
}

.header .opened-menu span:nth-child(4) {
    top: 1rem;
}

.header .closed-menu {
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    outline: none;
    background: none;
}

.header .closed-menu img.closed-icon {
    display: block;
    width: 1rem;
    height: auto;
}

.header .overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.6);
    transition: all 0.35s ease;
}

.fixed-icon {
    position: fixed;
    bottom: 40%;
    left: 5px;
    z-index: 3;
}

.whatsapp {
    position: fixed;
    bottom: 120px;
    right: 20px;
    z-index: 3;
}

.whatsapp a {
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 58px;
    background: #45c153;
    display: block;
    color: #fff;
    margin-bottom: 1px;
    border-radius: 100%;
    font-size: 30px;
}

.fixed-icon a {
    text-align: center;
    display: block;
    color: #000;
    
}

.fixed-icon a .svg-inline--fa {
    height: 30px;
    width: 30px;
    line-height: 30px;
    color: #fff;
    padding: 10px;
}

.fixed-icon a .fa-facebook-f {
    background: #1873eb;
}

.fixed-icon a .fa-youtube {
    background: #f70000;
}

.fixed-icon a .fa-instagram {
    background: linear-gradient(to top, #5662ce, #f03397, #fea622);
}

.fixed-icon a .fa-twitter {
    background: #01aaec;
}

@media only screen and (min-width: 992px) {
    .header .menu>.menu-item-has-children:hover>.sub-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .header .menu>.menu-item-has-children:hover>a .expand::after {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@media only screen and (max-width: 991px) {
    .header .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    .header .navbar {
        position: fixed;
        top: 0;
        left: -18rem;
        width: 18rem;
        height: 100%;
        padding: 1rem 0;
        z-index: 999;
        opacity: 0;
        overflow-y: auto;
        visibility: hidden;
        background: #fff;
        box-shadow: 0 3px 25px rgba(0, 0, 0, 0.17);
        transition: all 0.5s ease;
    }
    .header .navbar.active {
        left: 0rem;
        opacity: 1;
        visibility: visible;
        display: block;
    }
    .header .navbar.active .brand {
        padding-bottom: 1rem;
        display: block;
    }
    .header .navbar::-webkit-scrollbar {
        width: 5px;
    }
    .header .navbar::-webkit-scrollbar-thumb {
        border-radius: 1rem;
        background: #e6e6e6;
        box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.12);
    }
    .header .navbar .btn1 {
        margin: 15px 15px;
    }
    .header .menu {
        width: 100%;
        height: auto;
        margin-top: 0;
    }
    .header .menu>.menu-item {
        display: block;
        margin: 0;
    }
    .header .menu>.menu-item-has-children>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header .menu>.menu-item>a {
        padding: 0.75rem 1rem;
        color: #000;
        border-bottom: 1px solid #eee;
    }
    .header .menu>.menu-item:first-child>a {
        border-top: 1px solid #f2f2f2;
    }
    .header .menu>.menu-item>a .expand::before,
    .header .menu>.menu-item>a .expand::after {
        background: #000;
    }
    .header .menu>.menu-item-has-children.active>a .expand:after {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    .header .menu>.menu-item>.sub-menu {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-height: 0;
        padding: 0px;
        border: none;
        outline: none;
        opacity: 1;
        overflow: hidden;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        transform: translateY(0px);
    }
    .header .menu>.menu-item>.sub-menu>.menu-item>a {
        padding: 0.75rem 2rem;
        color: #000;
        border-bottom: 1px solid #f2f2f2;
    }
    .header .opened-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    .header .closed-menu {
        position: absolute;
        display: flex;
        top: 1rem;
        right: 0.5rem;
    }
    .header .menu>.menu-item>.sub-menu {
        right: 0;
    }
    .header .menu>.menu-item>.sub-menu .menu-item {
        float: none;
        width: 100%;
    }
    .header .menu>.menu-item>.sub-menu .menu-item a {
        padding: 15px;
    }
}

/* @font-face {
    font-family: "Engagement", cursive;
    src: url(../fonts/Rockybilly.ttf);
} */

@import url('https://fonts.googleapis.com/css2?family=Engagement&display=swap');

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.topbar {
    background: #000;
    padding: 7px 0;
    font-family: "Nunito", sans-serif;
    color: #fff;
    font-size: 14px;
}

.topbar p {
    margin: 0;
}

.topbar a {
    color: #fff;
}

.topbar .btn {
    background: #ffb300;
    padding: 2px 15px;
    margin: 0 15px;
    font-size: 14px;
    color: #000;
}

.topbar .top-icon .svg-inline--fa {
    margin-left: 16px;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}


/* LOADER 4 */

.loader {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto;
    text-align: center;
}

#loader-6 {
    top: 40px;
    left: -2.5px;
}

#loader-6 span {
    display: inline-block;
    width: 5px;
    height: 20px;
    background-color: #ffb300;
}

#loader-6 span:nth-child(1) {
    animation: grow 1s ease-in-out infinite;
}

#loader-6 span:nth-child(2) {
    animation: grow 1s ease-in-out 0.15s infinite;
}

#loader-6 span:nth-child(3) {
    animation: grow 1s ease-in-out 0.3s infinite;
}

#loader-6 span:nth-child(4) {
    animation: grow 1s ease-in-out 0.45s infinite;
}

@keyframes grow {
    0%,
    100% {
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        transform: scaleY(1);
    }
    50% {
        -webkit-transform: scaleY(1.8);
        -ms-transform: scaleY(1.8);
        -o-transform: scaleY(1.8);
        transform: scaleY(1.8);
    }
}

.header .menu {
    margin-bottom: 0;
}

.header .menu .menu-item a {
    color: #000 !important;
    font-weight: 600;
    color: #4b4943;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    line-height: 36px;
    font-size: 14px;
    line-height: 36px;
}

.header .menu .menu-item .sub-menu .menu-item a {
    font-weight: 600;
    color: #000 !important;
    color: #4b4943;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    line-height: 36px;
    line-height: 24px;
    font-size: 14px;
}

.header .btn1 {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    color: #4b4943;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    line-height: 36px;
    padding: 5px 30px !important;
    line-height: 30px !important;
    color: #ffb300 !important;
    border-radius: 0px;
    border: 3px solid #ffb300 !important;
}

.brand.phone {
    display: none;
}

.banner .carousel-item {
    height: 800px;
    background-position: 50% 50% !important;
    background-size: 1920px 850px !important;
    background-size: cover !important;
}

.banner .carousel-indicators button {
    height: 15px;
    width: 15px;
    border-radius: 100px;
    border: 0;
}

.banner .carousel-caption {
    top: 0;
    bottom: 0;
    text-align: left;
    left: 5%;
    width: 50%;
}

.banner .carousel-caption h1 {
    color: #000;
    font-size: 72px;
    font-family: "Nunito", sans-serif;
    font-weight: 200;
    margin-bottom: 25px;
}

.banner .carousel-caption p {
    font-family: "Nunito", sans-serif;
    color: #000;
    margin-bottom: 25px;
}

.banner .carousel-caption .btn {
    color: #000;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    background: #ffb300;
    min-width: 150px;
    height: 50px;
    padding: 12px 25px;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.17);
}

.banner .carousel-control-next,
.banner .carousel-control-prev {
    width: 50px;
}

.about-home {
    padding: 70px 0;
    position: relative;
}

.about-home .about {
    position: relative;
    padding: 70px;
    height: 700px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-home .about .about-img {
    background-position: 50% 50% !important;
    background-size: 100% 736px !important;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: 0.2;
}

.about-home h2 {
    color: #000;
    font-size: 48px;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    margin-bottom: 25px;
}

.about-home h3 {
    font-family: "Engagement", cursive;
    color: #ffb300;
    font-size: 42px;
   
    margin-bottom: 45px;
    line-height: 60px;
}

.about-home img {
    border-radius: 10px;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.17);
}

.about-home p {
    color: #4b4943;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    line-height: 36px;
    width: 70%;
    margin: auto;
    margin-bottom: 45px;
    letter-spacing: 1px;
}

.about-home .btn {
    color: #000;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    background: #ffb300;
    min-width: 150px;
    height: 50px;
    padding: 12px 25px;
}

.container-fluid,
.container {
    position: relative;
    z-index: 1;
}

.exclusive {
    padding: 70px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.exclusive .exclusive-bg {
    background-position: 50% 50% !important;
    background-size: cover !important;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0.2;
    filter: grayscale(1) blur(5px);
}

.exclusive h4 {
    font-size:60px;
    font-family: "Engagement", cursive;
    color: #ffb300;
    line-height: 82px;
     
}

.exclusive h4 span {
    color: #fff;
    display: block;
    /* font-size: 30px; */
}

.exclusive h5 {
    color: #fff;
    font-family: "Nunito", sans-serif;
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 30px;
}

.exclusive p {
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
}

.exclusive p strong {
    font-size: 24px;
    font-weight: 200;
    letter-spacing: 0.2px;
    line-height: 32px;
    margin-bottom: 30px;
    display: block;
}

.exclusive .btn {
    color: #000;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    background: #ffb300;
    min-width: 150px;
    height: 50px;
    padding: 12px 25px;
    margin-bottom: 0px;
    width: 180px;
    font-size: 18px;
    margin-right: 15px;
}

.exclusive .subscribe {
    background: none;
    color: #fff;
    border: 2px solid #ffb300;
    width: 207px;
}

.exclusive .media-icon a {
    color: #fff;
    margin: 0 12px;
}

.exclusive .media-icon a .svg-inline--fa {
    font-size: 34px;
}

.exclusive .media-icon a:hover {
    color: #ffb300;
}

.latest-book {
    padding: 100px 0 130px 0;
    position: relative;
    overflow: hidden;
}

.latest-book .latest-book-bg {
    background-position: 50% 50% !important;
    background-size: cover !important;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.07;
    mix-blend-mode: luminosity;
}

.latest-book h6 {
    font-family: "Engagement", cursive;
    font-size: 48px;
    margin-bottom: 50px;
   
    text-align: center;
    color: #ffb300;
    margin-bottom: 80px;
}

.latest-book .box {
    padding: 10px;
}

.latest-book .box img {
    border-radius: 7px;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.17);
    width: 100%;
}

.latest-book .box p {
    font-family: "Nunito", sans-serif;
    font-size: 30px;
    font-weight: 600;
    margin: 20px 0;
    text-align: center;
}

.latest-book::after {
    background: #fff;
    position: absolute;
    content: "";
    height: 150px;
    bottom: -89px;
    width: 100%;
    transform: rotate(3deg);
}

.latest-book .btn {
    color: #000;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    background: #ffb300;
    min-width: 150px;
    height: 50px;
    padding: 12px 25px;
}

.latest-video {
    padding: 120px 0;
    position: relative;
}

.latest-video .video-thumbnail {
    background-size: 688px 531px !important;
    height: 531px;
    background-position: 50% 50% !important;
}

.latest-video h2 {
    font-family: "Engagement", cursive;
    font-size: 48px;
    
    margin-bottom: 60px;
}

.latest-video h3 {
    color: #000;
    font-size: 72px;
    font-family: "Nunito", sans-serif;
    font-weight: 300;
    font-size: 42px;
    font-weight: 600;
    color: #ffb300;
}

.latest-video p {
    color: #4b4943;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    line-height: 36px;
    margin: 25px 0;
    font-size: 18px;
}

.latest-video .btn {
    color: #000;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    background: #ffb300;
    min-width: 150px;
    height: 50px;
    padding: 12px 25px;
}

.latest-audio {
    padding: 120px 0 70px 0;
    position: relative;
    background: #000;
    overflow: hidden;
}

.latest-audio .latest-audio-bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    filter: grayscale(1) blur(2px);
    opacity: 0.19;
    background-size: 1920px 900px !important;
    background-position: 50% 50% !important;
    background-attachment: fixed !important;
    z-index: 1;
}

.latest-audio .box {
    padding: 15px;
}

.latest-audio h4 {
    font-family: "Engagement", cursive;
    font-size: 42px;
    margin-bottom: 50px;
   
    color: #ffb300;
    
    text-align: center;
    margin-bottom: 60px;
}

.latest-audio h5 {
    color: #000;
    font-size: 72px;
    font-family: "Nunito", sans-serif;
    font-weight: 300;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.latest-audio p {
    color: #4b4943;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    line-height: 36px;
    margin: 25px 0;
    font-size: 18px;
}

.latest-audio .btn {
    color: #000;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    background: #ffb300;
    min-width: 150px;
    height: 50px;
    padding: 12px 25px;
}

.latest-galley {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.latest-galley h6 {
    font-family: "Engagement", cursive;
    /* font-size: 30px; */
    margin-bottom: 50px;
    
    font-size: 48px;
    text-align: center;
    margin-bottom: 80px;
}

.latest-galley .item {
    padding: 15px;
}

.latest-galley .owl-nav button {
    position: absolute;
    top: 40%;
    z-index: 6;
}

.latest-galley .owl-nav button span {
    font-size: 40px;
    height: 50px;
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.17);
    opacity: 1;
    border-radius: 100%;
    background: #fff;
    width: 50px;
    text-align: center;
    display: inline-block;
    line-height: 40px;
}

.latest-galley .owl-nav .owl-prev {
    left: -60px;
}

.latest-galley .owl-nav .owl-next {
    right: -60px;
}

.latest-galley .btn {
    color: #000;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    background: #ffb300;
    min-width: 150px;
    height: 50px;
    padding: 12px 25px;
}

.latest-galley .gallery-box {
    padding: 0px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.17);
    border-radius: 4px;
    margin-bottom: 30px;
    text-align: center;
}

.latest-galley .gallery-box p {
    position: relative;
    padding-bottom: 15px;
    font-family: "Nunito", sans-serif;
}

.latest-galley .gallery-box p strong {
    font-weight: 700 !important;
    font-size: 24px;
    color: #cf4520;
    display: block;
    padding-top: 15px;
}

.latest-galley .gallery-box p::after {
    position: absolute;
    content: "";
    height: 44px;
    top: -25px;
    left: 0;
    right: -9px;
    transform: rotate(-5deg);
    background: #fff;
}

.latest-galley .gallery-box:hover img {
    transform: scale(1.1);
    transition: 1s;
    filter: grayscale(1);
}

.latest-galley .gallery-box:hover p strong {
    color: #000;
}

.latest-galley .gallery-box:hover p::after {
    transform: rotate(0deg);
    transition: 0.1s;
}

.sharing-caring {
    background: #400403;
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

.sharing-caring::after {
    content: "";
    position: absolute;
    height: 130px;
    transform: rotate(3.5deg);
    width: 120%;
    top: -50px;
    left: 0;
    background: #fff;
    z-index: 1;
}

.sharing-caring::before {
    content: "";
    position: absolute;
    height: 130px;
    transform: rotate(-3.5deg);
    width: 120%;
    bottom: -50px;
    left: 0;
    background: #fff;
    z-index: 1;
}

.sharing-caring .sharing-caring-bg {
    background-position: 50% 50% !important;
    background-size: cover !important;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    opacity: 0.1;
    filter: blur(8px) contrast(2);
    mix-blend-mode: luminosity;
}

.sharing-caring .title {
    margin-bottom: 50px;
    text-align: center;
}

.sharing-caring .title h2 {
    font-family: "Engagement", cursive;
    /* font-size: 30px; */
    margin-bottom: 50px;
    
    font-size: 48px;
    /* letter-spacing: 4px; */
    color: #fff;
}

.sharing-caring .title p {
    font-size: 30px;
    font-weight: 300;
    color: #ffd182;
}

.sharing-caring h3,
.sharing-caring h4 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    font-family: "Nunito", sans-serif;
    margin-bottom: 25px;
}

.sharing-caring p {
    color: #4b4943;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    line-height: 36px;
    color: #fff;
    font-size: 16px;
    margin-bottom: 25px;
}

.sharing-caring .btn {
    color: #000;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    background: #ffb300;
    min-width: 150px;
    height: 50px;
    padding: 12px 25px;
    background: #cf4520;
    min-width: 198px;
    font-size: 16px;
    padding: 10px 25px;
    letter-spacing: 1px;
    color: #fff;
    height: 45px;
}

.sharing-caring img {
    padding: 15px;
    width: 100%;
}

.sharing-caring .box {
    padding: 20px 0;
}

.sharing-caring .row:nth-of-type(3) {
    flex-direction: row-reverse;
}

.sharing-caring .row:nth-of-type(3) .box {
    text-align: right;
}

.modal-dialog {
    max-width: 650px;
    text-align: center;
}

.modal-dialog .btn-close {
    position: absolute;
    right: -20px;
    top: -20px;
    z-index: 2;
    opacity: 1;
    border-radius: 50px;
    border: 3px solid #000;
    padding: 10px;
    filter: invert(1);
    background: #fffbfb url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}

.modal-dialog .event-image {
    height: 350px;
    background-position: 50% 50% !important;
    background-size: cover !important;
}

.modal-dialog h2 {
    font-family: "Nunito", sans-serif;
    font-size: 36px;
    color: #000;
    margin: 25px 0 10px 0;
    font-weight: 600;
    line-height: 44px;
}

.modal-dialog h2 span {
    display: block;
    color: #888;
    font-size: 14px;
}

.modal-dialog h3 {
    color: #cf4520;
    font-family: "Nunito", sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin: 15px 0;
}

.modal-dialog h4 {
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    color: #555;
}

.modal-dialog .content {
    padding: 20px;
}

.modal-dialog .modal-body {
    padding: 0;
}

.modal-dialog .modal-footer {
    border: 0;
    justify-content: center;
}

.modal-dialog .btn {
    color: #000;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    background: #ffb300;
    min-width: 150px;
    height: 50px;
    padding: 12px 25px;
    min-width: 180px;
    margin: 0 0 20px 0;
}

.inner-content.events .events-img {
    height: 300px;
    background-position: 50% 50% !important;
    background-size: cover !important;
    margin-bottom: 15px;
}

.inner-content.events h2 {
    font-family: "Nunito", sans-serif;
    font-size: 36px;
    letter-spacing: normal;
    margin-top: 0;
    margin-bottom: 15px !important;
    line-height: 42px;
    font-weight: 600;
    color: #cf4520;
}

.inner-content.events h2 span {
    color: #888;
    display: block;
    font-size: 14px;
    font-weight: 500;
    /* letter-spacing: 2px; */
}

.inner-content.events p {
    letter-spacing: 1px;
    font-size: 18px !important;
}

.inner-content.events p strong {
    color: #000 !important;
    padding-top: 0 !important;
    margin-bottom: 20px;
    letter-spacing: 0px;
    font-size: 24px !important;
}

.inner-content.events label {
    font-family: "Nunito", sans-serif;
    margin-right: 15px;
}

.inner-content.events select {
    font-family: "Nunito", sans-serif;
    background: #fff;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.17);
    border: 0;
    min-width: 250px;
    height: 40px;
    border-radius: 4px;
    padding: 0 15px;
}

.learnfrom {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.learnfrom h5 {
    font-family: "Engagement", cursive;
    font-size: 48px;
    margin-bottom: 50px;
    
    /* font-size: 24px; */
    /* letter-spacing: 4px; */
    text-align: center;
    margin-bottom: 70px;
}

.learnfrom .box {
    text-align: center;
    margin-bottom: 30px;
}

.learnfrom .box img {
    border-radius: 7px;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.17);
    width: 100%;
}

.learnfrom .btn {
    color: #000;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    background: #ffb300;
    min-width: 150px;
    height: 50px;
    padding: 12px 25px;
}

.footer {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: #000;
}

.footer .footer-bg {
    background-position: 50% 50% !important;
    background-size: cover !important;
    background-attachment: fixed !important;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    opacity: 0.1;
    filter: blur(5px) contrast(2);
    mix-blend-mode: luminosity;
}

.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
    font-family: "Engagement", cursive;
    font-size: 30px;
    margin-bottom: 50px;
   
    /* font-size: 14px; */
 
    color: #ffb300;
    margin-bottom: 70px;
}

.footer p {
    color: #4b4943;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    line-height: 36px;
    display: flex;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
}

.footer p .bi {
    margin-right: 8px;
}

.footer ul {
    padding-left: 0;
    list-style: none;
}

.footer ul li {
    margin-bottom: 20px;
}

.footer ul li a {
    color: #4b4943;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    line-height: 36px;
    color: #fff;
    line-height: 24px;
    font-size: 14px;
}

.footer ul li a:hover {
    color: #ffb300;
}

.footer .appstore img {
    border: 1px solid #707070;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 15px;
}

.footer .media-icon a {
    color: #fff;
    margin: 0 12px;
}

.footer .media-icon a .svg-inline--fa {
    font-size: 24px;
}

.footer .media-icon a:hover {
    color: #ffb300;
}

.copright {
    padding: 30px 0;
    background: #000;
}

.copright p,
.copright a {
    color: #4b4943;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    line-height: 36px;
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.copright a {
    margin: 0 25px;
}

.copright a:hover {
    color: #ffb300;
}

#back-top-top {
    height: 50px;
    width: 50px;
    line-height: 48px;
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 20px;
    background: #fff;
    border-radius: 100%;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.17);
    cursor: pointer;
    display: inline-block;
    z-index: 9;
}

.banner-inner {
    background: #000;
    position: relative;
    overflow: hidden;
    height: 400px;
    padding: 150px 0;
}

.banner-inner .banner-inner-background {
    background-position: 50% 50% !important;
    background-size: cover !important;
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    filter: grayscale(1) blur(3px);
}

.banner-inner .banner-img {
    position: absolute;
    background-position: 21% 57% !important;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.2;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    filter: grayscale(1) blur(3px);
}

.banner-inner .container,
.banner-inner .container-fluid {
    position: relative;
    z-index: 1;
}

.banner-inner h1 {
    font-family: "Engagement", cursive;
    font-size: 48px;
    margin-bottom: 50px;
    /* letter-spacing: 2px; */
    color: #ffb300;
    margin: 0;
    /* font-size: 18px; */
    /* letter-spacing: 4px; */
}

.breadcrumb {
    text-align: center;
    margin-top: 40px;
    color: #4b4943;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    line-height: 36px;
    color: #ddd;
    font-weight: 300;
}

.breadcrumb a {
    color: #fff;
    font-weight: 600;
    margin-right: 5px;
}

.contact-inner {
    padding: 40px 0;
    margin: 30px;
}

.contact-inner input,
.contact-inner select {
    box-shadow: none;
    font-weight: 300;
    font-size: 15px;
    font-family: "Nunito", sans-serif;
    height: 45px;
}

.contact-inner textarea {
    box-shadow: none;
    font-weight: 300;
    font-size: 15px;
    font-family: "Nunito", sans-serif;
}

.contact-inner .btn {
    color: #000;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    background: #ffb300;
    height: 50px;
    padding: 12px;
    margin-bottom: 30px;
    width: 180px;
    font-size: 18px;
}

.contact-inner .box {
    background: #000;
    position: relative;
    text-align: center;
    border-radius: 7px;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.2);
    min-height: 300px;
    margin-bottom: 25px;
}

.contact-inner .box .box-background {
    position: absolute;
    background-position: 50% 50% !important;
    background-repeat: no-repeat;
    background-size: cover !important;
    opacity: 0.2;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    border-radius: 10px;
    filter: grayscale(1);
}

.contact-inner .box .box-text {
    position: absolute;
    z-index: 999;
    color: #fff;
    padding: 65px 30px;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.contact-inner .box h2 {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 10px;
    color: #ffb300;
}

.contact-inner .box span {
    font-family: "Nunito", sans-serif;
    font-weight: 300;
    font-size: 16px;
}

.contact-inner .box img {
    box-shadow: none;
}

.contact-detail {
    padding: 40px 0;
    margin-top: 60px;
}

.contact-detail img {
    border-radius: 7px;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.2);
}

.contact-detail h3 {
    font-family: "Engagement", cursive;
    color: #000;
    margin-bottom: 45px;
    /* font-size: 18px; */
    
}

.inner-content {
    padding: 70px 0;
    position: relative;
}

.inner-content p {
    color: #4b4943;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    line-height: 36px;
}

.inner-content h2,
.inner-content h3 {
    font-family: "Engagement", cursive;
    font-size: 42px;
    margin-bottom: 50px;
    /* letter-spacing: 2px; */
    /* font-size: 18px; */
    margin-top: 50px;
    margin-bottom: 50px;
    letter-spacing: 4px;
    color: #000;
}

.inner-content ul {
    margin-bottom: 30px;
}

.inner-content ul li {
    font-family: "Nunito", sans-serif;
    margin-bottom: 10px;
}

.inner-content .box {
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.17);
}

.inner-content .box p {
    color: #4b4943;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    line-height: 36px;
    line-height: 24px;
    font-size: 14px;
}

.inner-content .box p strong {
    font-weight: 700 !important;
    font-size: 24px;
    color: #cf4520;
    display: block;
    padding-top: 35px;
}

.inner-content .box img {
    border-radius: 4px;
    width: 100%;
}

.inner-content .form {
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.17);
    display: block;
    position: relative;
    padding: 40px;
}

.inner-content .form h3 {
    margin-bottom: 0;
}

.inner-content .form p {
    color: #4b4943;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    line-height: 36px;
    line-height: 24px;
    font-size: 14px;
}

.inner-content .form p strong {
    font-weight: 700 !important;
    font-size: 24px;
    color: #cf4520;
    display: block;
    padding-top: 35px;
}

.inner-content .form label {
    margin-bottom: 10px;
    color: #4b4943;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    line-height: 36px;
}

.inner-content .form input,
.inner-content .form select {
    color: #4b4943;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    line-height: 36px;
}

.inner-content .form textarea {
    color: #4b4943;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    line-height: 36px;
    color: #888;
}

.inner-content .form .btn {
    color: #000;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    background: #ffb300;
    min-width: 150px;
    height: 50px;
    padding: 12px 25px;
}

.inner-content .form .form-check label {
    line-height: normal;
}

.inner-content .form ul {
    padding-left: 5px;
}

.inner-content .form ul li {
    color: #4b4943;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    line-height: 36px;
}

.inner-content h4 {
    color: #4b4943;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    line-height: 36px;
    font-weight: 700 !important;
    font-size: 24px;
    color: #cf4520;
    display: block;
    padding-top: 35px;
}

.inner-content .gallery-box {
    padding: 0px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.17);
    border-radius: 4px;
    margin-bottom: 30px;
}

.inner-content .baguetteBoxOne .gallery-box {
    box-shadow: 0;
    height: 94%;
}

.inner-content .baguetteBoxOne .gallery-box img {
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.17);
    height: 100%;
    width: 100%;
}

.inner-content .gallery-box p {
    position: relative;
    padding-bottom: 20px;
}

.inner-content .gallery-box p strong {
    font-weight: 700 !important;
    font-size: 24px;
    color: #cf4520;
    display: block;
    padding-top: 20px;
}

.inner-content .gallery-box p::after {
    position: absolute;
    content: "";
    height: 50px;
    top: -25px;
    left: 0;
    right: -9px;
    transform: rotate(-5deg);
    background: #fff;
}

.inner-content .gallery-box:hover img {
    transform: scale(1.1);
    transition: 1s;
    filter: grayscale(1);
}

.inner-content .gallery-box:hover p strong {
    color: #000;
}

.inner-content .gallery-box:hover p::after {
    transform: rotate(0deg);
    transition: 0.1s;
}

.inner-content .about h2 {
    font-family: "Nunito", sans-serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 25px;
}

.inner-content .about h3 {
    color: #ffb300;
}

.inner-content .malik-exclusive {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.inner-content .malik-exclusive h4 {
    font-size: 30px;
    font-family: "Engagement", cursive;
    color: #ffb300;
    line-height: 82px;
    /* letter-spacing: 2px; */
}

.inner-content .malik-exclusive h4 span {
    color: #000;
    font-size: 30px;
}

.inner-content .malik-exclusive h5 {
    color: #000;
    font-family: "Nunito", sans-serif;
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 30px;
}

.inner-content .malik-exclusive p {
    color: #000;
    font-size: 18px;
    letter-spacing: 1px;
}

.inner-content .malik-exclusive p strong {
    font-size: 24px;
    font-weight: 200;
    letter-spacing: 0.2px;
    line-height: 32px;
    margin-bottom: 30px;
    display: block;
}

.inner-content .malik-exclusive .btn {
    color: #000;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    background: #ffb300;
    min-width: 150px;
    height: 50px;
    padding: 12px 25px;
    margin-bottom: 30px;
    width: 180px;
    font-size: 18px;
}

.inner-content .malik-exclusive .subscribe {
    background: none;
    color: #000;
    border: 2px solid #ffb300;
    width: 207px;
}

.inner-content figure figcaption {
    font-family: "Nunito", sans-serif;
    margin-bottom: 5px;
}

.meditation-box {
    background-size: cover !important;
    background-position: 50% 50% !important;
    display: flex;
    align-items: center;
}

.meditation-box h2 {
    font-family: "Engagement", cursive;
    font-size: 30px;
    margin-bottom: 50px;
    /* letter-spacing: 2px; */
}

.meditation-box p {
    color: #4b4943;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    line-height: 36px;
    width: 50%;
}

.meditation-box p strong {
    font-weight: 700 !important;
    font-size: 24px;
    color: #cf4520;
    display: block;
    padding-top: 35px;
}

@media (min-width:1921px) {
    .sharing-caring::before {
        transform: rotate(-2.5deg);
        bottom: -60px;
    }
    .sharing-caring::after {
        transform: rotate(2.5deg);
    }
    .sharing-caring .title {
        margin-top: 50px;
    }
    .latest-book::after {
        transform: rotate(2deg);
    }
    .container-fluid {
        max-width: 1920px;
    }
}

@media (min-width:3000px) {
    .sharing-caring::before {
        transform: rotate(-1.5deg);
        bottom: -83px;
    }
    .sharing-caring::after {
        transform: rotate(1.5deg);
        top: -83px;
    }
    .sharing-caring .title {
        margin-top: 50px;
    }
    .latest-book::after {
        transform: rotate(2deg);
    }
    .container-fluid {
        max-width: 2500px;
    }
}

@media (min-width: 1281px) and (max-width: 1600px) {
    .banner .carousel-item {
        height: 700px;
    }
}

@media (min-width: 1200px) and (max-width: 1280px) {
    .banner .carousel-caption h1 {
        font-size: 52px;
    }
    .exclusive h4 {
        font-size: 30px;
    }
    .exclusive h4 span {
        font-size: 24px;
    }
    .about-home .about {
        padding: 70px 20px;
    }
    .about-home p {
        width: 90%;
    }
    .latest-book h6,
    .latest-video h2,
    .latest-audio h4,
    .latest-galley h6,
    .sharing-caring .title h2,
    .learnfrom h5 {
        font-size: 24px;
        line-height: normal;
        margin-bottom: 0;
    }
    .footer h2,
    .footer h3,
    .footer h4,
    .footer h5,
    .footer h6 {
        line-height: normal;
        font-size: 10px;
    }
    .banner .carousel-item {
        height: 650px;
    }
    .latest-book .box p {
        font-size: 24px;
    }
    .latest-book,
    .latest-video,
    .latest-galley {
        padding: 50px 0;
    }
    .latest-book {
        padding-bottom: 120px;
    }
    .learnfrom {
        padding-top: 0;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .banner .carousel-item {
        height: 600px;
        background-size: cover !important;
    }
    .banner .carousel-caption h1 {
        font-size: 36px;
    }
    .header .btn1 {
        padding: 5px 6px !important;
    }
    .brand img {
        width: 200px;
    }
    .footer h2,
    .footer h3,
    .footer h4,
    .footer h5,
    .footer h6 {
        line-height: 34px;
        font-size: 10px;
    }
    .inner-content .about-home {
        padding: 0;
    }
    .inner-content .about-home .about {
        padding: 20px;
    }
    .inner-content .about-home .about p {
        width: 100%;
    }
    .inner-content .about-home .about h2 {
        font-size: 36px;
    }
    .inner-content .about-home .about h3 {
        margin: 30px 0;
    }
    .about-home .about {
        padding: 70px 20px;
    }
    .about-home .about p {
        width: 100%;
    }
    .about-home .about h2 {
        font-size: 36px;
    }
    .latest-book .box p {
        font-size: 20px;
    }
    .latest-video h3 {
        font-size: 30px;
    }
    .sharing-caring h3,
    .sharing-caring h4 {
        font-size: 30px;
    }
    .inner-content.events select {
        min-width: 156px;
    }
}

@media (max-width: 991px) {
    .banner .carousel-caption h1 {
        font-size: 30px;
        margin-bottom: 15px;
    }
    .banner .carousel-caption p {
        font-size: 14px;
    }
    .banner .carousel-caption .btn {
        height: 40px;
        padding: 7px;
    }
    .header {
        padding: 10px;
        background: #fff;
    }
    .brand.phone {
        display: block;
    }
    .topbar .me-4 {
        display: none;
    }
    .about-home img {
        margin-top: 50px;
    }
    .about-home p {
        width: 100%;
    }
    .exclusive {
        text-align: center;
    }
    .exclusive .d-sm-flex {
        justify-content: center;
    }
    .exclusive .img-fluid {
        margin-top: 50px;
    }
    .exclusive h4 span {
        display: inline-block;
    }
    .exclusive h5 {
        font-size: 30px;
    }
    .exclusive p strong {
        font-size: 18px;
    }
    .exclusive .btn {
        height: 40px;
        padding: 5px;
    }
    .latest-video {
        text-align: center;
    }
    .latest-video .video-thumbnail {
        margin-bottom: 60px;
    }
    .latest-audio h4 {
        line-height: auto;
    }
    .latest-book h6,
    .latest-video h2,
    .latest-audio h4,
    .latest-galley h6,
    .sharing-caring .title h2,
    .learnfrom h5 {
        font-size: 20px;
        line-height: normal;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }
    .footer h2,
    .footer h3,
    .footer h4,
    .footer h5,
    .footer h6 {
        margin-top: 40px;
    }
    .latest-video,
    .latest-book,
    .latest-galley,
    .learnfrom {
        padding: 50px 0;
    }
    .exclusive h4 {
        font-size: 24px;
    }
    .exclusive h4 span {
        font-size: 20px;
    }
    .sharing-caring .box {
        text-align: center !important;
    }
    .latest-galley .owl-nav .owl-prev {
        left: 0;
    }
    .latest-galley .owl-nav .owl-next {
        right: 0;
    }
    .banner .carousel-item {
        height: 500px;
        background-position: 67% 50% !important;
        background-size: cover !important;
    }
    .inner-content .malik-exclusive {
        padding: 0;
    }
    .inner-content .about-home {
        padding: 0;
    }
    .inner-content.events select {
        min-width: 156px;
    }
    .latest-book .box {
        text-align: center;
    }
    .exclusive .btn {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .about-home .about {
        padding: 10px;
    }
    .latest-audio,
    .footer {
        padding: 40px 0;
    }
    .latest-book h6,
    .latest-video h2,
    .latest-audio h4,
    .latest-galley h6,
    .sharing-caring .title h2,
    .learnfrom h5 {
        font-size: 16px;
    }
    .latest-audio h5,
    .sharing-caring .title p {
        font-size: 24px;
    }
    .sharing-caring h3,
    .sharing-caring h4 {
        font-size: 30px;
    }
    .sharing-caring p {
        font-size: 14px;
        line-height: 30px;
    }
    .about-home h2 {
        font-size: 30px;
    }
    .about-home h3 {
        margin-bottom: 0;
    }
    .topbar p .phone {
        display: none;
    }
    .topbar .top-icon .svg-inline--fa {
        margin-left: 5px;
    }
    .topbar .btn {
        margin: 0 5px;
        padding: 0px 8px;
    }
    .banner .carousel-item {
        height: 400px;
        background-position: 87% 50% !important;
        background-size: cover !important;
    }
    .banner-inner {
        height: 300px;
        padding: 120px 0;
    }
    .banner-inner .breadcrumb {
        margin-top: 15px;
    }
    .banner-inner h1 {
        line-height: 52px;
    }
    .inner-content .malik-exclusive {
        padding: 0 15px;
    }
    .inner-content .malik-exclusive h4 {
        font-size: 18px;
        padding-top: 0;
    }
    .inner-content .malik-exclusive h4 span {
        font-size: 18px;
    }
    .inner-content .malik-exclusive h5 {
        font-size: 30px;
    }
    .modal-dialog .btn-close {
        top: 0;
        right: 0;
        padding: 5px;
    }
    .inner-content .form h3 {
        line-height: 52px;
    }
}

@media (max-width: 500px) {
    .banner .carousel-item {
        height: 300px;
    }
    .topbar .btn {
        margin: 0;
        padding: 0px 5px;
    }
    .modal-dialog .event-image {
        height: 200px;
    }
    .modal-dialog h2 {
        font-size: 30px;
        line-height: 30px;
    }
    .modal-dialog h3 {
        font-size: 24px;
    }
    .modal-footer {
        padding: 0;
    }
    .modal-dialog .btn {
        height: 41px;
        padding: 7px;
    }
    .inner-content iframe {
        height: 320px;
    }
}