/* Light visual refresh layered on top of the original theme. */
:root {
    --surface-soft: #f6f8fb;
    --surface-border: #e4e9ef;
    --text-main: #18202a;
    --text-soft: #647080;
    --shadow-soft: 0 12px 32px rgba(20, 32, 44, .08);
}

body {
    color: var(--text-main);
    background: #fff;
}

.text {
    color: var(--text-soft);
}

.header-top {
    padding: 10px 0;
    background: #17212b;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header-top ul.contact-info li,
.header-top ul.contact-info a,
.header-top .social-icon li a {
    color: rgba(255, 255, 255, .78);
}

.header-top ul.contact-info li {
    font-size: 14px;
}

.header-top ul.contact-info li:before,
.header-top .social-icon {
    border-color: rgba(255, 255, 255, .14);
}

.header-top ul.contact-info a:hover,
.header-top .social-icon li a:hover {
    color: #fff;
}

.main-header .header-upper {
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--surface-border);
}

.main-header .header-upper .inner-container {
    min-height: 86px;
}

.main-header .header-upper .logo-box .logo {
    padding: 15px 0;
}

.main-header .header-upper .logo-box img {
    max-height: 56px;
    object-fit: contain;
}

.main-menu .navigation {
    margin-left: 30px;
}

.main-menu .navigation > li {
    padding: 28px 0;
    margin-right: 26px;
}

.main-menu .navigation > li > a {
    color: #25313d;
    font-size: 16px;
    font-weight: 600;
}

.main-menu .navigation > li > a:after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--brand-primary);
    opacity: 0;
    transform: scaleX(.35);
    transition: .25s ease;
}

.main-menu .navigation > li:hover > a:after,
.main-menu .navigation > li.current > a:after {
    opacity: 1;
    transform: scaleX(1);
}

