.elementor-28 .elementor-element.elementor-element-3e0634d{width:100%;max-width:100%;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-3e0634d *//* =========================================
   ReelMBA - Explore Categories
========================================= */

.rm-explore{
    width:90%;
    max-width:1400px;
    margin:90px auto;
    font-family:Inter,sans-serif;
}

/* Heading */

.rm-heading{
    text-align:center;
    margin-bottom:45px;
}

.rm-heading span{
    display:inline-block;
    color:#C89B3C;
    font-size:13px;
    font-weight:600;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.rm-heading h2{
    font-size:48px;
    margin:0;
    color:#111;
    font-weight:700;
}

.rm-heading p{
    max-width:650px;
    margin:18px auto 0;
    color:#666;
    font-size:17px;
    line-height:1.7;
}

/* Cards */

.rm-categories{
    display:flex;
    gap:20px;
}

.rm-card{

    position:relative;

    flex:1;

    height:300px;

    border-radius:22px;

    overflow:hidden;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    transition:.45s ease;

}

/* Background Images */

.movies{
    background-image:url(images/movies.jpg);
}

.books{
    background-image:url(images/books.jpg);
}

.case-study{
    background-image:url(images/case-study.jpg);
}

.resources{
    background-image:url(images/resources.jpg);
}

/* Overlay */

.rm-card::before{

    content:"";

    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.88),
        rgba(0,0,0,.25),
        transparent
    );

}

/* Content */

.rm-content{

    position:absolute;

    left:20px;
    right:20px;
    bottom:20px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    z-index:2;

}

.rm-content h3{

    color:#fff;

    font-size:26px;

    font-weight:700;

    margin:0;

}

.rm-arrow{

    width:46px;
    height:46px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.5);

    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:22px;

    transition:.35s;

}

/* Hover */

.rm-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.rm-card:hover{

    background-size:108%;

}

.rm-card:hover .rm-arrow{

    background:#C89B3C;

    border-color:#C89B3C;

    color:#111;

}

/* Tablet */

@media(max-width:1024px){

.rm-explore{

    width:94%;

}

.rm-heading h2{

    font-size:40px;

}

.rm-card{

    height:260px;

}

.rm-content h3{

    font-size:22px;

}

}

/* Mobile */

