.mab2025 section {
    padding: 40px 0;
}

.below-footer,
footer {
    position: relative;
    z-index: 2;
}

.mab2025 h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
}

.mab2025 p {
    font-size: 18px;
    letter-spacing: 0;
    line-height: 1.5;
}

/* HERO SECTION */

.mab2025 .hero {
    background: #000;
    position: relative;
    color: #FFF;
    padding: 180px 0 20px;
    overflow: hidden;
    min-height: 600px;
}

.mab2025 .hero .container {
    position: relative;
    z-index: 2;
}

.mab2025 .hero .container .row {
    margin: 0 auto;
}

@media screen and (min-width: 992px) {
    .mab2025 .hero .container .row {
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

/* headline */

.mab2025 .hero h1 {
    max-width: 300px;
    margin: 0 0 20px;
    font-size: 40px;
    font-family: 'Raleway', sans-serif;
}

.mab2025 .hero h1 span  {
    font-size: 32px;
    display: block;
    margin: 0;
    font-weight: 500;
    letter-spacing: -0.5px;
}

/* description */

.mab2025 .hero h2 {
    max-width: 300px;
    margin: 0 0 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
}

.mab2025 .hero h2 br {
    display: none;
}

.mab2025 .hero--3 h1 {
    max-width: 100%;
    margin: 0 0 40px;
    font-size: 27px;
}

.mab2025 .hero--3 h2 {
    margin: 0 0 20px;
    font-size: 25px;
}

/* cta */

.mab2025 .hero .btn {
    background: #de1268;
    width: 220px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    border-radius: 3px;
    transition: 0.4s;
}

.mab2025 .hero .btn:hover {
    background: #333;
    color: #FFF;
}

/* background */

.mab2025 .hero .bg {
    background: #000;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.mab2025 .hero .bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.mab2025 .hero .bg .mobile {
    display: block;
}

.mab2025 .hero .bg .desktop {
    display: none;
}

/* QUICK NAV */

.mab2025 .quick-nav {
    background: #FFF;
    width: 100%;
    position: absolute;
    top: 600px;
    padding: 10px 0;
    text-align: center;
    border-block: 1px solid rgba(0, 0, 0, 0.05);
}

.mab2025 .quick-nav.fixed {
    background: #f7f7f7;
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.mab2025 .quick-nav ul {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0 30px;
    list-style: none;
    margin: 0;
    padding: 0 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.mab2025 .quick-nav ul li {
    position: relative;
    display: none;
}

.mab2025 .quick-nav ul li:nth-child(5),
.mab2025 .quick-nav ul li.buy {
    display: block;
}

.mab2025 .quick-nav ul li::before {
    content: '';
    background: #de1268;
    width: 0;
    height: 2px;
    position: absolute;
    top: 100%;
    left: 0;
    transition: 0.4s;
}

.mab2025 .quick-nav ul li.active::before {
    width: 100%;
}

.mab2025 .quick-nav ul li a {
    color: #4f5357;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    text-wrap: nowrap;
    padding: 15px 0;
    display: inline-block;
    position: relative;
    transition: 0.4s;
}

.mab2025 .quick-nav ul li a::before {
    content: '';
    width: 0;
    height: 2px;
    position: absolute;
    top: auto;
    left: 50%;
    bottom: 10px;
    background: #de1268;
    transition: 0.3s;
    transform: translate3d(-50%, 0, 0);
}

.mab2025 .quick-nav ul li a.active-item::before {
    width: 100%;
}

.mab2025 .quick-nav ul li a:hover {
    color: #de1268;
}

.mab2025 .quick-nav ul li.buy a {
    background: #de1268;
    width: 120px;
    height: 48px;
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border-radius: 3px;
}

.mab2025 .quick-nav ul li.buy a:hover {
    background: #333;
    color: #FFF;
}

/* CARRIER SUPPORT */

.mab2025 .carrier-support-ctn {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.mab2025 .carrier-support-ctn-text {
    max-width: 100%;
    width: 100%;
}

.mab2025 .carrier-support-ctn-text p strong {   
    color: #de1268;
}

.mab2025 .carrier-support-ctn-image {
    max-width: 80%;
    width: 100%;
    margin: 0 0 40px;
}

.mab2025 .carrier-support-ctn-image img {
    max-width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    margin: 0 auto;
}

/* SAFETY */

.mab2025 .safety {
    background: #fff;
    padding: 100px 0 40px;
}

.mab2025 .safety h2 {
    margin: 0 auto 40px;
    text-align: center;
    text-transform: uppercase;
}

.mab2025 .safety h3 {
    margin: 5px 0 20px;
    color: #de1268;
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0;
}

.mab2025 .safety p:last-child {
    margin-bottom: 0;
}

.mab2025 .safety .emergency {
    display: grid;
    grid-template-columns: 1fr;
}

.mab2025 .safety .emergency-left {
    padding-right: 0;
    order: 2;
}

.mab2025 .safety .emergency-left p strong {
    color: #de1268;
}

.mab2025 .safety .emergency-right {
    width: 100%;
    margin-bottom: 30px;
    order: 1;
    position: relative;
    overflow: hidden;
}

.mab2025 .safety .emergency-right img {
    width: 100%;
    height: 345px;
    object-fit: cover;
}

.mab2025 .safety .swiper .swiper-button-prev {
    left: -10px;
    border-radius: 0 3px 3px 0;
}

.mab2025 .safety .swiper .swiper-button-next {
    right: -10px;
    border-radius: 3px 0 0 3px;
}

.mab2025 .safety .swiper .swiper-button-prev,
.mab2025 .safety .swiper .swiper-button-next {
    background: #FFF;
    width: 48px;
    height: 48px;
    top: 165px;
}

.mab2025 .safety .swiper .swiper-button-prev::after,
.mab2025 .safety .swiper .swiper-button-next::after {
    background: transparent;
    color: #1f375c;
    font-size: 20px;
}

.mab2025 .safety .emergency-left .btn {
    background: #de1268;
    width: 220px;
    height: 60px;
    margin: 40px 0 0;
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    transition: 0.4s;
    border-radius: 3px;
}

.mab2025 .safety .emergency-left .btn:hover {
    background: #333;
}

/* Access */

.mab2025 .access {
    background: #f7f7f7;
}

.mab2025 .access-ctn {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 0;
}

.mab2025 .access-ctn-text {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 40px 0;
    order: 2;
}

.mab2025 .access-ctn-text p strong {
    color: #de1268;
}

.mab2025 .access-ctn-image {
    position: relative;
}

.mab2025 .access-ctn-image ul {
    top: 0;
    left: 0;
    margin: 0;
    font-size: 18px;
    letter-spacing: 0;
    color: #de1268;
}

.mab2025 .access-ctn-image img {
    max-width: 100%;
}

.mab2025 .access-ctn-image h4 {
    text-align: center;
    text-transform: none;
    letter-spacing: 0;
    font-size: 22px;
    margin: 0 0 30px;
    font-weight: 700;
}

.mab2025 .faq h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 20px;
    margin: 0 0 40px;
    color: #de1268;
    font-family: 'Roboto', sans-serif;
}

.mab2025 .faq h2 img {
    max-height: 60px;
}

.mab2025 .faq .panel-group h4 {
    padding-left: 0;
}

.mab2025 .faq .panel-group p,
.mab2025 .faq .panel-group li,
.mab2025 .faq .panel-group a,
.mab2025 .faq .panel-group span {
    font-size: 16px;
    letter-spacing: 0;
}


/* RESPONSIVE */

@media screen and (min-width: 768px) {
    .mab2025 section {
        padding: 80px 0;
    }

    .mab2025 h2 {
        font-size: 38px;
    }

    .mab2025 p {
        font-size: 20px;
    }

    /* hero */

    .mab2025 .hero {
        padding: 160px 0 40px;
    }

    .mab2025 .hero .bg .mobile {
        display: none;
    }
    
    .mab2025 .hero .bg .desktop {
        display: block;
    }

    .mab2025 .hero .call-us {
        color: #FFF;
        font-size: 30px;
        font-weight: 700;
        position: absolute;
        right: 20px;
        top: -63px;
    }

    .mab2025 .hero h1 {
        max-width: 840px;
        margin: 0 0 10px;
        font-size: 60px;
    }

    .mab2025 .hero h1 span {
        font-size: 46px;
        display: block;
        margin: 0 0 0;
        font-weight: 500;
        letter-spacing: -0.5px;
    }

    .mab2025 .hero h2 {
        max-width: 703px;
        margin: 0 0 60px;
        font-size: 23px;
        text-align: right;
    }

    .mab2025 .hero--3 h1 {
        max-width: 740px;
        margin: 0 0 60px;
        font-size: 45px;
    }

    .mab2025 .hero--3 h2 {
        max-width: 740px;
        margin: 0 0 20px;
        font-size: 35px;
    }

    .mab2025 .hero--3 h2 br {
        display: inline-block;
    }

    /* quick nav */

    .mab2025 .quick-nav ul {
        justify-content: center;
        gap: 0;
        padding: 0;
    }

    .mab2025 .quick-nav ul li {
        display: block;
        margin: 0;
    }

    .mab2025 .quick-nav ul li.buy a {
        width: 148px;
        height: 48px;
        margin: 0;
    }
 
    /* Remote Manage */

    .mab2025 .remote-manage {
        padding: 60px 0 20px;
    }

    .mab2025 .remote-manage-ctn {
        display: grid;
        gap: 0 100px;
        grid-template-columns: 1fr 1fr;
    }

    .mab2025 .remote-manage-slider {
        margin: 0;
    }

    .mab2025 .remote-manage-text {
        max-width: 450px;
        padding-bottom: 40px;
    }

    .mab2025 .remote-manage-text h2 {
        margin: 0 0 20px;
    }

    .mab2025 .remote-manage-text p:last-child {
        margin: 20px 0 0;
    }

    /* Carrier Support */

    .mab2025 .carrier-support-ctn {
        flex-direction: row;
        justify-content: space-between;
    }


    .mab2025 .carrier-support-ctn-text {
        max-width: 460px;
        order: 2;
        display: flex;
        flex-direction: column;
        gap: 40px 0;
    }

    .mab2025 .carrier-support-ctn-image {
        max-width: calc(50% - 50px);
        margin: 0;
    }

    /* safety */

    .mab2025 .safety {
        padding: 100px 0 80px;
    }

    .mab2025 .safety h2 {
        margin-bottom: 60px;
    }

    .mab2025 .safety .emergency {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .mab2025 .safety h3 {
        font-size: 38px;
        margin: 0 0 30px;
    }

    .mab2025 .safety .emergency-right img {
        height: 100%;
    }

    .mab2025 .safety .emergency-left {
        padding-left: 50px;
        order: 3;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .mab2025 .safety .emergency-right {
        height: 420px;
        margin: 0;
        order: 2;
    }

    .mab2025 .safety .emergency-right .swiper {
        height: 100%;
    }

    .mab2025 .safety .swiper .swiper-button-prev {
        left: 0;
    }
    
    .mab2025 .safety .swiper .swiper-button-next {
        right: 0;
    }
    
    .mab2025 .safety .swiper .swiper-button-prev,
    .mab2025 .safety .swiper .swiper-button-next {
        background: #FFF;
        width: 60px;
        height: 60px;
        top: 50%;
    }
    
    .mab2025 .safety .swiper .swiper-button-prev::after,
    .mab2025 .safety .swiper .swiper-button-next::after {
        background: transparent;
        color: #1f375c;
        font-size: 24px;
    }

    /* access */

    .mab2025 .access-ctn {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 50px;
    }

    .mab2025 .access-ctn-text {
        order: 0;
    }
}

@media screen and (min-width: 1200px) {

    /* hero */

    .mab2025 .hero {
        padding: 180px 0 60px;
    }

    .mab2025 .hero {
        min-height: 490px;
    }

    .mab2025 .quick-nav {
        top: 490px;
    }

    /* key featuers */

    .mab2025 .key-features .features .feature:first-child {
        margin-left: unset;
    }

    .mab2025 .key-features .swiper {
        padding-right: unset;
    }

    .mab2025 .access-ctn-image ul {
        position: absolute;
    }

    .mab2025 .access-ctn-image ul li {
        font-size: 20px;
    }
}