/* Abstrak Contact breadcrumb
   Background goes under transparent header/menu.
   Shapes stay BELOW the menu (desktop + mobile). */

.main_menu,
.main_menu_2,
.main_menu_3 {
    z-index: 999 !important;
}

header {
    position: relative;
    z-index: 1000;
}

/* Top bar always solid — inverted: dark in light mode, white in night mode */
body:has(.breadcrum-area) .header_2 {
    background: #27272E !important;
}

body:has(.breadcrum-area) .main_menu.main_menu_2:not(.menu_fix) {
    background: transparent !important;
}

body:has(.sign_in) .header_2,
body:has(.sign_up) .header_2 {
    background: #27272E !important;
}

body:has(.sign_in) .main_menu.main_menu_2,
body:has(.sign_in) .main_menu.main_menu_2:not(.menu_fix),
body:has(.sign_up) .main_menu.main_menu_2,
body:has(.sign_up) .main_menu.main_menu_2:not(.menu_fix) {
    background: #ffffff !important;
}

.main_menu.main_menu_2.menu_fix {
    background: var(--colorWhite) !important;
}

.breadcrum-area {
    --abstrak-primary: var(--colorPrimary, #3399ff);
    --abstrak-gray: #999FAE;
    --abstrak-dark: var(--colorBlack, #27272E);
    --abstrak-gradient: var(--gradientPrimary, linear-gradient(90deg, #ECF2F6 0%, rgba(236, 242, 246, 0) 70.31%));

    background: var(--abstrak-gradient) !important;
    background-image: var(--abstrak-gradient) !important;
    /* Pull under topbar+menu so BG sits behind header */
    margin-top: -120px;
    padding: 280px 0 48px;
    position: relative;
    z-index: 0;
    overflow: visible;
}

@media only screen and (max-width: 991px) {
    .breadcrum-area {
        margin-top: -100px;
        padding: 240px 0 38px;
    }
}

@media only screen and (max-width: 767px) {
    .breadcrum-area {
        margin-top: -90px;
        padding: 200px 0 24px;
    }

    .breadcrum-area .breadcrumb .title {
        font-size: clamp(1.75rem, 8vw, 2.4rem);
        width: 100%;
    }
}

.breadcrum-area .container {
    position: relative;
    z-index: 3;
}

.breadcrum-area .breadcrumb {
    display: block;
    position: relative;
    z-index: 3;
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrum-area .axil-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0 -7px 38px;
    padding: 0;
    gap: 0;
    background: transparent;
    box-shadow: none;
}

@media only screen and (max-width: 767px) {
    .breadcrum-area .axil-breadcrumb {
        margin: 0 -7px 24px;
    }
}

.breadcrum-area .axil-breadcrumb li {
    display: inline-block;
    color: var(--abstrak-primary);
    font-weight: 500;
    position: relative;
    margin: 0 7px;
    line-height: 26px;
    list-style: none;
}

.breadcrum-area .axil-breadcrumb li::after,
.breadcrum-area .breadcrumb_text ul li::after {
    display: none !important;
}

.breadcrum-area .axil-breadcrumb li.item-home:after,
.breadcrum-area .axil-breadcrumb li.item-current:after {
    content: none;
}

.breadcrum-area .axil-breadcrumb .separator {
    width: 3px;
    height: 3px;
    padding: 0;
    margin: 0 7px;
    border-radius: 50%;
    background: var(--abstrak-gray);
    align-self: center;
}

.breadcrum-area .axil-breadcrumb .bread-link,
.breadcrum-area .axil-breadcrumb a {
    color: var(--abstrak-gray);
    font-size: 16px;
    font-weight: 500;
    text-transform: none;
    opacity: 1;
    font-family: inherit;
}

.breadcrum-area .axil-breadcrumb .bread-link:hover,
.breadcrum-area .axil-breadcrumb a:hover {
    color: var(--abstrak-primary);
}

.breadcrum-area .axil-breadcrumb .bread-current {
    color: var(--abstrak-primary);
    font-size: 16px;
    font-weight: 500;
}

.breadcrum-area .breadcrumb .title {
    margin: 0;
    width: 80%;
    color: var(--abstrak-dark);
    font-size: clamp(2.2rem, 4vw, 3.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    text-transform: none;
}

@media only screen and (max-width: 991px) {
    .breadcrum-area .breadcrumb .title {
        width: 100%;
    }
}

.breadcrum-area .shape-group-8 {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.breadcrum-area .shape-group-8 .shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    list-style: none;
}

.breadcrum-area .shape-group-8 .shape img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    position: relative;
}

/* Left shape — inside only, bottom */
.breadcrum-area .shape-group-8 .shape.shape-1 {
    bottom: 0;
    left: 0;
    top: auto;
    right: auto;
    max-width: min(55%, 560px);
    overflow: hidden;
}

.breadcrum-area .shape-group-8 .shape.shape-1 img {
    display: block;
    width: 100%;
    max-width: none;
}

@media only screen and (max-width: 767px) {
    .breadcrum-area .shape-group-8 .shape.shape-1 {
        display: none;
    }
}

/* Right peach — a bit smaller + higher */
.breadcrum-area .shape-group-8 .shape.shape-2 {
    top: 110px;
    right: 0;
    text-align: right;
    z-index: 0;
}

.breadcrum-area .shape-group-8 .shape.shape-2 img {
    width: 64%;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .breadcrum-area .shape-group-8 .shape.shape-2 img {
        width: 60%;
    }
}

@media only screen and (max-width: 1199px) {
    .breadcrum-area .shape-group-8 .shape.shape-2 img {
        width: 55%;
    }
}

@media only screen and (max-width: 991px) {
    .breadcrum-area .shape-group-8 .shape.shape-2 {
        top: 100px;
        right: 0;
    }

    .breadcrum-area .shape-group-8 .shape.shape-2 img {
        width: 42%;
        max-width: 170px;
    }
}

@media only screen and (max-width: 767px) {
    .breadcrum-area .shape-group-8 .shape.shape-2 {
        top: 88px;
        right: 0;
    }

    .breadcrum-area .shape-group-8 .shape.shape-2 img {
        width: 54%;
        max-width: 198px;
    }
}

/* Line (middle) — a bit lower; much lower on mobile */
.breadcrum-area .shape-group-8 .shape.shape-3 {
    top: 200px;
    left: 0;
}

@media only screen and (max-width: 991px) {
    .breadcrum-area .shape-group-8 .shape.shape-3 {
        top: 185px;
        opacity: 0.5;
    }
}

@media only screen and (max-width: 767px) {
    .breadcrum-area .shape-group-8 .shape.shape-3 {
        display: block;
        top: 230px;
        opacity: 0.45;
    }
}

/* Night mode */
html.night-mode .breadcrum-area,
body.night-mode .breadcrum-area,
html.active-dark-mode .breadcrum-area,
body.active-dark-mode .breadcrum-area {
    --abstrak-gradient: none;
    --abstrak-dark: #D3D3D4;
    --abstrak-gray: #999FAE;
    --abstrak-primary: #3399ff;
    background: #27272E !important;
    background-image: none !important;
}

html.night-mode body:has(.breadcrum-area) .header_2,
body.night-mode:has(.breadcrum-area) .header_2,
html.active-dark-mode body:has(.breadcrum-area) .header_2,
body.active-dark-mode:has(.breadcrum-area) .header_2 {
    background-color: #ffffff !important;
}

html.night-mode body:has(.breadcrum-area) .main_menu.main_menu_2:not(.menu_fix),
body.night-mode:has(.breadcrum-area) .main_menu.main_menu_2:not(.menu_fix) {
    background: transparent !important;
}

html.night-mode body:has(.breadcrum-area) .main_menu.main_menu_2.menu_fix,
body.night-mode:has(.breadcrum-area) .main_menu.main_menu_2.menu_fix {
    background: #27272E !important;
}

html.night-mode body:has(.sign_in) .header_2,
html.night-mode body:has(.sign_up) .header_2,
body.night-mode:has(.sign_in) .header_2,
body.night-mode:has(.sign_up) .header_2,
html.active-dark-mode body:has(.sign_in) .header_2,
html.active-dark-mode body:has(.sign_up) .header_2,
body.active-dark-mode:has(.sign_in) .header_2,
body.active-dark-mode:has(.sign_up) .header_2 {
    background: #ffffff !important;
}

html.night-mode body:has(.sign_in) .main_menu.main_menu_2,
html.night-mode body:has(.sign_in) .main_menu.main_menu_2:not(.menu_fix),
body.night-mode:has(.sign_in) .main_menu.main_menu_2,
body.night-mode:has(.sign_in) .main_menu.main_menu_2:not(.menu_fix),
html.night-mode body:has(.sign_up) .main_menu.main_menu_2,
html.night-mode body:has(.sign_up) .main_menu.main_menu_2:not(.menu_fix),
body.night-mode:has(.sign_up) .main_menu.main_menu_2,
body.night-mode:has(.sign_up) .main_menu.main_menu_2:not(.menu_fix) {
    background: #27272E !important;
}

html.night-mode .main_menu.main_menu_2.menu_fix,
body.night-mode .main_menu.main_menu_2.menu_fix {
    background: #27272E !important;
}

html.night-mode .breadcrum-area .shape-group-8 .shape img,
body.night-mode .breadcrum-area .shape-group-8 .shape img,
html.active-dark-mode .breadcrum-area .shape-group-8 .shape img,
body.active-dark-mode .breadcrum-area .shape-group-8 .shape img {
    filter: brightness(0.3);
}

html.night-mode .navbar-toggler.btn-wrap,
body.night-mode .navbar-toggler.btn-wrap {
    background-color: #292930 !important;
}

html.night-mode .navbar-toggler.btn-wrap span,
body.night-mode .navbar-toggler.btn-wrap span {
    background-color: #D3D3D4 !important;
}

.breadcrumb_area.abstrak_breadcrumb {
    display: none !important;
}

/* Auth pages — top bar inherits global inverted colors; hide footer contact widget */
body:has(.sign_up) .header_2 .header_left p,
body:has(.sign_in) .header_2 .header_left p {
    color: #ffffff !important;
}

body:has(.sign_up) .header_2 .header_left p i,
body:has(.sign_in) .header_2 .header_left p i {
    color: var(--colorPrimary) !important;
}

body:has(.sign_up) .header_2 .header_right ul li a,
body:has(.sign_in) .header_2 .header_right ul li a,
body:has(.sign_up) .header_2 .header_right .nice-select .current,
body:has(.sign_in) .header_2 .header_right .nice-select .current {
    color: #ffffff !important;
}

body:has(.sign_up) .header_2 .header_right .nice-select:after,
body:has(.sign_in) .header_2 .header_right .nice-select:after {
    border-bottom-color: #ffffff;
    border-right-color: #ffffff;
}

html.night-mode body:has(.sign_up) .header_2 .header_left p,
html.night-mode body:has(.sign_in) .header_2 .header_left p,
body.night-mode:has(.sign_up) .header_2 .header_left p,
body.night-mode:has(.sign_in) .header_2 .header_left p,
html.active-dark-mode body:has(.sign_up) .header_2 .header_left p,
html.active-dark-mode body:has(.sign_in) .header_2 .header_left p,
body.active-dark-mode:has(.sign_up) .header_2 .header_left p,
body.active-dark-mode:has(.sign_in) .header_2 .header_left p {
    color: #27272E !important;
}

html.night-mode body:has(.sign_up) .header_2 .header_right ul li a,
html.night-mode body:has(.sign_in) .header_2 .header_right ul li a,
body.night-mode:has(.sign_up) .header_2 .header_right ul li a,
body.night-mode:has(.sign_in) .header_2 .header_right ul li a,
html.night-mode body:has(.sign_up) .header_2 .header_right .nice-select .current,
html.night-mode body:has(.sign_in) .header_2 .header_right .nice-select .current,
body.night-mode:has(.sign_up) .header_2 .header_right .nice-select .current,
body.night-mode:has(.sign_in) .header_2 .header_right .nice-select .current,
html.active-dark-mode body:has(.sign_up) .header_2 .header_right ul li a,
html.active-dark-mode body:has(.sign_in) .header_2 .header_right ul li a,
body.active-dark-mode:has(.sign_up) .header_2 .header_right ul li a,
body.active-dark-mode:has(.sign_in) .header_2 .header_right ul li a,
html.active-dark-mode body:has(.sign_up) .header_2 .header_right .nice-select .current,
html.active-dark-mode body:has(.sign_in) .header_2 .header_right .nice-select .current,
body.active-dark-mode:has(.sign_up) .header_2 .header_right .nice-select .current,
body.active-dark-mode:has(.sign_in) .header_2 .header_right .nice-select .current {
    color: #27272E !important;
}

html.night-mode body:has(.sign_up) .header_2 .header_right .nice-select:after,
html.night-mode body:has(.sign_in) .header_2 .header_right .nice-select:after,
body.night-mode:has(.sign_up) .header_2 .header_right .nice-select:after,
body.night-mode:has(.sign_in) .header_2 .header_right .nice-select:after,
html.active-dark-mode body:has(.sign_up) .header_2 .header_right .nice-select:after,
html.active-dark-mode body:has(.sign_in) .header_2 .header_right .nice-select:after,
body.active-dark-mode:has(.sign_up) .header_2 .header_right .nice-select:after,
body.active-dark-mode:has(.sign_in) .header_2 .header_right .nice-select:after {
    border-bottom-color: #525064;
    border-right-color: #525064;
}

body:has(.sign_up) .footer_top_contact,
body:has(.sign_in) .footer_top_contact {
    display: none !important;
}

body:has(.sign_up) .footer_2.footer_2--abstrak-bg,
body:has(.sign_in) .footer_2.footer_2--abstrak-bg {
    margin-top: 80px !important;
}

body:has(.sign_up) .sign_in,
body:has(.sign_in) .sign_in {
    margin-bottom: 0 !important;
}

/* Portfolio details — Abstrak single-breadcrumb banner
   https://new.axilthemes.com/themes/abstrak/projects/web-application-2/ */
.breadcrum-area.breadcrumb-banner.single-breadcrumb {
    padding: 220px 0 48px;
    overflow: visible;
    z-index: 3;
}

/* Left bubble must not look sliced — allow full shape to show */
.breadcrum-area.single-breadcrumb .shape-group-8 .shape.shape-1 {
    overflow: visible;
    bottom: -12%;
    max-width: min(50%, 520px);
}

.breadcrum-area.service-details-banner .shape-group-8 .shape.shape-1,
.breadcrum-area.services-banner .shape-group-8 .shape.shape-1 {
    overflow: visible;
    bottom: -8%;
}

@media only screen and (max-width: 1199px) {
    .breadcrum-area.breadcrumb-banner.single-breadcrumb {
        padding: 200px 0 38px;
    }
}

@media only screen and (max-width: 991px) {
    .breadcrum-area.breadcrumb-banner.single-breadcrumb {
        padding: 210px 0 28px;
    }
}

@media only screen and (max-width: 767px) {
    .breadcrum-area.breadcrumb-banner.single-breadcrumb {
        padding: 210px 0 24px;
    }
}

.breadcrum-area.single-breadcrumb .container {
    z-index: 3;
}

.breadcrum-area.single-breadcrumb .shape-group-8 {
    z-index: 1;
}

.breadcrum-area.single-breadcrumb .section-heading {
    text-align: left;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.breadcrum-area.single-breadcrumb .section-heading.heading-left {
    text-align: left;
}

.breadcrum-area.single-breadcrumb .section-heading .title {
    margin: 0 0 24px;
    width: 100%;
    color: var(--abstrak-dark);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    text-transform: none;
}

.breadcrum-area.single-breadcrumb .portfolio_breadcrumb_meta {
    margin-top: 0;
    justify-content: flex-start;
}

.breadcrum-area.single-breadcrumb .portfolio_breadcrumb_meta .left_info {
    justify-content: flex-start;
    gap: 16px;
}

.breadcrum-area.single-breadcrumb .portfolio_breadcrumb_meta .left_info li {
    color: var(--paraColor, #525260);
    font-family: var(--headingFont);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
}

.breadcrum-area.single-breadcrumb .portfolio_breadcrumb_meta .left_info li span {
    color: var(--colorWhite);
    font-family: var(--headingFont);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    background: var(--colorPrimary);
    padding: 7px 20px;
    border-radius: 6px;
}

.breadcrum-area.single-breadcrumb .portfolio_breadcrumb_meta .left_info li i {
    margin-right: 5px;
}

@media only screen and (max-width: 991px) {
    .breadcrum-area.single-breadcrumb .section-heading {
        margin-bottom: 24px;
    }

    .breadcrum-area.single-breadcrumb .section-heading .title {
        margin-bottom: 0;
        text-align: center;
    }

    .breadcrum-area.single-breadcrumb .banner-thumbnail {
        margin-top: 0;
        margin-right: 0;
        width: 100%;
        text-align: center;
    }

    .breadcrum-area.single-breadcrumb .portfolio_breadcrumb_meta--mobile {
        justify-content: center;
        margin-top: 24px;
        margin-bottom: 0;
    }

    .breadcrum-area.single-breadcrumb .portfolio_breadcrumb_meta--mobile .left_info {
        justify-content: center;
        width: 100%;
    }
}

.breadcrum-area.single-breadcrumb .section-heading p {
    margin: 0;
    width: 100%;
    max-width: 520px;
    color: var(--abstrak-gray);
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
}

@media only screen and (max-width: 767px) {
    .breadcrum-area.single-breadcrumb .section-heading p {
        font-size: 16px;
    }
}

.breadcrum-area.single-breadcrumb .banner-thumbnail {
    position: relative;
    z-index: 2;
    text-align: right;
    margin-top: 48px;
    margin-right: -8%;
    width: 115%;
    max-width: none;
    perspective: 1000px;
    transform-style: preserve-3d;
}

@media only screen and (max-width: 1199px) {
    .breadcrum-area.single-breadcrumb .banner-thumbnail {
        margin-top: 36px;
        margin-right: -4%;
        width: 110%;
    }
}

@media only screen and (max-width: 991px) {
    .breadcrum-area.single-breadcrumb .banner-thumbnail {
        text-align: center;
        margin-top: 0;
        margin-right: 0;
        width: 100%;
    }
}

.breadcrum-area.single-breadcrumb .banner-thumbnail img,
.breadcrum-area.single-breadcrumb .banner-thumbnail .paralax-image {
    display: inline-block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    transform: perspective(1000px) rotateX(0) rotateY(0) scale3d(1, 1, 1);
    transition: transform 0.45s cubic-bezier(0.03, 0.98, 0.52, 0.99);
    transform-style: preserve-3d;
    will-change: transform;
}

.breadcrum-area.single-breadcrumb .banner-thumbnail.is-tilting .paralax-image {
    transition: transform 0.08s linear;
}

.breadcrum-area.single-breadcrumb .shape-group-8 .shape.shape-2 {
    z-index: 1;
}

.breadcrum-area.single-breadcrumb .shape-group-8 .shape.shape-2 img {
    width: 78%;
}

@media only screen and (max-width: 1199px) {
    .breadcrum-area.single-breadcrumb .shape-group-8 .shape.shape-2 img {
        width: 60%;
    }
}

@media only screen and (max-width: 991px) {
    .breadcrum-area.single-breadcrumb .shape-group-8 .shape.shape-2 img {
        width: 48%;
        max-width: 190px;
    }
}

.breadcrum-area.single-breadcrumb .shape-group-8 .shape.shape-3 {
    top: auto;
    bottom: -40px;
    z-index: 0;
}

@media only screen and (max-width: 1199px) {
    .breadcrum-area.single-breadcrumb .shape-group-8 .shape.shape-3 {
        bottom: -60px;
        opacity: 0.5;
    }
}

.portfolio_details_content {
    position: relative;
    z-index: 1;
    background-color: #ffffff;
}

html.night-mode .portfolio_details_content,
body.night-mode .portfolio_details_content,
html.active-dark-mode .portfolio_details_content,
body.active-dark-mode .portfolio_details_content {
    background-color: #27272E;
}

/* Abstrak single-portfolio content below breadcrumb */
.single-portfolio-area.section-padding {
    padding: 100px 0 110px;
}

@media only screen and (max-width: 1199px) {
    .single-portfolio-area.section-padding {
        padding: 80px 0 70px;
    }
}

@media only screen and (max-width: 991px) {
    .single-portfolio-area.section-padding {
        padding: 60px 0 50px;
    }
}

@media only screen and (max-width: 767px) {
    .single-portfolio-area.section-padding {
        padding: 40px 0 30px;
    }
}

.single-portfolio-area .section-heading {
    text-align: left;
    margin-bottom: 24px;
}

.single-portfolio-area .portfolio_details_meta {
    justify-content: flex-start;
    margin-top: 0;
    margin-bottom: 10px;
}

.single-portfolio-area .portfolio_details_meta .left_info {
    justify-content: flex-start;
    width: 100%;
}

.single-portfolio-area .portfolio_details_text {
    text-align: left;
}

.single-portfolio-area .portfolio_details_text h2 {
    margin-top: 20px;
    margin-bottom: 0;
    color: var(--colorBlack);
    font-family: var(--headingFont);
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.8px;
    line-height: 1.2;
    text-transform: uppercase;
}

.single-portfolio-area .portfolio_details_text p {
    margin-top: 25px;
    color: var(--paraColor);
    font-family: var(--paraFont);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.single-portfolio-area .portfolio_details_text .common_btn {
    margin-top: 30px;
}

/*
 * Classic Restaront "Submit now" button — rectangular + corner-border hover.
 * Overrides home_2 pill + white slide (::after fill / ::before disabled).
 * About CTAs keep the eye icon.
 */
.home_2 .single-portfolio-area .portfolio_help_btn,
.single-portfolio-area .portfolio_help_btn,
.home_2 .contact_form .common_btn,
.contact_form .common_btn,
.home_2 .about_us_2_text .common_btn,
.about_us_2_text .common_btn,
.home_2 .about_us_story_text .common_btn,
.about_us_story_text .common_btn,
.home_2 .about_video_text .common_btn,
.about_video_text .common_btn,
.home_2 .why_choose_text .common_btn,
.why_choose_text .common_btn {
    border-radius: 6px !important;
    -webkit-border-radius: 6px !important;
    -moz-border-radius: 6px !important;
    -ms-border-radius: 6px !important;
    -o-border-radius: 6px !important;
    padding: 14px 20px 11px 20px;
    font-weight: 500;
    text-transform: uppercase;
    background: var(--colorPrimary) !important;
    color: var(--colorWhite) !important;
    overflow: visible;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.home_2 .single-portfolio-area .portfolio_help_btn:hover,
.single-portfolio-area .portfolio_help_btn:hover,
.home_2 .contact_form .common_btn:hover,
.contact_form .common_btn:hover,
.home_2 .about_us_2_text .common_btn:hover,
.about_us_2_text .common_btn:hover,
.home_2 .about_us_story_text .common_btn:hover,
.about_us_story_text .common_btn:hover,
.home_2 .about_video_text .common_btn:hover,
.about_video_text .common_btn:hover,
.home_2 .why_choose_text .common_btn:hover,
.why_choose_text .common_btn:hover {
    background: var(--colorWhite) !important;
    color: var(--colorPrimary) !important;
}

.home_2 .single-portfolio-area .portfolio_help_btn::before,
.single-portfolio-area .portfolio_help_btn::before,
.home_2 .contact_form .common_btn::before,
.contact_form .common_btn::before,
.home_2 .about_us_2_text .common_btn::before,
.about_us_2_text .common_btn::before,
.home_2 .about_us_story_text .common_btn::before,
.about_us_story_text .common_btn::before,
.home_2 .about_video_text .common_btn::before,
.about_video_text .common_btn::before,
.home_2 .why_choose_text .common_btn::before,
.why_choose_text .common_btn::before {
    content: '';
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    z-index: 2;
    opacity: 0;
    background: transparent !important;
    border: none;
    border-top: 1px solid var(--colorPrimary);
    border-left: 1px solid var(--colorPrimary);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    transition: all linear .3s;
}

.home_2 .single-portfolio-area .portfolio_help_btn::after,
.single-portfolio-area .portfolio_help_btn::after,
.home_2 .contact_form .common_btn::after,
.contact_form .common_btn::after,
.home_2 .about_us_2_text .common_btn::after,
.about_us_2_text .common_btn::after,
.home_2 .about_us_story_text .common_btn::after,
.about_us_story_text .common_btn::after,
.home_2 .about_video_text .common_btn::after,
.about_video_text .common_btn::after,
.home_2 .why_choose_text .common_btn::after,
.why_choose_text .common_btn::after {
    content: '';
    display: block !important;
    position: absolute;
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    z-index: 2;
    opacity: 0;
    background: transparent !important;
    border: none;
    border-bottom: 1px solid var(--colorPrimary);
    border-right: 1px solid var(--colorPrimary);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    transition: all linear .3s;
}

.home_2 .single-portfolio-area .portfolio_help_btn:hover::before,
.home_2 .single-portfolio-area .portfolio_help_btn:hover::after,
.single-portfolio-area .portfolio_help_btn:hover::before,
.single-portfolio-area .portfolio_help_btn:hover::after,
.home_2 .contact_form .common_btn:hover::before,
.home_2 .contact_form .common_btn:hover::after,
.contact_form .common_btn:hover::before,
.contact_form .common_btn:hover::after,
.home_2 .about_us_2_text .common_btn:hover::before,
.home_2 .about_us_2_text .common_btn:hover::after,
.about_us_2_text .common_btn:hover::before,
.about_us_2_text .common_btn:hover::after,
.home_2 .about_us_story_text .common_btn:hover::before,
.home_2 .about_us_story_text .common_btn:hover::after,
.about_us_story_text .common_btn:hover::before,
.about_us_story_text .common_btn:hover::after,
.home_2 .about_video_text .common_btn:hover::before,
.home_2 .about_video_text .common_btn:hover::after,
.about_video_text .common_btn:hover::before,
.about_video_text .common_btn:hover::after,
.home_2 .why_choose_text .common_btn:hover::before,
.home_2 .why_choose_text .common_btn:hover::after,
.why_choose_text .common_btn:hover::before,
.why_choose_text .common_btn:hover::after {
    opacity: 1;
    width: 100%;
    height: 100%;
}

.about_us_2_text .common_btn .icon,
.about_us_story_text .common_btn .icon,
.about_video_text .common_btn .icon,
.why_choose_text .common_btn .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    margin: 0;
    flex-shrink: 0;
    filter: none;
}

.about_us_2_text .common_btn .icon img,
.about_us_story_text .common_btn .icon img,
.about_video_text .common_btn .icon img,
.why_choose_text .common_btn .icon img {
    display: block;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    transition: filter linear .3s;
}

.home_2 .about_us_2_text .common_btn:hover .icon,
.about_us_2_text .common_btn:hover .icon,
.home_2 .about_us_story_text .common_btn:hover .icon,
.about_us_story_text .common_btn:hover .icon,
.home_2 .about_video_text .common_btn:hover .icon,
.about_video_text .common_btn:hover .icon,
.home_2 .why_choose_text .common_btn:hover .icon,
.why_choose_text .common_btn:hover .icon,
.home_2 .about_us_2_text .common_btn:hover .icon img,
.about_us_2_text .common_btn:hover .icon img,
.home_2 .about_us_story_text .common_btn:hover .icon img,
.about_us_story_text .common_btn:hover .icon img,
.home_2 .about_video_text .common_btn:hover .icon img,
.about_video_text .common_btn:hover .icon img,
.home_2 .why_choose_text .common_btn:hover .icon img,
.why_choose_text .common_btn:hover .icon img {
    filter: invert(45%) sepia(100%) saturate(2200%) hue-rotate(195deg) brightness(85%) contrast(100%);
    -webkit-filter: invert(45%) sepia(100%) saturate(2200%) hue-rotate(195deg) brightness(85%) contrast(100%);
}

/* Services listing — same rectangular Submit-now hover + eye icon */
.home_2 .service_item .common_btn,
.service_item .common_btn {
    border-radius: 6px !important;
    -webkit-border-radius: 6px !important;
    -moz-border-radius: 6px !important;
    -ms-border-radius: 6px !important;
    -o-border-radius: 6px !important;
    padding: 14px 20px 11px 20px;
    font-weight: 500;
    text-transform: uppercase;
    background: var(--colorPrimary) !important;
    color: var(--colorWhite) !important;
    overflow: visible;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.home_2 .service_item .common_btn:hover,
.service_item .common_btn:hover {
    background: var(--colorWhite) !important;
    color: var(--colorPrimary) !important;
}

.home_2 .service_item .common_btn::before,
.service_item .common_btn::before {
    content: '';
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    z-index: 2;
    opacity: 0;
    background: transparent !important;
    border: none;
    border-top: 1px solid var(--colorPrimary);
    border-left: 1px solid var(--colorPrimary);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    transition: all linear .3s;
}

.home_2 .service_item .common_btn::after,
.service_item .common_btn::after {
    content: '';
    display: block !important;
    position: absolute;
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    z-index: 2;
    opacity: 0;
    background: transparent !important;
    border: none;
    border-bottom: 1px solid var(--colorPrimary);
    border-right: 1px solid var(--colorPrimary);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    transition: all linear .3s;
}

.home_2 .service_item .common_btn:hover::before,
.home_2 .service_item .common_btn:hover::after,
.service_item .common_btn:hover::before,
.service_item .common_btn:hover::after {
    opacity: 1;
    width: 100%;
    height: 100%;
}

.service_item .common_btn .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    margin: 0;
    flex-shrink: 0;
    filter: none;
}

.service_item .common_btn .icon img {
    display: block;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    transition: filter linear .3s;
}

.home_2 .service_item .common_btn:hover .icon,
.service_item .common_btn:hover .icon,
.home_2 .service_item .common_btn:hover .icon img,
.service_item .common_btn:hover .icon img {
    filter: invert(45%) sepia(100%) saturate(2200%) hue-rotate(195deg) brightness(85%) contrast(100%);
    -webkit-filter: invert(45%) sepia(100%) saturate(2200%) hue-rotate(195deg) brightness(85%) contrast(100%);
}

/* Abstrak services-two banner — title + description + image */
body:has(.service-scroll-navigation-area) .breadcrum-area.breadcrumb-banner.single-breadcrumb.services-banner,
body:has(.service-scroll-navigation-area) .breadcrum-area.services-banner {
    --services-cats-nav-h: 58px;
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: clamp(132px, 16vh, 188px);
    padding-bottom: var(--services-cats-nav-h);
    display: flex;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
}

body:has(.service-scroll-navigation-area) .breadcrum-area.services-banner > .container {
    width: 100%;
}

body:has(.service-scroll-navigation-area) .breadcrum-area.services-banner .shape-group-8 {
    z-index: 1;
    pointer-events: none;
}

.breadcrum-area.services-banner .section-heading .title {
    margin-bottom: 20px;
}

.breadcrum-area.services-banner .section-heading .services-banner-desc,
.breadcrum-area.single-breadcrumb.services-banner .section-heading p.services-banner-desc {
    margin: 0;
    width: 100%;
    max-width: 720px;
    color: var(--paraColor, #525260);
    font-family: var(--paraFont);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    opacity: 1;
}

.breadcrum-area.services-banner .services-banner-thumb {
    position: relative;
    z-index: 2;
    text-align: center;
    perspective: 1000px;
    transform-style: preserve-3d;
    overflow: visible;
    width: 100%;
    max-width: min(100%, 520px);
    margin-left: auto;
    margin-right: auto;
}

.breadcrum-area.services-banner .services-banner-thumb img,
.breadcrum-area.services-banner .services-banner-thumb .paralax-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    transform: perspective(1000px) rotateX(0) rotateY(0) scale3d(1, 1, 1);
    transition: transform 0.45s cubic-bezier(0.03, 0.98, 0.52, 0.99);
    transform-style: preserve-3d;
    will-change: transform;
}

.breadcrum-area.services-banner .services-banner-thumb.is-tilting .paralax-image {
    transition: transform 0.08s linear;
}

.breadcrum-area.services-banner .services-banner-thumb.services_banner_img--loop,
.breadcrum-area.service-details-banner .service-details-banner-thumb.services_banner_img--loop {
    animation: contact-img-loop 7s ease-in-out infinite;
    will-change: transform;
}

/* WOW/Animate.css on the same node overrides float loop — keep thumb loop only */
.breadcrum-area.services-banner .services-banner-thumb.services_banner_img--loop.wow,
.breadcrum-area.service-details-banner .service-details-banner-thumb.services_banner_img--loop.wow,
.breadcrum-area.services-banner .services-banner-thumb.services_banner_img--loop.animated,
.breadcrum-area.service-details-banner .service-details-banner-thumb.services_banner_img--loop.animated {
    animation: contact-img-loop 7s ease-in-out infinite !important;
}

.breadcrum-area.services-banner .services-banner-thumb.services_banner_img--loop.is-tilting,
.breadcrum-area.service-details-banner .service-details-banner-thumb.services_banner_img--loop.is-tilting {
    animation: none;
}

@keyframes contact-img-loop {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(0, -16px, 0) rotate(1.25deg);
    }
}

/* Abstrak service details banner
   https://new.axilthemes.com/themes/abstrak/services/video-production/ */
.breadcrum-area.breadcrumb-banner.single-breadcrumb.service-details-banner {
    padding: 200px 0 38px;
}

@media only screen and (max-width: 1199px) {
    .breadcrum-area.breadcrumb-banner.single-breadcrumb.service-details-banner {
        padding: 190px 0 24px;
    }
}

@media only screen and (max-width: 991px) {
    .breadcrum-area.breadcrumb-banner.single-breadcrumb.service-details-banner {
        padding: 200px 0 20px;
    }
}

@media only screen and (min-width: 992px) {
    .breadcrum-area.service-details-banner > .container > .row.align-items-center {
        align-items: flex-start !important;
        padding-top: 52px;
    }

    .breadcrum-area.service-details-banner .section-heading {
        padding-top: 8px;
        transform: none;
    }
}

.breadcrum-area.service-details-banner .section-heading .title {
    margin-bottom: 20px;
}

.breadcrum-area.service-details-banner .service-details-crumbs {
    margin: 0 -7px 18px;
}

.breadcrum-area.service-details-banner .service-details-crumbs .bread-current {
    color: var(--abstrak-primary);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none !important;
}

.breadcrum-area.service-details-banner .service-details-crumbs a.bread-current:hover {
    opacity: 0.85;
}

.breadcrum-area.service-details-banner .section-heading .service-details-banner-desc,
.breadcrum-area.single-breadcrumb.service-details-banner .section-heading p.service-details-banner-desc {
    margin: 0;
    width: 100%;
    max-width: 540px;
    color: var(--paraColor, #525260);
    font-family: var(--paraFont);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    opacity: 1;
}

.breadcrum-area.service-details-banner .service-details-banner-thumb {
    position: relative;
    z-index: 2;
    text-align: center;
    perspective: 1000px;
    width: 92%;
    max-width: 520px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
}

.breadcrum-area.service-details-banner .service-details-banner-thumb img,
.breadcrum-area.service-details-banner .service-details-banner-thumb .paralax-image {
    display: inline-block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0;
    transform: perspective(1000px) rotateX(0) rotateY(0) scale3d(1, 1, 1);
    transition: transform 0.45s cubic-bezier(0.03, 0.98, 0.52, 0.99);
    transform-style: preserve-3d;
    will-change: transform;
}

.breadcrum-area.service-details-banner .service-details-banner-thumb.is-photo img,
.breadcrum-area.service-details-banner .service-details-banner-thumb.is-photo .paralax-image {
    border-radius: 24px;
}

.breadcrum-area.service-details-banner .service-details-banner-thumb.is-tilting .paralax-image {
    transition: transform 0.08s linear;
}

.breadcrum-area.service-details-banner .shape-group-8 .shape.shape-2 {
    z-index: 1;
}

.breadcrum-area.service-details-banner .shape-group-8 .shape.shape-2 img {
    width: 78%;
}

/* Abstrak dark: shape-group-8 uses brightness(0.3) — do not keep peach/lavender bright */
html.night-mode .breadcrum-area.service-details-banner .shape-group-8 .shape.shape-2 img,
body.night-mode .breadcrum-area.service-details-banner .shape-group-8 .shape.shape-2 img,
html.active-dark-mode .breadcrum-area.service-details-banner .shape-group-8 .shape.shape-2 img,
body.active-dark-mode .breadcrum-area.service-details-banner .shape-group-8 .shape.shape-2 img {
    filter: brightness(0.3);
}

@media only screen and (max-width: 1199px) {
    .breadcrum-area.service-details-banner .shape-group-8 .shape.shape-2 img {
        width: 60%;
    }
}

@media only screen and (max-width: 991px) {
    .breadcrum-area.service-details-banner .section-heading .title,
    .breadcrum-area.service-details-banner .service-details-banner-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .breadcrum-area.service-details-banner .service-details-banner-thumb {
        margin-top: 28px;
        width: 100%;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        float: none;
    }

    .breadcrum-area.service-details-banner .service-details-banner-thumb img,
    .breadcrum-area.service-details-banner .service-details-banner-thumb .paralax-image {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .breadcrum-area.service-details-banner .shape-group-8 .shape.shape-2 img {
        width: 48%;
        max-width: 190px;
    }
}

.service_details_text .service_details_name {
    margin: 0 0 24px;
    color: var(--colorBlack, #27272E);
    font-family: var(--headingFont);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

html.night-mode .service_details_text .service_details_name,
body.night-mode .service_details_text .service_details_name {
    color: #D3D3D4;
}

/* Right shape — Abstrak lavender bubble-21 (not peach bubble-20) */
.breadcrum-area.services-banner .shape-group-8 .shape.shape-2 {
    z-index: 1;
}

.breadcrum-area.services-banner .shape-group-8 .shape.shape-2 img {
    width: 78%;
}

html.night-mode .breadcrum-area.services-banner .shape-group-8 .shape.shape-2 img,
body.night-mode .breadcrum-area.services-banner .shape-group-8 .shape.shape-2 img,
html.active-dark-mode .breadcrum-area.services-banner .shape-group-8 .shape.shape-2 img,
body.active-dark-mode .breadcrum-area.services-banner .shape-group-8 .shape.shape-2 img {
    filter: brightness(0.3);
}

@media only screen and (max-width: 1199px) {
    .breadcrum-area.services-banner .shape-group-8 .shape.shape-2 img {
        width: 60%;
    }
}

@media only screen and (max-width: 991px) {
    body:has(.service-scroll-navigation-area) .breadcrum-area.services-banner {
        padding-top: clamp(118px, 14vh, 156px);
    }

    .breadcrum-area.services-banner .section-heading .title,
    .breadcrum-area.services-banner .services-banner-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .breadcrum-area.services-banner .services-banner-thumb {
        max-width: min(94%, 420px);
        margin-top: 20px;
    }

    .breadcrum-area.services-banner .shape-group-8 .shape.shape-2 img {
        width: 42%;
        max-width: 150px;
    }
}

@media only screen and (max-width: 767px) {
    body:has(.service-scroll-navigation-area) .breadcrum-area.services-banner {
        padding-top: clamp(108px, 13vh, 140px);
    }

    .breadcrum-area.services-banner .services-banner-thumb {
        max-width: min(92%, 340px);
        margin-top: 16px;
    }

    .breadcrum-area.services-banner .section-heading .services-banner-desc,
    .breadcrum-area.single-breadcrumb.services-banner .section-heading p.services-banner-desc {
        font-size: 16px;
        line-height: 1.6;
    }

    .single-portfolio-area .portfolio_details_text h2 {
        font-size: 28px;
    }
}

.single-portfolio-area .axil-btn {
    display: inline-block;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.04em;
    padding: 16px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: 0.3s;
    text-decoration: none;
}

.single-portfolio-area .axil-btn.btn-fill-primary {
    background-color: var(--colorPrimary, #3399ff);
    color: #ffffff;
    border: 1px solid var(--colorPrimary, #3399ff);
}

.single-portfolio-area .axil-btn.btn-fill-primary:hover {
    background-color: var(--colorBlack, #27272E);
    border-color: var(--colorBlack, #27272E);
    color: #ffffff;
}

.single-portfolio-area .why-choose-us .section-heading {
    margin-bottom: 40px;
}

.single-portfolio-area .why-choose-us .section-heading .title {
    margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
    .single-portfolio-area .why-choose-us {
        margin-top: 50px;
    }
}

.single-portfolio-area .why-choose-us .accordion-item {
    border: none;
    border-bottom: 1px solid #E3E6E9;
    background-color: transparent;
    border-radius: 0;
}

.single-portfolio-area .why-choose-us .accordion-item .accordion-button {
    font-size: 22px;
    font-weight: 600;
    color: var(--colorPrimary, #3399ff);
    background-color: transparent;
    box-shadow: none;
    padding: 20px 10px 20px 0;
    display: flex;
    align-items: center;
    gap: 0;
}

.single-portfolio-area .why-choose-us .accordion-item .accordion-button i {
    margin-right: 18px;
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.single-portfolio-area .why-choose-us .accordion-item .accordion-button:after,
.single-portfolio-area .why-choose-us .accordion-item .accordion-button::after {
    display: none;
}

.single-portfolio-area .why-choose-us .accordion-item .accordion-button:not(.collapsed) {
    color: var(--colorPrimary, #3399ff);
    background-color: transparent;
    box-shadow: none;
}

.single-portfolio-area .why-choose-us .accordion-item .accordion-button.collapsed {
    color: var(--colorBlack, #27272E);
}

.single-portfolio-area .why-choose-us .accordion-item .accordion-body {
    padding: 0 0 18px 0;
    color: #525064;
    font-size: 16px;
    line-height: 1.7;
}

html.night-mode .single-portfolio-area .section-heading .title,
body.night-mode .single-portfolio-area .section-heading .title,
html.active-dark-mode .single-portfolio-area .section-heading .title,
body.active-dark-mode .single-portfolio-area .section-heading .title {
    color: #D3D3D4;
}

html.night-mode .single-portfolio-area .section-heading p,
body.night-mode .single-portfolio-area .section-heading p,
html.night-mode .single-portfolio-area .portfolio-details-description,
body.night-mode .single-portfolio-area .portfolio-details-description,
html.night-mode .single-portfolio-area .portfolio-details-description p,
body.night-mode .single-portfolio-area .portfolio-details-description p,
html.night-mode .single-portfolio-area .why-choose-us .accordion-item .accordion-body,
body.night-mode .single-portfolio-area .why-choose-us .accordion-item .accordion-body,
html.active-dark-mode .single-portfolio-area .section-heading p,
body.active-dark-mode .single-portfolio-area .section-heading p {
    color: #999FAE;
}

html.night-mode .single-portfolio-area .why-choose-us .accordion-item,
body.night-mode .single-portfolio-area .why-choose-us .accordion-item,
html.active-dark-mode .single-portfolio-area .why-choose-us .accordion-item,
body.active-dark-mode .single-portfolio-area .why-choose-us .accordion-item {
    border-bottom-color: #3A3A44;
}

html.night-mode .single-portfolio-area .why-choose-us .accordion-item .accordion-button.collapsed,
body.night-mode .single-portfolio-area .why-choose-us .accordion-item .accordion-button.collapsed,
html.active-dark-mode .single-portfolio-area .why-choose-us .accordion-item .accordion-button.collapsed,
body.active-dark-mode .single-portfolio-area .why-choose-us .accordion-item .accordion-button.collapsed {
    color: #D3D3D4;
}

html.night-mode .breadcrum-area.single-breadcrumb .section-heading .title,
body.night-mode .breadcrum-area.single-breadcrumb .section-heading .title,
html.active-dark-mode .breadcrum-area.single-breadcrumb .section-heading .title,
body.active-dark-mode .breadcrum-area.single-breadcrumb .section-heading .title {
    color: #D3D3D4;
}

html.night-mode .breadcrum-area.single-breadcrumb .section-heading p,
body.night-mode .breadcrum-area.single-breadcrumb .section-heading p,
html.active-dark-mode .breadcrum-area.single-breadcrumb .section-heading p,
body.active-dark-mode .breadcrum-area.single-breadcrumb .section-heading p {
    color: #999FAE;
}

html.night-mode .breadcrum-area.services-banner .section-heading .services-banner-desc,
body.night-mode .breadcrum-area.services-banner .section-heading .services-banner-desc,
html.active-dark-mode .breadcrum-area.services-banner .section-heading .services-banner-desc,
body.active-dark-mode .breadcrum-area.services-banner .section-heading .services-banner-desc,
html.night-mode .breadcrum-area.single-breadcrumb.services-banner .section-heading p.services-banner-desc,
body.night-mode .breadcrum-area.single-breadcrumb.services-banner .section-heading p.services-banner-desc,
html.active-dark-mode .breadcrum-area.single-breadcrumb.services-banner .section-heading p.services-banner-desc,
body.active-dark-mode .breadcrum-area.single-breadcrumb.services-banner .section-heading p.services-banner-desc {
    color: #D3D3D4;
}

html.night-mode .breadcrum-area.service-details-banner .section-heading .service-details-banner-desc,
body.night-mode .breadcrum-area.service-details-banner .section-heading .service-details-banner-desc,
html.active-dark-mode .breadcrum-area.service-details-banner .section-heading .service-details-banner-desc,
body.active-dark-mode .breadcrum-area.service-details-banner .section-heading .service-details-banner-desc {
    color: #D3D3D4;
}

/* Sitewide: tighten gap between breadcrumb title and first content block */
.breadcrum-area + section.mt_95,
.breadcrum-area + .nf-portfolio-page .nf-portfolio-page__content > section.mt_95,
.breadcrum-area + .nf-shop-page .nf-shop-page__content > section:first-child.mt_95 {
    margin-top: 48px !important;
}

.breadcrum-area + section.mt_70,
.breadcrum-area + .nf-shop-page .nf-shop-page__content > section:first-child.mt_70 {
    margin-top: 35px !important;
}

.breadcrum-area + section.mt_75,
.breadcrum-area + .nf-shop-page .nf-shop-page__content > section:first-child.mt_75 {
    margin-top: 38px !important;
}

.breadcrum-area + section.mt_115,
.breadcrum-area + .nf-shop-page .nf-shop-page__content > section:first-child.mt_115 {
    margin-top: 58px !important;
}

.breadcrum-area + section.mt_120,
.breadcrum-area + section.menu_grid_view.mt_120,
.breadcrum-area + .nf-menu-page .nf-menu-page__content > section.mt_120,
.breadcrum-area + .nf-shop-page .nf-shop-page__content > section:first-child.mt_120 {
    margin-top: 60px !important;
}

.breadcrum-area + section.pt_120,
.breadcrum-area + section.contact_us.pt_120,
.breadcrum-area + .nf-shop-page .nf-shop-page__content > section:first-child.pt_120 {
    padding-top: 60px !important;
}

.breadcrum-area + section.pt_100,
.breadcrum-area + .nf-shop-page .nf-shop-page__content > section:first-child.pt_100 {
    padding-top: 50px !important;
}

.breadcrum-area.services-banner + .axil-service-area > section.services-category-block.section-padding:first-of-type {
    padding-top: 48px;
}

.breadcrum-area.single-breadcrumb ~ .nf-portfolio-page .single-portfolio-area.section-padding,
.breadcrum-area.single-breadcrumb ~ .nf-portfolio-page .portfolio_details_content.section-padding {
    padding-top: 48px;
}

.breadcrum-area.service-details-banner + section.service_process_area.section-padding,
.breadcrum-area.single-breadcrumb ~ .nf-portfolio-page + section.service_process_area.section-padding {
    padding-top: 48px;
}

@media only screen and (max-width: 1199px) {
    .breadcrum-area.single-breadcrumb ~ .nf-portfolio-page .single-portfolio-area.section-padding,
    .breadcrum-area.single-breadcrumb ~ .nf-portfolio-page .portfolio_details_content.section-padding {
        padding-top: 40px;
    }

    .breadcrum-area.services-banner + .axil-service-area > section.services-category-block.section-padding:first-of-type {
        padding-top: 40px;
    }
}

@media only screen and (max-width: 991px) {
    .breadcrum-area + section.mt_95,
    .breadcrum-area + .nf-portfolio-page .nf-portfolio-page__content > section.mt_95,
    .breadcrum-area + .nf-shop-page .nf-shop-page__content > section:first-child.mt_95 {
        margin-top: 40px !important;
    }

    .breadcrum-area + section.mt_120,
    .breadcrum-area + section.menu_grid_view.mt_120,
    .breadcrum-area + .nf-menu-page .nf-menu-page__content > section.mt_120,
    .breadcrum-area + .nf-shop-page .nf-shop-page__content > section:first-child.mt_120 {
        margin-top: 50px !important;
    }

    .breadcrum-area + section.mt_115,
    .breadcrum-area + .nf-shop-page .nf-shop-page__content > section:first-child.mt_115 {
        margin-top: 48px !important;
    }

    .breadcrum-area + section.pt_120,
    .breadcrum-area + section.contact_us.pt_120,
    .breadcrum-area + .nf-shop-page .nf-shop-page__content > section:first-child.pt_120 {
        padding-top: 50px !important;
    }

    .breadcrum-area.single-breadcrumb ~ .nf-portfolio-page .single-portfolio-area.section-padding,
    .breadcrum-area.single-breadcrumb ~ .nf-portfolio-page .portfolio_details_content.section-padding,
    .breadcrum-area.service-details-banner + section.service_process_area.section-padding {
        padding-top: 36px;
    }
}

@media only screen and (max-width: 767px) {
    .breadcrum-area + section[class*="xs_mt_70"],
    .breadcrum-area + .nf-portfolio-page .nf-portfolio-page__content > section[class*="xs_mt_70"],
    .breadcrum-area + .nf-menu-page .nf-menu-page__content > section[class*="xs_mt_70"],
    .breadcrum-area + .nf-shop-page .nf-shop-page__content > section:first-child[class*="xs_mt_70"] {
        margin-top: 28px !important;
    }

    .breadcrum-area + section[class*="xs_mt_75"],
    .breadcrum-area + .nf-shop-page .nf-shop-page__content > section:first-child[class*="xs_mt_75"] {
        margin-top: 30px !important;
    }

    .breadcrum-area + section[class*="xs_mt_95"],
    .breadcrum-area + .nf-shop-page .nf-shop-page__content > section:first-child[class*="xs_mt_95"] {
        margin-top: 38px !important;
    }

    .breadcrum-area + section[class*="xs_mt_100"],
    .breadcrum-area + section.menu_grid_view[class*="xs_mt_100"],
    .breadcrum-area + .nf-menu-page .nf-menu-page__content > section[class*="xs_mt_100"],
    .breadcrum-area + .nf-shop-page .nf-shop-page__content > section:first-child[class*="xs_mt_100"] {
        margin-top: 40px !important;
    }

    .breadcrum-area + section[class*="xs_pt_100"],
    .breadcrum-area + section.contact_us[class*="xs_pt_100"],
    .breadcrum-area + .nf-shop-page .nf-shop-page__content > section:first-child[class*="xs_pt_100"] {
        padding-top: 40px !important;
    }

    .breadcrum-area.single-breadcrumb ~ .nf-portfolio-page .single-portfolio-area.section-padding,
    .breadcrum-area.single-breadcrumb ~ .nf-portfolio-page .portfolio_details_content.section-padding,
    .breadcrum-area.service-details-banner + section.service_process_area.section-padding {
        padding-top: 28px;
    }
}