@media(max-width:768px){

.rm-explore{

    width:100%;

    padding:0 16px;

}

.rm-heading h2{

    font-size:32px;

}

.rm-heading p{

    font-size:15px;

}

.rm-categories{

    overflow-x:auto;

    gap:16px;

    scroll-snap-type:x mandatory;

    padding-bottom:12px;

}

.rm-categories::-webkit-scrollbar{

    display:none;

}

.rm-card{

    min-width:240px;

    flex:none;

    height:280px;

    scroll-snap-align:start;

}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e3319cb */```css
/* ==========================================
   Global Fix
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    overflow-x:hidden;
    font-family:'Inter',sans-serif;
}

img{
    display:block;
    max-width:100%;
}

/* ==========================================
   Latest Articles Section
========================================== */

.rm-latest{
    width:100%;
    max-width:1400px;
    margin:80px auto;
    padding:0 20px;
}

/* ==========================================
   Heading
========================================== */

.rm-latest-heading{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:30px;
}

.rm-latest-heading span{
    color:#C89B3C;
    font-size:13px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
}

.rm-latest-heading h2{
    font-size:46px;
    margin-top:8px;
    color:#111;
}

.view-all{
    color:#111;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.view-all:hover{
    color:#C89B3C;
}

/* ==========================================
   Grid
========================================== */

.rm-latest-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:18px;
}

/* ==========================================
   Featured Card
========================================== */

.featured-post{
    position:relative;
    height:380px;
    border-radius:22px;
    overflow:hidden;
    background:url(images/titan.jpg) center/cover no-repeat;
    text-decoration:none;
}

.featured-post::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.25),
        transparent);
}

.featured-content{
    position:absolute;
    left:28px;
    right:28px;
    bottom:28px;
    z-index:2;
}

.category{
    display:inline-block;
    background:#C89B3C;
    color:#111;
    padding:7px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    margin-bottom:15px;
}

.featured-content h2{
    color:#fff;
    font-size:34px;
    line-height:1.2;
    margin-bottom:12px;
}

.featured-content p{
    color:#ddd;
    line-height:1.7;
    margin-bottom:14px;
}

.meta{
    color:#fff;
    font-size:14px;
}

/* ==========================================
   Sidebar
========================================== */

.small-posts{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.small-post{
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px;
    border:1px solid #ececec;
    border-radius:18px;
    background:#fff;
    text-decoration:none;
    transition:.3s;
}

.small-post:hover{
    transform:translateX(5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.small-image{
    width:95px;
    height:95px;
    border-radius:14px;
    flex-shrink:0;
    background-size:cover;
    background-position:center;
}

.air{
    background:url(images/air.jpg) center/cover;
}

.moneyball{
    background:url(images/moneyball.jpg) center/cover;
}

.steve{
    background:url(images/steve-jobs.jpg) center/cover;
}

.small-content{
    flex:1;
}

.small-content span{
    color:#C89B3C;
    font-size:12px;
    font-weight:600;
    text-transform:uppercase;
}

.small-content h3{
    margin:6px 0;
    color:#111;
    font-size:22px;
}

.small-content p{
    color:#666;
    font-size:14px;
    line-height:1.5;
}

/* ==========================================
   Tablet
========================================== */

@media(max-width:1024px){

.rm-latest-grid{
    grid-template-columns:1fr;
}

.featured-post{
    height:340px;
}

}

/* ==========================================
   Mobile
========================================== */

@media(max-width:768px){

.rm-latest{
    padding:0 16px;
}

.rm-latest-heading{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
}

.rm-latest-heading h2{
    font-size:32px;
}

.rm-latest-grid{
    display:block;
}

.featured-post{
    height:300px;
    margin-bottom:18px;
}

.featured-content{
    left:20px;
    right:20px;
    bottom:20px;
}

.featured-content h2{
    font-size:28px;
}

.featured-content p{
    display:none;
}

/* Horizontal Scroll */

.small-posts{
    flex-direction:row;
    overflow-x:auto;
    gap:14px;
    padding-bottom:8px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
}

.small-posts::-webkit-scrollbar{
    display:none;
}

.small-post{
    min-width:240px;
    flex-direction:column;
    align-items:flex-start;
    scroll-snap-align:start;
}

.small-image{
    width:100%;
    height:150px;
}

}
```/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-176f7bf */```css
/*=========================================
        Featured Books
=========================================*/

.rm-books{
    width:90%;
    max-width:1400px;
    margin:90px auto;
    font-family:'Inter',sans-serif;
}

/*=========================================
        Heading
=========================================*/

.rm-books-heading{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:35px;
}

.rm-books-heading span{
    display:block;
    color:#C89B3C;
    font-size:13px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:8px;
}

.rm-books-heading h2{
    font-size:48px;
    font-weight:700;
    color:#111;
    margin:0;
}

.rm-books-heading .view-all{
    color:#111;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.rm-books-heading .view-all:hover{
    color:#C89B3C;
}

/*=========================================
        Slider
=========================================*/

.rm-books-slider{

    display:flex;

    gap:22px;

    overflow-x:auto;

    scroll-behavior:smooth;

    scroll-snap-type:x mandatory;

    -webkit-overflow-scrolling:touch;

    padding-bottom:20px;

}

.rm-books-slider::-webkit-scrollbar{

    height:6px;

}

.rm-books-slider::-webkit-scrollbar-track{

    background:#eee;

    border-radius:20px;

}

.rm-books-slider::-webkit-scrollbar-thumb{

    background:#C89B3C;

    border-radius:20px;

}

/*=========================================
        Book Card
=========================================*/

.book-card{

    min-width:220px;

    flex:none;

    scroll-snap-align:start;

    text-decoration:none;

    color:#111;

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s;

}

.book-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

/*=========================================
        Cover
=========================================*/

.book-cover{

    overflow:hidden;

}

.book-cover img{

    width:100%;

    height:310px;

    object-fit:cover;

    display:block;

    transition:.4s;

}

.book-card:hover img{

    transform:scale(1.05);

}

/*=========================================
        Content
=========================================*/

.book-info{

    padding:18px;

}

.book-info h3{

    font-size:24px;

    margin:0 0 8px;

    color:#111;

    line-height:1.3;

}

.book-info p{

    color:#666;

    font-size:15px;

    margin-bottom:14px;

}

.book-rating{

    display:flex;

    align-items:center;

    gap:8px;

    color:#C89B3C;

    font-size:15px;

    font-weight:600;

}

.book-rating span{

    color:#555;

}

/*=========================================
        Tablet
=========================================*/

@media(max-width:1024px){

.rm-books{

    width:94%;

}

.rm-books-heading h2{

    font-size:40px;

}

.book-card{

    min-width:200px;

}

.book-cover img{

    height:280px;

}

.book-info h3{

    font-size:20px;

}

}

/*=========================================
        Mobile
=========================================*/

@media(max-width:768px){

.rm-books{

    width:100%;

    padding:0 16px;

    margin:70px auto;

}

.rm-books-heading{

    flex-direction:column;

    align-items:flex-start;

    gap:14px;

}

.rm-books-heading h2{

    font-size:32px;

}

.book-card{

    min-width:170px;

}

.book-cover img{

    height:240px;

}

.book-info{

    padding:14px;

}

.book-info h3{

    font-size:18px;

}

.book-info p{

    font-size:13px;

}

.book-rating{

    font-size:13px;

}

}
```/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-365ce12 *//* ==========================================
   ReelMBA - Case Studies
========================================== */

.rm-case{
    width:90%;
    max-width:1400px;
    margin:100px auto;
    font-family:'Inter',sans-serif;
}

.rm-case *{
    box-sizing:border-box;
}

/*==========================
      Heading
==========================*/

.rm-case-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:40px;
    margin-bottom:45px;
}

.rm-case-title{
    max-width:650px;
}

.rm-case-title span{
    display:block;
    color:#C89B3C;
    font-size:13px;
    letter-spacing:4px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:12px;
}