.main-menu .navigation > li > ul {
    border: 1px solid var(--surface-border);
    border-radius: 6px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.main-header .header-upper .contact-info {
    margin-left: 22px;
    padding-left: 22px;
}

.main-header .header-upper .contact-info .icon {
    width: 48px;
    height: 48px;
    margin-right: 12px;
    color: var(--brand-primary);
    line-height: 48px;
    background: var(--surface-soft);
}

.main-header .header-upper .contact-info h5 {
    color: #778391;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.main-header .header-upper .contact-info h4 {
    font-size: 19px;
}

.sticky-header {
    box-shadow: 0 8px 24px rgba(20, 32, 44, .08);
}

.banner-section .swiper-slide:before {
    background: rgba(13, 22, 32, .54);
}

.banner-section .content-box h1 {
    max-width: 760px;
    font-size: 64px;
    line-height: 1.1;
}

.banner-section .content-box .text {
    max-width: 650px;
    font-size: 19px;
    line-height: 30px;
}

.btn-style-one {
    padding: 14px 28px;
    padding-right: 52px;
    border-radius: 6px;
    font-size: 16px;
    box-shadow: 0 8px 18px rgba(20, 32, 44, .12);
}

.btn-style-one:after {
    top: 14px;
}

.btn-style-one.style-three {
    padding: 12px 25px;
    padding-right: 49px;
    border-color: var(--surface-border);
    border-radius: 6px;
    box-shadow: none;
}

.btn-style-one.style-three:after {
    top: 12px;
}

.sec-title .sub-title {
    color: var(--brand-primary);
    font-size: 15px;
    font-weight: 700;
}

.sec-title h2 {
    color: var(--text-main);
    font-size: 42px;
}

.driving-courses-section.style-two {
    background: var(--surface-soft);
}

.driving-courses-section .outer-box {
    padding: 0;
    background: transparent;
}

.course-block .inner-box,
.news-block .inner-box,
.testimonial-block .inner-box,
.team-block .inner-box {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.course-block .inner-box {
    display: block;
    height: calc(100% - 20px);
}

.course-block .lower-content {
    padding: 28px 24px 25px;
}

.course-block h4 {
    margin-bottom: 12px;
    font-size: 21px;
}

.course-block .text {
    margin-bottom: 24px;
}

.home-services-carousel .owl-stage {
    display: flex;
}

.home-services-carousel .owl-item {
    display: flex;
}

.home-services-carousel .course-block,
.home-services-carousel .course-block .inner-box {
    width: 100%;
}

.driving-courses-section .home-services-carousel.owl-theme .owl-nav {
    position: relative;
    top: auto;
    right: auto;
    justify-content: center;
    margin-top: 16px;
}

.driving-courses-section .home-services-carousel.owl-theme .owl-nav .owl-prev:after,
.driving-courses-section .home-services-carousel.owl-theme .owl-nav .owl-next:after {
    color: var(--text-main);
    background: #fff;
    border-color: var(--surface-border);
    border-radius: 6px;
}

.home-services-carousel.owl-theme .owl-dots {
    margin-top: 14px;
    text-align: center;
}

.home-services-carousel.owl-theme .owl-dots .owl-dot span {
    display: block;
    width: 8px;
    height: 8px;
    margin: 0 5px;
    background: #c5ced8;
    border-radius: 50%;
    transition: .25s ease;
}

.home-services-carousel.owl-theme .owl-dots .owl-dot.active span {
    width: 22px;
    background: var(--brand-primary);
    border-radius: 6px;
}

.news-block .image {
    margin-bottom: 0;
}

.news-block .lower-content {
    padding: 22px 22px 24px;
}

.news-block .post-meta-info {
    margin-bottom: 16px;
}

.news-block .post-meta-info .category {
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
}

.news-block h4 {
    margin-bottom: 25px;
    font-size: 21px;
    line-height: 28px;
}

.page-title {
    padding: 82px 0 86px;
    background-position: center;
}

.page-title:before {
    background: rgba(13, 22, 32, .6);
}

.page-title h1 {
    position: relative;
    margin-bottom: 18px;
    padding-bottom: 18px;
    font-size: 44px;
}

.page-title h1:before {
    width: 54px;
    height: 2px;
    background: var(--brand-primary);
}

.page-title .bread-crumb {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px 14px;
    margin-top: 12px;
    background: rgba(12, 20, 29, .38);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 6px;
}

.page-title .bread-crumb li {
    font-size: 15px;
}

.sidebar-page-container {
    padding: 88px 0 68px;
}

.course-details {
    padding: 0 0 24px;
}

.course-details .image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.course-details h3 {
    margin-top: 28px;
    color: var(--text-main);
    font-size: 30px;
}

.course-details .text {
    color: var(--text-soft);
    line-height: 1.8;
}

.course-details .text ul,
.course-details .text ol {
    padding-left: 22px;
    margin: 14px 0 20px;
}

.course-details .text ul {
    list-style: disc;
}

.course-details .text ol {
    list-style: decimal;
}

.course-details .text li {
    padding-left: 4px;
    margin-bottom: 7px;
}

.sidebar-style-two .widget {
    padding: 30px;
    background: var(--surface-soft);
    border: 1px solid var(--surface-border);
    border-radius: 8px;
}

.sidebar-style-two .widget .widget-title {
    margin-bottom: 24px;
    font-size: 21px;
}

.sidebar-style-two .widget .widget-title:before {
    width: 42px;
    height: 2px;
    background: var(--brand-primary);
}

.categories-list li {
    padding-bottom: 11px;
    margin-bottom: 11px;
    border-bottom: 1px solid var(--surface-border);
}

.categories-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.categories-list li a {
    color: #344150;
}

.widget_popular_post .post {
    border-bottom-color: var(--surface-border);
}

.sidebar-style-two .widget.banner-widget.style-two {
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.contact-section {
    padding: 88px 0 52px;
    background: var(--surface-soft);
}

.contact-info-block .inner-box {
    height: 100%;
    padding: 24px 18px 28px;
    background: #fff;
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.team-section .team-block .image {
    width: 210px;
    height: 210px;
}

.team-section .team-block .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.contact-info-block .inner-box:before {
    display: none;
}

.contact-info-block .icon {
    margin-top: 4px;
    margin-bottom: 24px;
}

.contact-info-block h4 {
    font-size: 21px;
}

.contact-info-block .text,
.contact-info-block ul li {
    font-size: 18px;
    line-height: 30px;
}

.contact-form-section {
    padding: 88px 0 64px;
}

.contact-form .form-group textarea,
.contact-form .form-group input {
    border-color: var(--surface-border);
    border-radius: 6px;
}

.contact-form .form-group textarea:focus,
.contact-form .form-group input:focus {
    border-color: var(--brand-primary);
}

.main-footer {
    padding-top: 82px;
    background-color: #17212b;
    isolation: isolate;
}

.main-footer:before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background: rgba(14, 23, 31, .84);
}

.main-footer .widgets-section {
    padding-bottom: 22px;
}

.main-footer .widget .widget-title {
    padding-bottom: 13px;
    margin-bottom: 22px;
    font-size: 20px;
}

.main-footer .widget .widget-title:before {
    width: 42px;
    height: 2px;
    background: var(--brand-primary);
}

.about-widget .logo img {
    max-height: 58px;
}

.about-widget .social-links li a,
.contact-widget .contact-info li .icon {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
}

.about-widget .social-links li a:before {
    border-radius: 6px;
}

.links-widget ul li {
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.links-widget ul li:last-child {
    border-bottom: 0;
}

.links-widget ul li a {
    color: rgba(255, 255, 255, .7);
}

.contact-widget .contact-info li .text,
.contact-widget .contact-info li .text a,
.about-widget .text {
    color: rgba(255, 255, 255, .7);
}

.footer-bottom {
    padding: 24px 0;
    border-top-color: rgba(255, 255, 255, .1);
    background: rgba(0, 0, 0, .12);
}

.footer-bottom .text {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
}

@media only screen and (max-width: 1199px) {
    .main-menu .navigation > li {
        margin-right: 18px;
    }

    .main-header .header-upper .navbar-right {
        margin-left: 22px;
    }
}

@media only screen and (max-width: 991px) {
    .main-header .header-upper .inner-container {
        min-height: 74px;
    }

    .main-header .header-upper .logo-box .logo {
        padding: 10px 0;
    }

    .main-header .header-upper .logo-box img {
        max-width: 190px;
        max-height: 50px;
    }

    .banner-section .content-box h1 {
        font-size: 48px;
    }
}

@media only screen and (max-width: 575px) {
    .banner-section .content-box h1 {
        font-size: 34px;
        line-height: 42px;
    }

    .banner-section .content-box .text {
        font-size: 16px;
        line-height: 25px;
    }

    .sec-title h2,
    .page-title h1 {
        font-size: 32px;
        line-height: 40px;
    }

    .driving-courses-section,
    .blog-section,
    .testimonials-section {
        padding-top: 74px;
        padding-bottom: 48px;
    }

    .course-block .lower-content {
        padding: 24px 20px;
    }

    .main-footer {
        padding-top: 64px;
    }

    .sidebar-page-container,
    .contact-form-section {
        padding-top: 68px;
        padding-bottom: 44px;
    }

    .contact-section {
        padding-top: 68px;
        padding-bottom: 32px;
    }

    .page-title {
        padding: 62px 0 66px;
    }

    .page-title h1 {
        width: 100%;
        max-width: 330px;
        margin-right: auto;
        margin-left: auto;
        font-size: 28px;
        line-height: 35px;
        white-space: normal !important;
        overflow-wrap: break-word;
    }

    .page-title .bread-crumb {
        max-width: 330px;
    }

    .page-title .bread-crumb li {
        white-space: normal;
        overflow-wrap: break-word;
    }

    .sidebar-page-container .row {
        margin-right: 0;
        margin-left: 0;
    }

    .sidebar-page-container .col-lg-8,
    .sidebar-page-container .col-lg-4,
    .sidebar-page-container .content-side,
    .sidebar-page-container .sidebar {
        flex: 0 0 100%;
        min-width: 0;
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
    }

    .course-details .image img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .course-details .text {
        overflow-wrap: break-word;
    }
}

/* Surucu v2: darker navigation, coral accents and a structured footer. */
:root {
    --v2-navy: #101b2d;
    --v2-navy-deep: #0a1322;
    --v2-navy-soft: #18263b;
    --v2-coral: var(--brand-primary, #ff6b4a);
    --v2-mint: var(--brand-secondary, #55d6be);
    --v2-cloud: #f3f6f8;
}

.v2-header .header-top {
    padding: 9px 0;
    background: var(--v2-coral);
    border: 0;
}

.v2-header .header-top .left-column {
    gap: 20px;
}

.v2-header .header-top-note {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.v2-header .header-top-note span {
    margin-right: 7px;
}

.v2-header .header-top ul.contact-info li {
    padding-right: 0;
    margin-right: 0;
    font-size: 13px;
}

.v2-header .header-top ul.contact-info li:before {
    display: none;
}

.v2-header .header-top ul.contact-info a,
.v2-header .header-top ul.contact-info li i,
.v2-header .header-top .social-icon li a {
    color: #fff;
}

.v2-header .header-top .social-icon {
    padding-left: 0;
    border-left: 0;
}

.v2-header .header-top .social-icon li {
    margin-right: 16px;
}

.v2-header .header-upper,
.v2-header .sticky-header .header-upper {
    background: var(--v2-navy);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.v2-header .header-upper .inner-container {
    min-height: 92px;
}

.v2-header .header-upper .logo-box {
    padding-right: 28px;
}

.v2-header .header-upper .logo-box .logo {
    padding: 16px 0;
}

.v2-header .header-upper .logo-box img {
    max-height: 58px;
    filter: brightness(0) invert(1);
}

.v2-header .main-menu .navigation {
    margin-left: 18px;
}

.v2-header .main-menu .navigation > li {
    padding: 31px 0;
    margin-right: 22px;
}

.v2-header .main-menu .navigation > li > a {
    color: rgba(255, 255, 255, .84);
    font-size: 15px;
}

.v2-header .main-menu .navigation > li > a:after {
    bottom: -10px;
    height: 3px;
    background: var(--v2-coral);
}

.v2-header .main-menu .navigation > li.current > a,
.v2-header .main-menu .navigation > li:hover > a {
    color: #fff;
}

.v2-header .main-menu .navigation > li > ul {
    border: 0;
    border-top: 3px solid var(--v2-coral);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 18px 34px rgba(10, 19, 34, .18);
}

.v2-header .header-upper .navbar-right {
    margin-left: 18px;
}

.v2-header .header-upper .contact-info {
    padding-left: 18px;
    margin-left: 0;
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.v2-header .header-upper .contact-info .icon {
    width: 44px;
    height: 44px;
    color: var(--v2-mint);
    line-height: 44px;
    background: rgba(85, 214, 190, .12);
}

.v2-header .header-upper .contact-info h5 {
    color: rgba(255, 255, 255, .54);
}

.v2-header .header-upper .contact-info h4 {
    font-size: 17px;
}

.v2-header .header-upper .contact-info h4 a {
    color: #fff;
}

.v2-header .header-action {
    margin-left: 18px;
}

.v2-header .header-action a {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 13px 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    background: var(--v2-coral);
    border-radius: 4px;
    transition: .25s ease;
}

.v2-header .header-action a:hover {
    color: var(--v2-navy);
    background: var(--v2-mint);
}

.v2-header .header-action i {
    font-size: 12px;
}

.v2-header .sticky-header {
    box-shadow: 0 10px 26px rgba(10, 19, 34, .18);
}

.v2-header .mobile-menu .menu-box {
    background: var(--v2-navy);
}

.v2-header .mobile-menu .navigation li > a {
    color: rgba(255, 255, 255, .82);
}

.v2-header .mobile-menu .navigation li.current > a,
.v2-header .mobile-menu .navigation li > a:hover,
.v2-header .mobile-menu .social-links li a:hover {
    color: var(--v2-coral);
}

.banner-section .swiper-slide:before {
    background: rgba(10, 19, 34, .62);
}

.btn-style-one {
    background: var(--v2-coral);
}

.btn-style-one:hover {
    color: var(--v2-navy);
}

.sec-title .sub-title,
.btn-style-one.style-three:after,
.btn-style-one.style-three:hover {
    color: var(--v2-coral);
}

.driving-courses-section.style-two {
    background: var(--v2-cloud);
}

.course-block .inner-box,
.news-block .inner-box,
.testimonial-block .inner-box,
.team-block .inner-box {
    border-top: 3px solid transparent;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.course-block .inner-box:hover,
.news-block .inner-box:hover,
.testimonial-block .inner-box:hover,
.team-block .inner-box:hover {
    border-top-color: var(--v2-coral);
    box-shadow: 0 18px 38px rgba(16, 27, 45, .12);
    transform: translateY(-4px);
}

.v2-footer {
    padding-top: 0;
    background: var(--v2-navy);
}

.v2-footer:before {
    display: none;
}

.v2-footer .footer-cta {
    background: var(--v2-coral);
}

.v2-footer .footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 132px;
}

.v2-footer .footer-cta-label {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.v2-footer .footer-cta h3 {
    margin: 0;
    color: #fff;
    font-size: 29px;
}

.v2-footer .footer-cta-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.v2-footer .footer-cta-phone,
.v2-footer .footer-cta-button {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 14px 18px;
    color: #fff;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 4px;
}

.v2-footer .footer-cta-button {
    color: var(--v2-navy);
    background: #fff;
}

.v2-footer .footer-cta a:hover {
    color: var(--v2-navy);
    background: var(--v2-mint);
    border-color: var(--v2-mint);
}

.v2-footer .widgets-section {
    padding-top: 72px;
}

.v2-header .mobile-menu .nav-logo img,
.v2-footer .about-widget .logo img {
    filter: brightness(0) invert(1);
}

.v2-header .mobile-menu .nav-logo img {
    width: auto;
    max-width: 210px;
    max-height: 64px;
}

.v2-footer .widget .widget-title:before {
    background: var(--v2-coral);
}

.v2-footer .about-widget .social-links li a,
.v2-footer .contact-widget .contact-info li .icon {
    background: rgba(85, 214, 190, .1);
    border-color: rgba(85, 214, 190, .24);
}

.v2-footer .about-widget .social-links li a:hover,
.v2-footer .contact-widget .contact-info li:hover .icon {
    background: var(--v2-coral);
    border-color: var(--v2-coral);
}

.v2-footer .links-widget ul li a:hover,
.v2-footer .contact-widget .contact-info li .text a:hover {
    color: var(--v2-mint);
}

.v2-footer .footer-bottom {
    background: var(--v2-navy-deep);
}

.v2-footer .footer-bottom .footer-menu ul {
    display: flex;
    flex-wrap: wrap;
}

.v2-footer .footer-bottom .footer-menu li {
    border-color: rgba(255, 255, 255, .22);
}

.v2-footer .footer-bottom .footer-menu a {
    color: rgba(255, 255, 255, .72);
}

.v2-footer .footer-bottom .footer-menu a:hover {
    color: var(--v2-mint);
}

@media only screen and (max-width: 1199px) {
    .v2-header .main-menu .navigation > li {
        margin-right: 15px;
    }

    .v2-header .header-action {
        display: none;
    }
}

@media only screen and (max-width: 1139px) {
    .v2-header .header-upper .inner-container {
        flex-wrap: nowrap;
    }

    .v2-header .header-upper .right-column {
        display: flex;
        margin-left: auto;
    }

    .v2-header .nav-outer .mobile-nav-toggler {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        margin: 0;
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 4px;
    }
}

@media only screen and (max-width: 991px) {
    .v2-header .header-upper .inner-container {
        min-height: 74px;
    }

    .v2-header .header-upper .logo-box img {
        max-height: 48px;
    }

    .v2-footer .footer-cta-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 26px 0;
    }
}

@media only screen and (max-width: 575px) {
    .v2-footer .footer-cta h3 {
        font-size: 24px;
        line-height: 31px;
    }

    .v2-footer .footer-cta-actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .v2-footer .footer-cta-phone,
    .v2-footer .footer-cta-button {
        justify-content: center;
        width: 100%;
    }

    .v2-footer .widgets-section {
        padding-top: 54px;
    }
}

/* Media galleries and contact */
.v2-media-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 17px 20px;
    margin: -12px 0 30px;
    color: #fff;
    background: var(--v2-navy);
    border-left: 4px solid var(--v2-coral);
}

.v2-media-summary > span {
    color: var(--v2-mint);
    font-size: 25px;
}

.v2-media-summary strong,
.v2-media-summary small {
    display: block;
}

.v2-media-summary strong {
    margin-bottom: 2px;
    font-size: 15px;
}

.v2-media-summary small {
    color: rgba(255, 255, 255, .66);
    font-size: 12px;
}

.v2-gallery-card {
    margin-bottom: 28px;
}

.v2-gallery-card a {
    display: block;
}

.v2-gallery-card .inner-box {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e7ecef;
    box-shadow: 0 10px 28px rgba(16, 27, 45, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.v2-gallery-card .inner-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 34px rgba(16, 27, 45, .14);
}

.v2-gallery-card .image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 851 / 606;
}

.v2-gallery-card .image:after {
    position: absolute;
    inset: 0;
    content: "";
    background: rgba(16, 27, 45, .36);
    opacity: 0;
    transition: opacity .25s ease;
}

.v2-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.v2-gallery-card .inner-box:hover img {
    transform: scale(1.06);
}

.v2-gallery-card .inner-box:hover .image:after,
.v2-gallery-card .inner-box:hover .v2-gallery-zoom {
    opacity: 1;
}

.v2-gallery-zoom {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    color: #fff;
    font-size: 25px;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity .25s ease;
}

.v2-gallery-caption {
    padding: 16px 18px;
}

.v2-gallery-caption strong,
.v2-gallery-caption span {
    display: block;
}

.v2-gallery-caption strong {
    color: var(--v2-navy);
    font-size: 15px;
}

.v2-gallery-caption span {
    margin-top: 4px;
    color: #7c8792;
    font-size: 12px;
}

.v2-video-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e7ecef;
    box-shadow: 0 10px 28px rgba(16, 27, 45, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.v2-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 34px rgba(16, 27, 45, .14);
}

.v2-video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--v2-navy-deep);
}

.v2-video-frame iframe {
    width: 100%;
    height: 100%;
}

.v2-video-caption {
    display: flex;
    min-height: 68px;
    align-items: center;
    gap: 12px;
    padding: 14px 17px;
}

.v2-video-caption span {
    display: flex;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--v2-coral);
    font-size: 11px;
}

.v2-video-caption strong {
    color: var(--v2-navy);
    font-size: 14px;
    line-height: 1.35;
}

.v2-contact-section .v2-section-intro {
    margin-bottom: 30px;
    text-align: center;
}

@media only screen and (max-width: 575px) {
    .v2-media-summary {
        align-items: flex-start;
        padding: 15px 16px;
    }
}

/* Services and shared interior detail pages */
.v2-service-summary {
    margin-top: -10px;
}

.v2-service-grid {
    align-items: stretch;
}

.v2-service-card {
    margin-bottom: 30px;
}

.v2-service-card .inner-box {
    display: flex;
    height: 100%;
    overflow: hidden;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e2e8ee;
    border-radius: 4px;
    box-shadow: 0 12px 28px rgba(16, 27, 45, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.v2-service-card .inner-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(16, 27, 45, .14);
}

.v2-service-card .image {
    position: relative;
    aspect-ratio: 770 / 435;
}

.v2-service-card .image:after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(16, 27, 45, 0), rgba(16, 27, 45, .38));
    pointer-events: none;
}

.v2-service-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-service-number {
    position: absolute;
    z-index: 1;
    right: 14px;
    bottom: 14px;
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--v2-coral);
    font-size: 14px;
    font-weight: 800;
    border-radius: 3px;
}

.v2-service-card .lower-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px 22px;
    text-align: left;
}

.v2-card-kicker {
    margin-bottom: 9px;
    color: var(--v2-coral);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.v2-card-kicker span {
    margin-right: 5px;
}

.v2-service-card h4 {
    min-height: 52px;
    margin-bottom: 8px;
}

.v2-service-card .text {
    flex: 1;
    margin-bottom: 20px;
}

.v2-service-card .link-btn {
    margin-top: auto;
}

.v2-detail-panel {
    padding: 18px;
}

.v2-detail-panel .image {
    overflow: hidden;
    aspect-ratio: 770 / 435;
}

.v2-detail-panel .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-detail-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 4px 12px 8px;
    color: var(--v2-coral);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.v2-detail-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 12px 22px;
}

.v2-detail-summary span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    color: #4f5e6d;
    background: var(--v2-cloud);
    border: 1px solid #e2e8ee;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
}

.v2-detail-summary i {
    color: var(--v2-mint);
}

.v2-detail-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    margin: 0 12px 10px;
    background: var(--v2-navy);
    border-left: 4px solid var(--v2-coral);
}

.v2-detail-action strong,
.v2-detail-action small {
    display: block;
}

.v2-detail-action strong {
    color: #fff;
    font-size: 15px;
}

.v2-detail-action small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .64);
    font-size: 12px;
}

.v2-detail-action .theme-btn {
    flex: 0 0 auto;
}

.v2-detail-sidebar .widget:first-child {
    border-top: 3px solid var(--v2-coral);
}

@media only screen and (max-width: 575px) {
    .v2-service-card h4 {
        min-height: 0;
    }

    .v2-detail-panel {
        padding: 12px;
    }

    .v2-detail-label,
    .v2-detail-summary {
        padding-right: 4px;
        padding-left: 4px;
        margin-right: 4px;
        margin-left: 4px;
    }

    .v2-detail-action {
        display: block;
        padding: 16px;
        margin-right: 4px;
        margin-left: 4px;
    }

    .v2-detail-action .theme-btn {
        margin-top: 14px;
    }
}

/* Contact workspace */
.v2-contact-section .contact-info-block .inner-box {
    display: block;
    color: inherit;
    transition: transform .25s ease, box-shadow .25s ease;
}

.v2-contact-section .contact-info-block .inner-box:hover {
    color: inherit;
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(16, 27, 45, .13);
}

.v2-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 13px;
    color: var(--v2-coral);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.v2-contact-link i {
    font-size: 10px;
    transition: transform .2s ease;
}