.rm-case-title h2{
    font-size:58px;
    line-height:1.05;
    color:#111;
    margin:0 0 18px;
    font-weight:700;
}

.rm-case-title p{
    color:#666;
    font-size:17px;
    line-height:1.8;
    max-width:450px;
}

.view-all{
    color:#111;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    transition:.3s;
}

.view-all:hover{
    color:#C89B3C;
}

/*==========================
        Layout
==========================*/

.rm-case-wrapper{
    display:grid;
    grid-template-columns:58% 42%;
    gap:24px;
    align-items:start;
}

/*==========================
    Featured Card
==========================*/

.featured-case{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    text-decoration:none;
    background:url("https://via.placeholder.com/900x700") center/cover no-repeat;
    aspect-ratio:4/3;
}

.featured-case::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.88),
        rgba(0,0,0,.30),
        transparent
    );
}

.featured-content{
    position:absolute;
    left:35px;
    right:35px;
    bottom:35px;
    z-index:2;
}

.featured-label{
    display:inline-block;
    color:#C89B3C;
    font-size:13px;
    font-weight:600;
    letter-spacing:3px;
    margin-bottom:15px;
}

.featured-content h2{
    color:#fff;
    font-size:56px;
    margin:0 0 10px;
    font-weight:700;
}

.featured-content h4{
    color:#fff;
    font-size:32px;
    line-height:1.35;
    margin:0 0 18px;
    font-weight:600;
}

.featured-content p{
    color:#e5e5e5;
    font-size:16px;
    line-height:1.8;
    margin-bottom:24px;
}

.featured-meta{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:28px;
}

.featured-meta span{
    background:rgba(255,255,255,.15);
    color:#fff;
    padding:10px 16px;
    border-radius:50px;
    font-size:13px;
    backdrop-filter:blur(8px);
}

.featured-content button{
    padding:15px 30px;
    border:none;
    border-radius:50px;
    background:#C89B3C;
    color:#111;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.featured-content button:hover{
    background:#fff;
}

/*=========================================
        Right Cards
=========================================*/

.case-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.case-item{
    display:grid;
    grid-template-columns:60px 1fr 170px;
    align-items:center;
    gap:20px;
    background:#fff;
    border:1px solid #ECECEC;
    border-radius:22px;
    overflow:hidden;
    text-decoration:none;
    transition:.35s ease;
    min-height:170px;
}

.case-item:hover{
    transform:translateX(6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.case-number{
    font-size:44px;
    font-weight:700;
    color:#E5E5E5;
    text-align:center;
}

.case-text{
    padding:22px 0;
}

.case-text span{
    display:block;
    color:#C89B3C;
    font-size:12px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:8px;
}

.case-text h3{
    font-size:28px;
    color:#111;
    margin:0 0 10px;
    font-weight:700;
}

.case-text p{
    color:#666;
    font-size:15px;
    line-height:1.7;
    margin-bottom:12px;
}

.case-text small{
    color:#888;
    font-size:13px;
}

/*=========================================
        Thumbnail
=========================================*/

.case-thumb{
    width:170px;
    height:170px;
    background-size:cover;
    background-position:center;
}

.apple-bg{
    background:url("https://via.placeholder.com/300x300") center/cover;
}

.nike-bg{
    background:url("https://via.placeholder.com/300x300") center/cover;
}

.titan-bg{
    background:url("https://via.placeholder.com/300x300") center/cover;
}

/*=========================================
        Tablet
=========================================*/

@media(max-width:1100px){

.rm-case{
    width:94%;
}

.rm-case-top{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
}

.rm-case-title h2{
    font-size:46px;
}

.rm-case-wrapper{
    grid-template-columns:1fr;
}

.featured-case{
    aspect-ratio:16/10;
}

.case-list{
    margin-top:20px;
}

}

/*=========================================
        Mobile
=========================================*/

@media(max-width:768px){

.rm-case{
    width:100%;
    padding:0 16px;
    margin:70px auto;
}

.rm-case-title h2{
    font-size:36px;
}

.rm-case-title p{
    font-size:15px;
}

.view-all{
    font-size:15px;
}

.featured-case{
    aspect-ratio:16/11;
}

.featured-content{
    left:22px;
    right:22px;
    bottom:22px;
}

.featured-content h2{
    font-size:40px;
}

.featured-content h4{
    font-size:22px;
}

.featured-content p{
    display:none;
}

.featured-content button{
    width:100%;
}

/* Horizontal Scroll */

.case-list{
    display:flex;
    flex-direction:row;
    overflow-x:auto;
    gap:16px;
    padding-bottom:10px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
}

.case-list::-webkit-scrollbar{
    display:none;
}

.case-item{
    min-width:320px;
    grid-template-columns:60px 1fr;
    scroll-snap-align:start;
}

.case-thumb{
    display:none;
}

.case-text h3{
    font-size:24px;
}

.case-number{
    font-size:36px;
}

}

/*=========================================
        Global Fix
=========================================*/

html,
body{
    overflow-x:hidden;
}

img{
    display:block;
    max-width:100%;
}

.rm-case{
    overflow:visible;
}/* End custom CSS */