.v2-contact-section .inner-box:hover .v2-contact-link i {
    transform: translateX(3px);
}

.v2-contact-workspace {
    align-items: stretch;
}

.v2-map-panel,
.v2-form-panel {
    height: 100%;
}

.v2-map-panel {
    overflow: hidden;
    background: var(--v2-navy);
    border-radius: 4px;
    box-shadow: 0 14px 32px rgba(16, 27, 45, .12);
}

.v2-map-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px 18px;
}

.v2-map-kicker {
    color: var(--v2-mint);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.v2-map-kicker i {
    margin-right: 5px;
}

.v2-map-head h3 {
    margin: 7px 0 4px;
    color: #fff;
    font-size: 24px;
}

.v2-map-head p {
    margin: 0;
    color: rgba(255, 255, 255, .64);
    font-size: 14px;
}

.v2-map-head > a {
    display: flex;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--v2-coral);
    border-radius: 3px;
    font-size: 20px;
    transition: background .2s ease, color .2s ease;
}

.v2-map-head > a:hover {
    color: var(--v2-navy);
    background: var(--v2-mint);
}

.v2-map-frame iframe {
    display: block;
    width: 100% !important;
    min-height: 354px;
    border: 0;
    border-radius: 0;
}

.v2-map-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 14px 24px;
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    font-weight: 700;
}

.v2-map-foot i {
    margin-right: 5px;
    color: var(--v2-mint);
}

.v2-form-panel {
    padding: 28px 30px;
    box-shadow: 0 14px 32px rgba(16, 27, 45, .08);
}

.v2-form-panel .sec-title {
    margin-bottom: 18px;
}

.v2-form-panel .sec-title p {
    max-width: 560px;
    margin: 8px 0 0;
    color: #687687;
    font-size: 14px;
    line-height: 1.65;
}

.v2-form-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.v2-form-assurances span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 9px;
    color: #50606f;
    background: #fff;
    border: 1px solid #e2e8ee;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
}

.v2-form-assurances i {
    color: var(--v2-mint);
}

.v2-form-panel .contact-form .form-group {
    position: relative;
}

.v2-form-panel .contact-form .form-group > i {
    position: absolute;
    z-index: 1;
    top: 19px;
    left: 34px;
    color: var(--v2-coral);
    font-size: 15px;
}

.v2-form-panel .contact-form input,
.v2-form-panel .contact-form textarea {
    padding-left: 48px;
    background: #fff;
}

.v2-form-panel .contact-form textarea {
    min-height: 128px;
    padding-top: 17px;
}

.v2-form-panel .theme-btn i {
    margin-left: 7px;
    font-size: 12px;
}

@media only screen and (max-width: 991px) {
    .v2-map-panel {
        margin-bottom: 28px;
    }
}

@media only screen and (max-width: 575px) {
    .v2-map-head {
        padding: 18px;
    }

    .v2-map-head h3 {
        font-size: 21px;
    }

    .v2-map-frame iframe {
        min-height: 320px;
    }

    .v2-map-foot {
        padding: 13px 18px;
    }

    .v2-form-panel {
        padding: 22px 18px;
    }

    .v2-form-panel .sec-title h2 {
        font-size: 29px;
    }

    .v2-form-panel .contact-form .form-group > i {
        left: 27px;
    }
}

/* Surucu v2 inner pages */
.page-title {
    padding: 72px 0 76px;
    background-position: center;
}

.page-title:before {
    background: rgba(10, 19, 34, .76);
}

.page-title .content-box {
    position: relative;
    padding-left: 24px;
    border-left: 4px solid var(--v2-coral);
}

.page-title .content-wrapper {
    display: block;
}

.page-title h1 {
    max-width: 920px;
    padding-bottom: 0;
    margin-bottom: 14px;
    color: #fff;
    font-size: 46px;
    line-height: 1.12;
}

.page-title h1:before {
    display: none;
}

.page-title .bread-crumb {
    display: flex;
    justify-content: flex-start;
    padding: 0;
    margin-top: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.page-title .bread-crumb li,
.page-title .bread-crumb li a {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
}

.page-title .bread-crumb li:last-child {
    color: #fff;
}

.page-title .bread-crumb li:before {
    color: var(--v2-coral);
}

.v2-list-section,
.team-section,
.blog-section {
    padding-top: 86px;
}

.v2-section-intro {
    max-width: 710px;
    margin-bottom: 40px;
}

.v2-section-intro.text-center {
    margin-right: auto;
    margin-left: auto;
}

.v2-section-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--v2-coral);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.v2-section-kicker:before {
    width: 24px;
    height: 2px;
    margin-right: 9px;
    content: "";
    background: var(--v2-coral);
}

.v2-section-intro h2 {
    margin-bottom: 12px;
    color: var(--v2-navy);
    font-size: 38px;
    line-height: 1.18;
}

.v2-section-intro p {
    margin: 0;
    color: #647080;
    font-size: 17px;
    line-height: 1.7;
}

.v2-list-section .course-block {
    margin-bottom: 28px;
}

.v2-list-section .course-block .inner-box {
    height: 100%;
    margin-bottom: 0;
    border-radius: 4px;
}

.v2-list-section .course-block .image {
    overflow: hidden;
}

.v2-list-section .course-block .image img {
    transition: transform .35s ease;
}

.v2-list-section .course-block .inner-box:hover .image img {
    transform: scale(1.045);
}

.sidebar-page-container {
    padding: 82px 0 66px;
    background: var(--v2-cloud);
}

.v2-content-panel,
.v2-article-panel .inner-box {
    overflow: hidden;
    padding: 18px;
    background: #fff;
    border: 1px solid #e2e8ee;
    border-radius: 4px;
    box-shadow: 0 14px 32px rgba(16, 27, 45, .07);
}

.v2-content-panel .image,
.v2-article-panel .image {
    margin-bottom: 26px;
    border-radius: 3px;
    box-shadow: none;
}

.v2-content-panel h3,
.v2-content-panel .text {
    padding-right: 12px;
    padding-left: 12px;
}

.v2-content-panel h3 {
    margin-top: 4px;
    color: var(--v2-navy);
    font-size: 31px;
}

.v2-content-panel .text,
.v2-article-panel .text {
    color: #596777;
    font-size: 16px;
    line-height: 1.85;
}

.v2-article-panel .lower-content {
    padding: 8px 12px 8px;
}

.v2-article-panel .post-meta-info {
    margin-bottom: 12px;
}

.v2-article-panel .post-meta-info .date {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    color: var(--v2-coral);
    font-size: 13px;
    font-weight: 700;
    background: rgba(255, 107, 74, .09);
    border-radius: 3px;
}

.v2-article-panel h4 {
    color: var(--v2-navy);
}

.sidebar-style-two .widget {
    padding: 26px;
    background: #fff;
    border: 1px solid #e2e8ee;
    border-radius: 4px;
    box-shadow: 0 12px 26px rgba(16, 27, 45, .06);
}

.sidebar-style-two .widget .widget-title {
    padding-bottom: 13px;
    color: var(--v2-navy);
    font-size: 20px;
}

.sidebar-style-two .widget .widget-title:before {
    width: 36px;
    height: 3px;
    background: var(--v2-coral);
}

.categories-list li {
    padding-bottom: 0;
    margin-bottom: 6px;
    border-bottom: 0;
}

.categories-list li a {
    display: block;
    padding: 10px 12px 10px 34px;
    color: #475565;
    font-size: 15px;
    background: #f6f8fa;
    border-radius: 3px;
}

.categories-list li a:before {
    top: 13px;
    left: 24px;
    height: 16px;
    background: #c9d3dc;
}

.categories-list li a:after {
    top: 12px;
    left: 10px;
    color: var(--v2-coral);
}

.categories-list li.current a,
.categories-list li a:hover {
    color: #fff;
    background: var(--v2-navy);
}

.categories-list li.current a:before,
.categories-list li a:hover:before {
    background: rgba(255, 255, 255, .42);
}

.sidebar-style-two .widget.banner-widget.style-two {
    border-radius: 4px;
}

.banner-widget.style-two .content {
    background: rgba(10, 19, 34, .62);
}

.banner-widget.style-two .contact-number a i {
    color: var(--v2-navy);
}

.widget_popular_post .post-thumb {
    margin-right: 14px;
}

.widget_popular_post .post-thumb img {
    border-radius: 3px;
}

.widget_popular_post .content h5 {
    font-size: 16px;
    line-height: 1.35;
}

.widget_popular_post .content h5 a {
    color: var(--v2-navy);
}

.v2-blog-grid {
    margin-top: 0;
}

.v2-blog-grid .news-block {
    display: flex;
}

.v2-blog-grid .news-block .inner-box {
    width: 100%;
    border-radius: 4px;
}

.v2-blog-grid .news-block p {
    margin-top: 0 !important;
    color: #647080;
}

.post-pagination li .current,
.post-pagination li a {
    width: 44px;
    height: 44px;
    color: var(--v2-navy);
    line-height: 42px;
    border-radius: 3px;
}

.post-pagination li .current {
    color: #fff;
    background: var(--v2-coral);
    border-color: var(--v2-coral);
}

.team-section {
    background: var(--v2-cloud);
}

.team-section .team-block .inner-box {
    padding: 20px 16px 22px;
    background: #fff;
    border: 1px solid #e2e8ee;
    border-radius: 4px;
    box-shadow: 0 12px 26px rgba(16, 27, 45, .06);
}

.team-section .team-block .image {
    width: 100%;
    height: 230px;
    margin-bottom: 18px;
}

.team-section .team-block .image img {
    border-radius: 3px;
}

.team-section .team-block h4 {
    color: var(--v2-navy);
}

.team-section .icon-box {
    min-height: 100%;
    background: var(--v2-navy);
    border-radius: 4px;
}

.team-section .icon-box h4,
.team-section .icon-box h5 {
    color: #fff;
}

.testimonials-section {
    background: var(--v2-cloud);
}

.testimonials-section .sec-bg {
    opacity: .14;
}

.testimonial-block .inner-box {
    border-radius: 4px;
}

.v2-gallery-card .inner-box {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 4px;
}

.v2-gallery-card .inner-box:after {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: grid;
    width: 42px;
    height: 42px;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 23px;
    font-weight: 700;
    content: "+";
    background: var(--v2-coral);
    border-radius: 3px;
    place-items: center;
}

.v2-gallery-card .image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.v2-video-card {
    overflow: hidden;
    padding: 0;
    background: #fff;
    border: 1px solid #e7ecef;
    border-radius: 4px;
    box-shadow: 0 14px 28px rgba(16, 27, 45, .12);
}

.v2-video-card iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.v2-contact-section {
    background: var(--v2-cloud);
}

.v2-contact-section .contact-info-block .inner-box {
    position: relative;
    overflow: hidden;
    padding: 28px 20px;
    border-top: 3px solid var(--v2-coral);
    border-radius: 4px;
}

.v2-contact-section .contact-info-block .icon {
    display: grid;
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    background: rgba(85, 214, 190, .12);
    border-radius: 50%;
    place-items: center;
}

.v2-contact-section .contact-info-block .icon img {
    max-width: 34px;
    max-height: 34px;
}

.v2-contact-form-section {
    background: #fff;
}

.v2-map-panel iframe {
    display: block;
    width: 100% !important;
    min-height: 440px;
    border: 0;
    border-radius: 4px;
}

.v2-form-panel {
    padding: 30px;
    background: var(--v2-cloud);
    border-left: 4px solid var(--v2-coral);
    border-radius: 4px;
}

.v2-form-panel .sec-title h2 {
    font-size: 34px;
}

@media only screen and (max-width: 991px) {
    .v2-section-intro h2 {
        font-size: 34px;
    }

    .v2-map-panel {
        margin-bottom: 28px;
    }
}

@media only screen and (max-width: 575px) {
    .page-title {
        padding: 54px 0 58px;
    }

    .page-title .content-box {
        padding-left: 16px;
    }

    .page-title h1 {
        max-width: 100%;
        margin-left: 0;
        font-size: 30px;
        line-height: 1.2;
    }

    .page-title .bread-crumb {
        max-width: 100%;
    }

    .v2-list-section,
    .team-section,
    .blog-section {
        padding-top: 66px;
    }

    .v2-section-intro {
        margin-bottom: 30px;
    }

    .v2-section-intro h2 {
        font-size: 29px;
    }

    .v2-section-intro p {
        font-size: 16px;
    }

    .v2-content-panel,
    .v2-article-panel .inner-box {
        padding: 12px;
    }

    .v2-content-panel h3,
    .v2-content-panel .text {
        padding-right: 4px;
        padding-left: 4px;
    }

    .v2-content-panel h3 {
        font-size: 26px;
    }

    .sidebar-style-two .widget {
        padding: 20px;
    }

    .v2-form-panel {
        padding: 22px 18px;
    }
}

/* Surucu v2 motion, hero slider and route trail */
.v2-loader {
    display: grid;
    overflow: hidden;
    background: var(--v2-navy-deep);
    place-items: center;
}

.v2-loader-panel {
    position: relative;
    z-index: 2;
    width: min(360px, calc(100vw - 48px));
    transition: opacity .32s ease, transform .5s ease;
}

.v2-loader-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.v2-loader-brand img {
    width: auto;
    max-width: 178px;
    max-height: 58px;
    filter: brightness(0) invert(1);
}

.v2-loader-brand span {
    max-width: 126px;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
    text-align: right;
    text-transform: uppercase;
}

.v2-loader-progress {
    height: 3px;
    overflow: hidden;
    background: rgba(255, 255, 255, .14);
}

.v2-loader-progress span {
    display: block;
    width: 42%;
    height: 100%;
    background: var(--v2-coral);
    animation: v2-loader-progress 1.05s ease-in-out infinite;
}

.v2-loader-wipe {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: var(--v2-navy);
    transform: translateX(0);
    transition: transform .72s cubic-bezier(.76, 0, .24, 1);
}

.v2-loader.is-leaving .v2-loader-panel {
    opacity: 0;
    transform: translateY(-12px);
}

.v2-loader.is-leaving .v2-loader-wipe {
    transform: translateX(100%);
}

@keyframes v2-loader-progress {
    0% {
        transform: translateX(-110%);
    }

    100% {
        transform: translateX(340%);
    }
}

.v2-hero-slider {
    overflow: hidden;
    background: var(--v2-navy-deep);
}

.v2-hero-slider .swiper-slide {
    background-position: center;
}

.v2-hero-slider .swiper-slide:before {
    opacity: 1;
    background: linear-gradient(90deg, rgba(10, 19, 34, .9) 0%, rgba(10, 19, 34, .7) 42%, rgba(10, 19, 34, .22) 78%, rgba(10, 19, 34, .14) 100%);
}

.v2-hero-slider .content-box {
    min-height: 690px;
    padding-bottom: 64px;
}

.v2-hero-slider .content-box .inner {
    max-width: 760px;
    padding-left: 32px;
    border-left: 4px solid var(--v2-coral);
}

.v2-hero-kicker {
    margin-bottom: 17px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: all .45s ease;
}

.v2-hero-kicker span {
    color: var(--v2-mint);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.v2-hero-slider .swiper-slide-active .v2-hero-kicker {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: .45s;
}

.v2-hero-slider .content-box h1 {
    max-width: 720px;
    padding-bottom: 0;
    margin-bottom: 18px;
    font-size: 72px;
    line-height: 1.04;
}

.v2-hero-slider .content-box h1:before {
    display: none;
}

.v2-hero-slider .content-box .text {
    max-width: 610px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .8);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.65;
}

.v2-hero-slider .link-box {
    margin: 0;
}

.v2-hero-slider .link-box a {
    margin: 0;
    box-shadow: none;
}

.v2-hero-slider .banner-slider-nav {
    display: flex;
    z-index: 14;
    top: auto;
    right: auto;
    bottom: 28px;
    left: 50%;
    width: min(1200px, calc(100% - 30px));
    transform: translateX(-50%);
}

.v2-slider-controls {
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    background: rgba(10, 19, 34, .76);
    border: 1px solid rgba(255, 255, 255, .13);
}

.v2-hero-slider .banner-slider-button-prev,
.v2-hero-slider .banner-slider-button-next {
    display: grid;
    width: 50px;
    height: 50px;
    margin: 0;
    color: #fff;
    font-size: 14px;
    line-height: 50px;
    background: transparent;
    place-items: center;
    transform: none;
}

.v2-hero-slider .banner-slider-button-prev:hover,
.v2-hero-slider .banner-slider-button-next:hover {
    color: var(--v2-navy);
    background: var(--v2-mint);
}

.v2-hero-slider .banner-slider-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
}

.v2-hero-slider .swiper-pagination-bullet {
    display: block;
    width: 22px;
    height: 3px;
    margin: 0 !important;
    background: rgba(255, 255, 255, .36);
    border-radius: 0;
    opacity: 1;
    transition: width .25s ease, background .25s ease;
}

.v2-hero-slider .swiper-pagination-bullet-active {
    width: 42px;
    background: var(--v2-coral);
}

.v2-hero-side-note {
    position: absolute;
    z-index: 12;
    right: 24px;
    bottom: 34px;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.page-title {
    padding: 78px 0 0;
    overflow: hidden;
    background-position: center;
}

.page-title:after {
    position: absolute;
    right: -60px;
    bottom: -80px;
    width: 320px;
    height: 180px;
    content: "";
    border: 1px solid rgba(255, 255, 255, .1);
    transform: skewX(-24deg);
}

.page-title .content-box {
    padding-left: 0;
    border-left: 0;
    text-align: left;
}

.page-title h1 {
    padding-left: 20px;
    margin-bottom: 24px;
    border-left: 4px solid var(--v2-coral);
}

.page-title .bread-crumb {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    padding: 0 18px;
    background: var(--v2-navy-deep);
    border-top: 2px solid var(--v2-coral);
}

.page-title .bread-crumb li {
    padding-right: 27px;
    margin-right: 12px;
}

.page-title .bread-crumb li:before {
    top: 0;
    color: var(--v2-mint);
    font-size: 14px;
}

.page-title .bread-crumb li,
.page-title .bread-crumb li a {
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    font-weight: 700;
}

.page-title .bread-crumb li:last-child {
    color: #fff;
}

@media only screen and (max-width: 991px) {
    .v2-hero-slider .content-box {
        min-height: 640px;
    }

    .v2-hero-slider .content-box h1 {
        font-size: 58px;
    }
}

@media only screen and (max-width: 575px) {
    .v2-loader-brand {
        display: block;
    }

    .v2-loader-brand span {
        display: block;
        max-width: none;
        margin-top: 12px;
        text-align: left;
    }

    .v2-hero-slider .content-box {
        min-height: 690px;
        padding: 0 15px 46px;
    }

    .v2-hero-slider .content-box .inner {
        padding-left: 16px;
    }

    .v2-hero-kicker {
        margin-bottom: 12px;
    }

    .v2-hero-kicker span {
        font-size: 11px;
    }

    .v2-hero-slider .content-box h1 {
        font-size: 38px;
        line-height: 1.1;
    }

    .v2-hero-slider .content-box .text {
        font-size: 16px;
        line-height: 1.55;
    }

    .v2-hero-slider .banner-slider-nav {
        bottom: 16px;
    }

    .v2-hero-side-note {
        display: none;
    }

    .page-title {
        padding: 52px 0 0;
    }

    .page-title h1 {
        padding-left: 14px;
        margin-bottom: 20px;
    }

    .page-title .bread-crumb {
        display: flex;
        min-height: 44px;
        padding: 0 13px;
    }

    .page-title .bread-crumb li {
        padding-right: 23px;
        margin-right: 9px;
        font-size: 12px;
    }
}
