:root {
    --inghern-blue-dark: #0B1F33;
    --inghern-blue-petrol: #0E3A5B;
    --inghern-blue-steel: #2F6F91;
    --inghern-blue-soft: #EAF2F6;
    --inghern-gray: #F3F6F8;
    --inghern-gray-border: #D9E2E8;
    --inghern-gray-text: #5F6B73;
    --inghern-orange: #F58220;
    --inghern-orange-dark: #D96B12;
    --inghern-white: #FFFFFF;
    --primary: var(--inghern-blue-petrol);
    --secondary: var(--inghern-orange);
    --light: var(--inghern-gray);
    --dark: var(--inghern-blue-dark);
    --bs-primary: var(--inghern-blue-petrol);
    --bs-secondary: var(--inghern-orange);
    --bs-light: var(--inghern-gray);
    --bs-dark: var(--inghern-blue-dark);
    --bs-body-color: var(--inghern-gray-text);
    --bs-body-bg: var(--inghern-white)
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 700 !important
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 600 !important
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
    font-weight: 500 !important
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1
}

.btn-primary,
.btn-outline-primary:hover {
    color: #FFFFFF
}

.btn-square {
    width: 38px;
    height: 38px
}

.btn-sm-square {
    width: 32px;
    height: 32px
}

.btn-lg-square {
    width: 48px;
    height: 48px
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal
}

.navbar {
    min-height: 78px;
    background: linear-gradient(90deg, var(--inghern-blue-dark) 0%, var(--inghern-blue-petrol) 100%) !important;
    box-shadow: 0 8px 28px rgba(11, 31, 51, 0.16)
}

.navbar.sticky-top {
    top: -100px;
    transition: 0.5s
}

.navbar .navbar-brand {
    position: relative;
    min-width: 285px;
    height: 78px;
    padding-right: 58px;
    display: flex;
    align-items: center;
    background: var(--inghern-white);
    z-index: 2
}

.navbar .navbar-brand::after {
    content: "";
    position: absolute;
    width: 58px;
    height: 100%;
    top: 0;
    right: -29px;
    transform: skewX(-30deg);
    background-color: var(--inghern-orange);
    z-index: 1;
    pointer-events: none
}

.logo-navbar {
    width: auto;
    max-width: 205px;
    height: 48px;
    display: block;
    object-fit: contain;
    position: relative;
    z-index: 2
}

.navbar .navbar-nav {
    align-items: center
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 26px 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.01em;
    outline: none
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--inghern-orange)
}

.navbar .btn-primary {
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(245, 130, 32, 0.24);
    white-space: nowrap
}

.navbar-toggler {
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none !important
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.18rem rgba(245, 130, 32, 0.18) !important
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.92%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 8px;
    vertical-align: middle
}

.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 16px 40px rgba(11, 31, 51, 0.14)
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item.active {
    color: var(--inghern-white);
    background: var(--inghern-blue-petrol)
}

@media (min-width:992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: 0.35s ease
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        opacity: 1;
        visibility: visible
    }
}

@media (max-width:1199.98px) {
    .navbar .navbar-brand {
        min-width: 250px;
        padding-left: 38px !important
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 20px;
        font-size: 15px
    }

    .logo-navbar {
        max-width: 178px;
        height: 44px
    }
}

@media (max-width:991.98px) {
    .navbar {
        min-height: 68px;
        padding-right: 18px !important
    }

    .navbar .navbar-brand {
        min-width: 230px;
        height: 68px;
        padding-left: 30px !important;
        padding-right: 42px
    }

    .navbar .navbar-brand::after {
        width: 42px;
        right: -21px
    }

    .logo-navbar {
        max-width: 165px;
        height: 42px
    }

    .navbar .navbar-collapse {
        margin-left: -230px;
        margin-right: -18px;
        padding: 14px 22px 22px 252px;
        background: linear-gradient(135deg, var(--inghern-blue-dark), var(--inghern-blue-petrol));
        border-top: 1px solid rgba(255, 255, 255, 0.10)
    }

    .navbar .navbar-nav {
        align-items: flex-start;
        padding: 8px 0 12px
    }

    .navbar .navbar-nav .nav-link {
        width: 100%;
        margin-right: 0;
        padding: 10px 0;
        color: rgba(255, 255, 255, 0.90);
        font-size: 19px
    }
}

@media (max-width:575.98px) {
    .navbar {
        min-height: 64px;
        padding-right: 12px !important
    }

    .navbar .navbar-brand {
        min-width: 222px;
        height: 64px;
        padding-left: 24px !important;
        padding-right: 38px
    }

    .navbar .navbar-brand::after {
        width: 38px;
        right: -19px
    }

    .logo-navbar {
        max-width: 158px;
        height: 40px
    }

    .navbar .navbar-collapse {
        margin-left: -222px;
        margin-right: -12px;
        padding: 14px 18px 22px 242px
    }
}

@media (max-width:380px) {
    .navbar .navbar-brand {
        min-width: 200px;
        padding-left: 18px !important
    }

    .logo-navbar {
        max-width: 140px;
        height: 36px
    }

    .navbar .navbar-collapse {
        margin-left: -200px;
        padding-left: 220px
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%);
    z-index: 1
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 3.5rem
}

@media (max-width:768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover
    }
}

.page-header {
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light)
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light)
}

.facts .border {
    border-color: rgba(255, 255, 255, .1) !important
}

.hero-single {
    position: relative;
    width: 100%;
    height: calc(100svh - 78px);
    min-height: 720px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--inghern-blue-dark)
}

.hero-single-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
    z-index: 0
}

.hero-single-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 31, 51, 0.10) 0%, rgba(11, 31, 51, 0.20) 36%, rgba(11, 31, 51, 0.58) 68%, rgba(11, 31, 51, 0.90) 100%), linear-gradient(180deg, rgba(11, 31, 51, 0.04) 0%, rgba(11, 31, 51, 0.34) 100%);
    z-index: 1
}

.hero-single-content {
    position: relative;
    z-index: 2;
    width: min(1540px, calc(100% - 120px));
    margin: 0 auto;
    padding: 72px 0;
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(720px, 1.1fr);
    column-gap: clamp(48px, 5vw, 96px);
    align-items: center
}

.hero-panel {
    grid-column: 2;
    width: 100%;
    max-width: 900px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none
}

.hero-kicker {
    position: relative;
    display: inline-block;
    margin-bottom: 18px;
    color: var(--inghern-orange);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 2.6px;
    text-transform: uppercase
}

.hero-kicker::after {
    content: "";
    position: absolute;
    width: 58px;
    height: 2px;
    top: 50%;
    left: calc(100% + 16px);
    background: var(--inghern-orange);
    transform: translateY(-50%)
}

.hero-panel h1 {
    max-width: 900px;
    margin-bottom: 24px;
    color: var(--inghern-white);
    font-size: clamp(3.3rem, 3.45vw, 4.35rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.46)
}

.hero-description {
    max-width: 680px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 1rem;
    line-height: 1.72;
    text-align: left;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.42)
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px
}

.hero-actions .btn {
    min-width: 190px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18)
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, var(--inghern-orange), var(--inghern-orange-dark)) !important;
    border-color: var(--inghern-orange) !important
}

.hero-actions .btn-light {
    color: var(--inghern-white);
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(6px)
}

.hero-actions .btn-light:hover {
    color: var(--inghern-blue-dark);
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(255, 255, 255, 0.94)
}

@media (max-width:1199.98px) {
    .hero-single {
        min-height: 680px
    }

    .hero-single-content {
        width: min(100%, calc(100% - 64px));
        grid-template-columns: minmax(280px, 0.8fr) minmax(560px, 1.2fr);
        column-gap: 44px
    }

    .hero-panel {
        max-width: 680px
    }

    .hero-panel h1 {
        max-width: 680px;
        font-size: clamp(2.85rem, 4.1vw, 3.55rem);
        line-height: 1.07
    }

    .hero-description {
        max-width: 600px;
        font-size: 0.96rem
    }
}

@media (max-width:991.98px) {
    .hero-single {
        height: calc(100svh - 68px);
        min-height: 680px
    }

    .hero-single-img {
        object-position: 38% center
    }

    .hero-single-overlay {
        background: linear-gradient(90deg, rgba(11, 31, 51, 0.18) 0%, rgba(11, 31, 51, 0.34) 42%, rgba(11, 31, 51, 0.82) 100%), linear-gradient(180deg, rgba(11, 31, 51, 0.06) 0%, rgba(11, 31, 51, 0.56) 100%)
    }

    .hero-single-content {
        width: min(100%, calc(100% - 44px));
        padding: 70px 0;
        display: flex;
        justify-content: center;
        align-items: center
    }

    .hero-panel {
        width: 100%;
        max-width: 700px
    }

    .hero-panel h1 {
        max-width: 700px;
        font-size: clamp(2.55rem, 6vw, 3.45rem);
        line-height: 1.08
    }

    .hero-description {
        max-width: 620px;
        font-size: 0.98rem;
        line-height: 1.68
    }
}

@media (max-width:575.98px) {
    .hero-single {
        height: calc(100svh - 64px);
        min-height: 700px;
        align-items: flex-end
    }

    .hero-single-img {
        object-position: 32% center
    }

    .hero-single-overlay {
        background: linear-gradient(180deg, rgba(11, 31, 51, 0.08) 0%, rgba(11, 31, 51, 0.34) 38%, rgba(11, 31, 51, 0.94) 100%)
    }

    .hero-single-content {
        width: min(100%, calc(100% - 28px));
        padding: 108px 0 42px;
        justify-content: center;
        align-items: flex-end
    }

    .hero-panel {
        width: 100%;
        max-width: 100%
    }

    .hero-kicker {
        margin-bottom: 14px;
        font-size: 0.80rem;
        letter-spacing: 2.4px
    }

    .hero-kicker::after {
        display: none
    }

    .hero-panel h1 {
        max-width: 100%;
        margin-bottom: 20px;
        font-size: clamp(2.05rem, 9.4vw, 2.45rem);
        line-height: 1.08;
        letter-spacing: -0.04em
    }

    .hero-description {
        max-width: 100%;
        margin-bottom: 28px;
        font-size: 0.93rem;
        line-height: 1.62
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        gap: 14px
    }

    .hero-actions .btn {
        width: 100%;
        min-width: 0;
        text-align: center
    }
}

.btn-play {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary)
}

@media (max-width:992px) {
    .btn-play {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%)
    }
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto
}

.modal-video .modal-body {
    position: relative;
    padding: 0px
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1
}

.inghern-services {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 18%, rgba(47, 111, 145, 0.14), transparent 24%), radial-gradient(circle at 88% 78%, rgba(245, 130, 32, 0.08), transparent 24%), linear-gradient(180deg, #edf5f9 0%, #dfeaf0 100%)
}

.inghern-services::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(11, 31, 51, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 31, 51, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    pointer-events: none
}

.services-shell {
    position: relative;
    z-index: 1;
    width: min(1560px, calc(100% - 72px));
    margin: 0 auto
}

.service-heading {
    max-width: 1080px
}

.inghern-services .display-5 {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    color: var(--inghern-blue-dark);
    line-height: 1.12
}

.services-grid {
    counter-reset: service-counter;
    --bs-gutter-x: 28px;
    --bs-gutter-y: 36px
}

.services-grid>[class*="col-"] {
    counter-increment: service-counter
}

.inghern-services .service-item {
    position: relative;
    margin: 24px 0 26px 0;
    min-height: 285px;
    overflow: visible;
    background: transparent;
    border: 1px solid rgba(22, 63, 94, 0.20);
    border-radius: 26px;
    box-shadow: 0 18px 42px rgba(11, 31, 51, 0.12);
    transition: 0.35s ease
}

.inghern-services .service-item:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 130, 32, 0.32);
    box-shadow: 0 24px 54px rgba(11, 31, 51, 0.18)
}

.inghern-services .service-item::after {
    content: counter(service-counter, decimal-leading-zero);
    position: absolute;
    top: 18px;
    right: 24px;
    color: rgba(255, 255, 255, 0.14);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    z-index: 5;
    pointer-events: none
}

.inghern-services .service-item>img {
    width: 100%;
    height: 285px;
    object-fit: cover;
    opacity: 0;
    pointer-events: none
}

.inghern-services .service-img {
    position: absolute;
    top: 16px;
    right: 16px;
    bottom: 16px;
    width: 36%;
    min-width: 170px;
    padding: 10px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(240, 245, 248, 0.98) 0%, rgba(213, 225, 233, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 20px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 12px 26px rgba(11, 31, 51, 0.10);
    z-index: 3;
    transition: 0.35s ease
}

.inghern-services .service-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(11, 31, 51, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 31, 51, 0.035) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.55;
    pointer-events: none;
    z-index: 1
}

.inghern-services .service-img img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 14px
}

.inghern-services .service-detail {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 26px;
    z-index: 1
}

.inghern-services .service-title {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    padding: 34px calc(36% + 42px) 56px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    background: radial-gradient(circle at 96% 88%, rgba(245, 130, 32, 0.12), transparent 22%), linear-gradient(145deg, var(--inghern-blue-dark) 0%, var(--inghern-blue-petrol) 65%, #2d6682 100%);
    transform: translateY(0);
    transition: transform 0.5s ease
}

.inghern-services .service-title::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.55;
    pointer-events: none
}

.inghern-services .service-item:hover .service-title {
    transform: translateY(-100%)
}

.inghern-services .service-title hr {
    position: relative;
    z-index: 2;
    width: 42px !important;
    margin: 0 0 18px 0;
    border-top: 2px solid rgba(245, 130, 32, 0.95);
    opacity: 1
}

.inghern-services .service-title h4 {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px !important;
    color: var(--inghern-white);
    font-size: 1.22rem;
    line-height: 1.26;
    font-weight: 700
}

.inghern-services .service-title small {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.84rem;
    line-height: 1.5;
    font-weight: 600
}

.inghern-services .service-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 34px calc(36% + 42px) 56px 28px;
    display: flex;
    align-items: center;
    text-align: left;
    background: radial-gradient(circle at 96% 88%, rgba(245, 130, 32, 0.16), transparent 22%), linear-gradient(145deg, rgba(10, 28, 46, 0.98) 0%, rgba(15, 62, 96, 0.98) 100%);
    transform: translateY(100%);
    transition: transform 0.5s ease
}

.inghern-services .service-text::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 28px;
    width: 4px;
    height: calc(100% - 56px);
    border-radius: 999px;
    background: linear-gradient(180deg, var(--inghern-orange), rgba(245, 130, 32, 0.12))
}

.inghern-services .service-item:hover .service-text {
    transform: translateY(0)
}

.inghern-services .service-text p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 0.92rem;
    line-height: 1.68;
    padding-left: 16px
}

.inghern-services .service-item .btn {
    position: absolute;
    left: 28px;
    bottom: -18px;
    min-width: 118px;
    height: 42px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--inghern-white);
    background: linear-gradient(135deg, var(--inghern-orange), var(--inghern-orange-dark));
    border: 1px solid rgba(245, 130, 32, 0.42);
    border-radius: 12px;
    box-shadow: 0 14px 28px rgba(245, 130, 32, 0.22);
    z-index: 6;
    transition: 0.3s ease
}

.inghern-services .service-item .btn:hover {
    color: var(--inghern-white);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(245, 130, 32, 0.30)
}

.inghern-services .service-item:hover .service-img {
    transform: translateX(4px);
    border-color: rgba(245, 130, 32, 0.30);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 16px 34px rgba(11, 31, 51, 0.16)
}

@media (max-width:991.98px) {
    .services-shell {
        width: min(100%, calc(100% - 36px))
    }

    .services-grid {
        --bs-gutter-x: 22px;
        --bs-gutter-y: 34px
    }

    .inghern-services .service-item {
        min-height: 285px;
        border-radius: 22px
    }

    .inghern-services .service-item>img {
        height: 285px
    }

    .inghern-services .service-detail {
        border-radius: 22px
    }

    .inghern-services .service-img {
        top: 16px;
        right: 16px;
        bottom: 16px;
        width: 38%;
        min-width: 150px;
        padding: 7px;
        border-radius: 14px
    }

    .inghern-services .service-img img {
        border-radius: 9px
    }

    .inghern-services .service-title,
    .inghern-services .service-text {
        padding: 34px calc(38% + 34px) 56px 24px
    }

    .inghern-services .service-title h4 {
        font-size: 1.08rem;
        line-height: 1.25;
        max-width: 100%
    }

    .inghern-services .service-title small {
        font-size: 0.80rem;
        line-height: 1.45;
        max-width: 100%
    }

    .inghern-services .service-text p {
        font-size: 0.86rem;
        line-height: 1.6
    }

    .inghern-services .service-item .btn {
        left: 24px
    }
}

@media (max-width:767.98px) {
    .services-shell {
        width: min(100%, calc(100% - 28px))
    }

    .services-grid>[class*="col-"] {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%
    }

    .inghern-services .service-item {
        min-height: 255px;
        margin: 20px 0 28px 0;
        border-radius: 20px
    }

    .inghern-services .service-item>img {
        height: 255px
    }

    .inghern-services .service-detail {
        border-radius: 20px
    }

    .inghern-services .service-img {
        top: 14px;
        right: 14px;
        bottom: 14px;
        width: 38%;
        min-width: 128px;
        padding: 6px;
        border-radius: 13px
    }

    .inghern-services .service-img img {
        border-radius: 8px
    }

    .inghern-services .service-title,
    .inghern-services .service-text {
        padding: 30px calc(38% + 28px) 54px 20px
    }

    .inghern-services .service-title hr {
        width: 36px !important;
        margin-bottom: 14px
    }

    .inghern-services .service-title h4 {
        font-size: 1rem;
        line-height: 1.22
    }

    .inghern-services .service-title small {
        font-size: 0.76rem;
        line-height: 1.45
    }

    .inghern-services .service-text::before {
        top: 24px;
        left: 20px;
        height: calc(100% - 48px)
    }

    .inghern-services .service-text p {
        font-size: 0.80rem;
        line-height: 1.55;
        padding-left: 14px
    }

    .inghern-services .service-item .btn {
        left: 20px;
        bottom: -17px;
        min-width: 104px;
        height: 38px;
        font-size: 0.84rem;
        border-radius: 10px
    }

    .inghern-services .service-item::after {
        top: 16px;
        right: 20px;
        font-size: 2.15rem
    }
}

@media (max-width:575.98px) {
    .services-shell {
        width: min(100%, calc(100% - 22px))
    }

    .services-grid {
        --bs-gutter-x: 14px;
        --bs-gutter-y: 34px
    }

    .inghern-services .service-item {
        min-height: 265px
    }

    .inghern-services .service-item>img {
        height: 265px
    }

    .inghern-services .service-img {
        width: 40%;
        min-width: 122px
    }

    .inghern-services .service-title,
    .inghern-services .service-text {
        padding: 30px calc(40% + 24px) 54px 18px
    }

    .inghern-services .service-title h4 {
        font-size: 0.98rem
    }

    .inghern-services .service-title small {
        font-size: 0.74rem
    }
}

.project-item {
    position: relative;
    display: block
}

.project-item img {
    transition: .5s
}

.project-item:hover img,
.project-carousel .owl-item.center img {
    margin-top: -60px
}

.project-item .project-title {
    position: absolute;
    padding: 0 15px;
    width: 100%;
    height: 80px;
    bottom: -80px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--dark);
    transition: .5s
}

.project-item:hover .project-title,
.project-carousel .owl-item.center .project-title {
    bottom: -75px
}

.project-item .project-title::before {
    display: none !important;
    content: none !important
}

.project-item .project-title h4,
.project-item .project-title h5,
.project-item .project-title h4 a,
.project-item .project-title h5 a {
    color: var(--inghern-white) !important
}

.project-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    transition: .5s;
    opacity: 0;
    z-index: 1
}

.project-carousel:hover .owl-nav {
    opacity: 1
}

.team-item:hover .team-social {
    left: 0
}

.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1
}
@media (max-width: 767.98px) {
    .inghern-specialization .project-carousel .project-item {
        min-height: 400px;
        overflow: hidden;
        background: var(--inghern-blue-dark);
    }

    .inghern-specialization .project-carousel .project-item img {
        display: block;
        width: 100%;
        height: 400px !important;
        min-height: 400px;
        object-fit: cover;
        margin-top: 0 !important;
        transform: translateY(0);
        transition: transform 0.5s ease;
    }

    .inghern-specialization .project-carousel .project-title {
        height: 96px;
        bottom: 0 !important;
        background: rgba(11, 31, 51, 0.92);
        z-index: 2;
    }

    .inghern-specialization .project-carousel .project-title h5 {
        font-size: 1rem;
        line-height: 1.25;
        padding: 0 10px;
    }

    .inghern-specialization .project-carousel .owl-item.center img {
        margin-top: 0 !important;
        transform: translateY(-40px);
    }

    .inghern-specialization .project-carousel .owl-item.center .project-title {
        bottom: 0 !important;
    }
}
@media (min-width:768px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px
    }
}

@media (min-width:992px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%)
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1)
}

html {
    scroll-behavior: smooth
}

body {
    color: var(--inghern-gray-text);
    background: var(--inghern-white);
    font-family: "Open Sans", Arial, sans-serif;
    line-height: 1.7
}

::selection {
    color: var(--inghern-white);
    background: var(--inghern-orange)
}

a {
    color: var(--inghern-blue-petrol);
    transition: .3s
}

a:hover {
    color: var(--inghern-orange)
}

.text-primary {
    color: var(--inghern-blue-petrol) !important
}

.text-secondary {
    color: var(--inghern-orange) !important
}

.bg-primary {
    background-color: var(--inghern-blue-petrol) !important
}

.bg-secondary {
    background-color: var(--inghern-orange) !important
}

.bg-dark {
    background-color: var(--inghern-blue-dark) !important
}

.bg-light {
    background-color: var(--inghern-gray) !important
}

.border-primary {
    border-color: var(--inghern-orange) !important
}

h1,
h2,
.h1,
.h2 {
    color: var(--inghern-blue-dark);
    letter-spacing: -.02em
}

h3,
h4,
.h3,
.h4,
h5,
h6,
.h5,
.h6 {
    color: var(--inghern-blue-petrol)
}

.section-title,
.display-5,
.display-6 {
    color: var(--inghern-blue-dark)
}

.section-title::after,
.section-title::before {
    background: var(--inghern-orange) !important
}

.btn {
    transition: .5s;
    font-weight: 500;
    border-radius: 4px;
    letter-spacing: .01em
}

.btn-primary {
    color: var(--inghern-white) !important;
    background-color: var(--inghern-orange) !important;
    border-color: var(--inghern-orange) !important;
    box-shadow: 0 10px 24px rgba(245, 130, 32, .22);
    border-radius: 20px
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    color: var(--inghern-white) !important;
    background-color: var(--inghern-orange-dark) !important;
    border-color: var(--inghern-orange-dark) !important;
    box-shadow: 0 12px 28px rgba(217, 107, 18, .28)
}

.btn-outline-primary {
    color: var(--inghern-blue-petrol) !important;
    border-color: var(--inghern-blue-petrol) !important;
    background: transparent !important
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    color: var(--inghern-white) !important;
    background-color: var(--inghern-blue-petrol) !important;
    border-color: var(--inghern-blue-petrol) !important
}

.btn-outline-light:hover {
    color: var(--inghern-blue-dark) !important
}

.back-to-top {
    position: fixed;
    display: none;
    right: 24px;
    bottom: 24px;
    z-index: 99;
    width: 48px;
    height: 48px;
    padding: 0 !important;
    line-height: 1 !important;
    color: var(--inghern-white);
    background: var(--inghern-orange);
    border-color: var(--inghern-orange);
    overflow: hidden;
}

.back-to-top i {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1;
}
@media (max-width: 575.98px) {
    .back-to-top {
        right: 18px;
        bottom: 26px;
        width: 44px;
        height: 44px;
    }
}
.back-to-top:hover {
    color: var(--inghern-white);
    background: var(--inghern-orange-dark);
    border-color: var(--inghern-orange-dark)
}

.topbar-right {
    position: relative;
    background: var(--inghern-blue-petrol)
}

.topbar-right::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    top: 0;
    left: -15px;
    transform: skewX(-30deg);
    background-color: var(--inghern-blue-petrol)
}

.facts {
    position: relative;
    margin: 6rem 0;
    background: linear-gradient(135deg, rgba(11, 31, 51, .98), rgba(14, 58, 91, .96))
}

.facts h1,
.facts h2,
.facts h3,
.facts h4,
.facts .display-5 {
    color: var(--inghern-white)
}

.facts i,
.facts .text-primary {
    color: var(--inghern-orange) !important
}

.btn-play,
.btn-play:before,
.btn-play:after {
    background: var(--inghern-orange)
}

.project-carousel {
    position: relative;
    background: linear-gradient(135deg, rgba(11, 31, 51, 1), rgba(14, 58, 91, .98))
}

.project-item .project-title,
.project-item .project-title::before {
    background: var(--inghern-blue-dark)
}

.project-item .project-title h4,
.project-item .project-title h5 {
    color: var(--inghern-white)
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--inghern-white);
    background: var(--inghern-orange);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--inghern-orange-dark)
}

.team-item {
    box-shadow: 0 18px 45px rgba(11, 31, 51, .08)
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    display: flex;
    align-items: center;
    background: rgba(14, 58, 91, .92);
    transition: .5s
}

.team-item .team-social .btn {
    color: var(--inghern-white);
    border-color: rgba(255, 255, 255, .75)
}

.team-item .team-social .btn:hover {
    color: var(--inghern-white);
    background: var(--inghern-orange);
    border-color: var(--inghern-orange)
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--inghern-orange);
    font-size: 45px;
    transition: .5s
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--inghern-blue-dark)
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 18px 45px rgba(11, 31, 51, .08);
    transform: scale(.8);
    transition: .5s;
    border: 1px solid rgba(217, 226, 232, .75);
    border-radius: 6px
}

.form-control,
.form-select {
    color: var(--inghern-blue-dark);
    border-color: var(--inghern-gray-border);
    border-radius: 4px
}

.form-control:focus,
.form-select:focus {
    border-color: var(--inghern-blue-steel);
    box-shadow: 0 0 0 .2rem rgba(47, 111, 145, .15)
}

.form-control::placeholder {
    color: #8A98A3
}

.footer {
    color: rgba(255, 255, 255, .68);
    background: var(--inghern-blue-dark) !important
}

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer .text-white {
    color: var(--inghern-white) !important
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .68);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s
}

.footer .btn.btn-link::before {
    position: relative;
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: var(--inghern-orange)
}

.footer .btn.btn-link:hover {
    color: var(--inghern-white);
    letter-spacing: 1px;
    box-shadow: none
}

.footer .btn-square,
.footer .btn-sm-square,
.footer .btn-lg-square {
    color: var(--inghern-white);
    border-color: rgba(255, 255, 255, .35)
}

.footer .btn-square:hover,
.footer .btn-sm-square:hover,
.footer .btn-lg-square:hover {
    background: var(--inghern-orange);
    border-color: var(--inghern-orange)
}

.copyright {
    color: rgba(255, 255, 255, .62);
    border-top: 1px solid rgba(255, 255, 255, .12)
}

.copyright a {
    color: var(--inghern-white)
}

.copyright a:hover {
    color: var(--inghern-orange)
}

.inghern-accent-line {
    width: 72px;
    height: 4px;
    display: block;
    margin: 0 0 22px;
    background: var(--inghern-orange);
    border-radius: 999px
}

.inghern-card {
    background: var(--inghern-white);
    border: 1px solid rgba(217, 226, 232, .75);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(11, 31, 51, .07)
}

.inghern-card-dark {
    color: var(--inghern-white);
    background: linear-gradient(135deg, rgba(11, 31, 51, .98), rgba(14, 58, 91, .96));
    border-radius: 8px
}

.inghern-card-dark h1,
.inghern-card-dark h2,
.inghern-card-dark h3,
.inghern-card-dark h4,
.inghern-card-dark h5,
.inghern-card-dark h6,
.inghern-card-dark p {
    color: var(--inghern-white)
}

.inghern-kicker {
    color: var(--inghern-orange);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase
}

.inghern-soft-section {
    background: linear-gradient(180deg, var(--inghern-white), var(--inghern-blue-soft))
}

.inghern-industrial-border {
    border-left: 4px solid var(--inghern-orange);
    padding-left: 18px
}

.inghern-about {
    background: var(--inghern-white)
}

.section-label {
    display: inline-block;
    position: relative;
    color: var(--inghern-orange);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase
}

.section-label::after {
    content: "";
    position: absolute;
    width: 48px;
    height: 2px;
    top: 50%;
    left: calc(100% + 14px);
    background: var(--inghern-orange);
    transform: translateY(-50%)
}

.inghern-about h1 {
    color: var(--inghern-blue-dark);
    line-height: 1.18;
    letter-spacing: -0.5px
}

.inghern-about p {
    color: var(--inghern-gray-text);
    line-height: 1.8
}

.about-lead {
    color: var(--inghern-blue-petrol) !important;
    font-size: 1.08rem;
    font-weight: 500
}

.about-media-grid {
    position: relative;
    width: 100%;
    max-width: 850px;
    min-height: 850px;
    margin: 0 auto
}

.about-img {
    position: absolute;
    overflow: hidden;
    background: var(--inghern-gray);
    box-shadow: 0 24px 52px rgba(11, 31, 51, 0.14);
    border-radius: 10px
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about-img-main img {
    object-position: center top
}

.about-img-secondary img {
    object-position: center center
}

.about-img-main {
    width: 70%;
    height: 520px;
    top: 0;
    left: 0;
    z-index: 2
}

.about-img-secondary {
    width: 66%;
    height: 330px;
    right: 0;
    bottom: 40px;
    z-index: 1
}

.about-expert-card {
    position: absolute;
    left: 40px;
    bottom: 210px;
    transform: none;
    width: 310px;
    padding: 22px 24px;
    background: var(--inghern-blue-dark);
    border-left: 6px solid var(--inghern-orange);
    box-shadow: 0 24px 50px rgba(139, 176, 212, 0.26);
    z-index: 3
}

.about-expert-card span {
    display: block;
    margin-bottom: 6px;
    color: var(--inghern-orange);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase
}

.about-expert-card strong {
    display: block;
    color: var(--inghern-white);
    font-size: 1.35rem;
    line-height: 1.2
}

.about-expert-card small {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5
}

.about-points {
    display: grid;
    gap: 18px
}

.about-point {
    position: relative;
    display: flex;
    gap: 18px;
    padding: 22px 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #f4f7f9 0%, #eef4f7 52%, rgba(47, 111, 145, 0.18) 100%);
    border: 1px solid rgba(14, 58, 91, 0.10);
    border-left: 4px solid rgba(14, 58, 91, 0.25);
    border-radius: 20px;
    box-shadow: 0 10px 26px rgba(11, 31, 51, 0.06);
    transition: 0.3s ease
}

.about-point::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    top: -55px;
    right: -45px;
    background: rgba(245, 130, 32, 0.08);
    border-radius: 50%;
    transition: 0.3s ease
}

.about-point:hover {
    border-color: rgba(245, 130, 32, 0.32);
    border-left-color: var(--inghern-orange);
    transform: translateX(4px);
    box-shadow: 0 18px 38px rgba(11, 31, 51, 0.12)
}

.about-point:hover::before {
    background: rgba(245, 130, 32, 0.16);
    transform: scale(1.15)
}

.about-point-icon {
    position: relative;
    z-index: 1;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--inghern-white);
    background: linear-gradient(135deg, var(--inghern-blue-petrol), var(--inghern-blue-dark));
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(11, 31, 51, 0.18);
    transition: 0.3s ease
}

.about-point:hover .about-point-icon {
    background: linear-gradient(135deg, var(--inghern-orange), var(--inghern-orange-dark));
    transform: scale(1.06)
}

.about-point h5 {
    margin-bottom: 6px;
    color: var(--inghern-blue-dark);
    font-weight: 700
}

.about-point h5,
.about-point p {
    position: relative;
    z-index: 1
}

.about-point p {
    margin-bottom: 0;
    color: var(--inghern-gray-text);
    font-size: 0.95rem;
    line-height: 1.65
}

.about-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center
}

.about-specialties span {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    color: var(--inghern-blue-petrol);
    background: rgba(14, 58, 91, 0.08);
    border: 1px solid rgba(14, 58, 91, 0.12);
    font-size: 0.85rem;
    font-weight: 600
}

@media (min-width:1200px) {
    .services-shell {
        width: min(1700px, calc(100% - 48px))
    }

    .services-grid {
        --bs-gutter-x: 22px;
        --bs-gutter-y: 34px
    }

    .inghern-services .service-item {
        min-height: 308px;
        border-radius: 22px
    }

    .inghern-services .service-item>img {
        height: 308px
    }

    .inghern-services .service-detail {
        border-radius: 22px
    }

    .inghern-services .service-img {
        top: 18px;
        right: 18px;
        bottom: 18px;
        width: 40%;
        min-width: 215px;
        padding: 7px;
        border-radius: 14px
    }

    .inghern-services .service-img img {
        border-radius: 9px
    }

    .inghern-services .service-title,
    .inghern-services .service-text {
        padding: 38px calc(40% + 34px) 58px 30px
    }

    .inghern-services .service-title h4 {
        font-size: 1.24rem;
        line-height: 1.24
    }

    .inghern-services .service-title small {
        font-size: 0.86rem;
        line-height: 1.45
    }

    .inghern-services .service-item .btn {
        left: 30px
    }
}

@media (max-width:991.98px) {
    .about-media-grid {
        max-width: 680px;
        min-height: 560px;
        margin-bottom: 30px
    }

    .about-img-main {
        width: 72%;
        height: 360px;
        top: 0
    }

    .about-img-secondary {
        width: 68%;
        height: 320px;
        bottom: 0
    }

    .about-expert-card {
        bottom: 115px
    }
}

@media (max-width:575.98px) {
    .about-media-grid {
        min-height: 500px;
        margin-bottom: 26px
    }

    .about-img-main {
        width: 78%;
        height: 300px;
        top: 0;
        left: 0
    }

    .about-img-secondary {
        width: 76%;
        height: 260px;
        right: 0;
        bottom: 0
    }

    .about-expert-card {
        width: min(300px, calc(100% - 36px));
        bottom: 92px;
        padding: 22px 22px
    }

    .about-expert-card strong {
        font-size: 1.15rem
    }

    .about-points {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 12px
    }

    .about-point {
        flex-direction: column;
        gap: 12px;
        padding: 16px 14px;
        border-radius: 14px
    }

    .about-point-icon {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        font-size: 0.9rem
    }

    .about-point h5 {
        font-size: 0.92rem;
        line-height: 1.25;
        margin-bottom: 6px
    }

    .about-point p {
        font-size: 0.78rem;
        line-height: 1.45
    }
}

.facts.inghern-value {
    position: relative;
    overflow: hidden;
    margin: 0 !important;
    padding: 0;
    background: radial-gradient(circle at 12% 20%, rgba(245, 130, 32, 0.16), transparent 28%), radial-gradient(circle at 82% 15%, rgba(47, 111, 145, 0.35), transparent 32%), linear-gradient(135deg, var(--inghern-blue-dark) 0%, var(--inghern-blue-petrol) 100%)
}

.facts.inghern-value::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.55;
    pointer-events: none
}

.facts.inghern-value::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    bottom: -220px;
    border: 1px solid rgba(245, 130, 32, 0.24);
    border-radius: 50%;
    pointer-events: none
}

.inghern-value .container {
    position: relative;
    z-index: 1
}

.section-label-light {
    color: var(--inghern-orange)
}

.section-label-light::after {
    background: var(--inghern-orange)
}

.value-intro {
    position: relative;
    padding: 18px 22px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.8;
    background: rgba(255, 255, 255, 0.045);
    border-left: 4px solid var(--inghern-orange);
    border-radius: 0 16px 16px 0
}

.value-grid {
    position: relative
}

.value-card {
    position: relative;
    overflow: hidden;
    padding: 34px 28px;
    min-height: 300px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.095) 0%, rgba(255, 255, 255, 0.045) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
    transition: 0.35s ease
}

.value-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, var(--inghern-orange), rgba(245, 130, 32, 0.15));
    opacity: 0;
    transition: 0.35s ease
}

.value-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -75px;
    bottom: -75px;
    background: rgba(245, 130, 32, 0.08);
    border-radius: 50%;
    transition: 0.35s ease
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 130, 32, 0.36);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14) 0%, rgba(47, 111, 145, 0.12) 100%);
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.26)
}

.value-card:hover::before {
    opacity: 1
}

.value-card:hover::after {
    transform: scale(1.25);
    background: rgba(245, 130, 32, 0.15)
}

.value-number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: rgba(255, 255, 255, 0.075);
    font-size: 3.1rem;
    font-weight: 700;
    line-height: 1
}

.value-icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--inghern-orange);
    background: rgba(245, 130, 32, 0.10);
    border: 1px solid rgba(245, 130, 32, 0.24);
    border-radius: 18px;
    font-size: 1.9rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    transition: 0.35s ease
}

.value-card:hover .value-icon {
    color: var(--inghern-orange);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(245, 130, 32, 0.45);
    transform: translateY(-6px) rotate(-4deg) scale(1.05);
    box-shadow: 0 16px 32px rgba(245, 130, 32, 0.24)
}

.value-card h4 {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
    color: var(--inghern-white);
    font-size: 1.25rem;
    font-weight: 700
}

.value-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.75;
    font-size: 0.95rem;
    text-align: left;
}

@media (max-width:991.98px) {
    .value-card {
        min-height: 260px
    }
}

@media (max-width:575.98px) {
    .facts.inghern-value {
        margin: 4rem 0 !important
    }
    .value-intro {
        padding: 14px 16px;
        font-size: 0.88rem;
        line-height: 1.6;
        border-left-width: 3px;
        border-radius: 0 12px 12px 0;
    }
    .inghern-value .container {
        padding-left: 22px;
        padding-right: 22px
    }

    .value-grid {
        --bs-gutter-x: 14px;
        --bs-gutter-y: 14px
    }

    .value-card {
        min-height: 250px;
        padding: 22px 18px;
        border-radius: 18px
    }

    .value-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 22px;
        border-radius: 14px;
        font-size: 1.35rem
    }

    .value-number {
        top: 18px;
        right: 18px;
        font-size: 2.4rem
    }

    .value-card h4 {
        font-size: 1rem;
        line-height: 1.25;
        margin-bottom: 12px
    }

    .value-card p {
        font-size: 0.78rem;
        line-height: 1.55;
        text-align: justify
    }
}

.value-closing {
    display: inline-block;
    padding: 14px 30px;
    color: var(--inghern-white);
    background: linear-gradient(135deg, var(--inghern-orange) 0%, var(--inghern-orange-dark) 100%);
    border: 1px solid rgba(245, 130, 32, 0.45);
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow: 0 14px 30px rgba(245, 130, 32, 0.22)
}

.value-closing:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(245, 130, 32, 0.30);
    transition: 0.3s ease
}

.inghern-feature {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 12% 18%, rgba(47, 111, 145, 0.10), transparent 26%), radial-gradient(circle at 88% 82%, rgba(245, 130, 32, 0.08), transparent 24%), linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%)
}

.feature-media {
    position: relative;
    overflow: hidden;
    max-width: 560px;
    margin: 0 auto;
    padding: 10px;
    background: linear-gradient(135deg, var(--inghern-blue-dark) 0%, var(--inghern-blue-petrol) 38%, var(--inghern-blue-steel) 72%, #d8e8f0 100%);
    border: 1px solid rgba(11, 31, 51, 0.22);
    border-radius: 42px;
    box-shadow: 0 28px 64px rgba(11, 31, 51, 0.16), 0 0 0 10px rgba(14, 58, 91, 0.045)
}

.feature-media img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 32px;
    filter: brightness(1.06) contrast(1.04) saturate(1.02)
}

.feature-media::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(11, 31, 51, 0.01) 0%, rgba(11, 31, 51, 0.04) 58%, rgba(11, 31, 51, 0.12) 100%);
    pointer-events: none
}

.feature-badge {
    position: absolute;
    left: 28px;
    bottom: 28px;
    width: calc(100% - 56px);
    padding: 22px 24px;
    background: rgba(11, 31, 51, 0.86);
    border-left: 5px solid var(--inghern-orange);
    border-radius: 18px;
    z-index: 1;
    backdrop-filter: blur(8px)
}

.feature-badge span {
    display: block;
    margin-bottom: 6px;
    color: var(--inghern-orange);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase
}

.feature-badge strong {
    display: block;
    color: var(--inghern-white);
    font-size: 1.25rem;
    line-height: 1.3
}

.feature-lead {
    color: var(--inghern-blue-petrol);
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.75
}

.feature-proof-grid {
    display: grid;
    gap: 16px
}

.feature-proof {
    display: flex;
    gap: 18px;
    padding: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f4f8fb 58%, rgba(47, 111, 145, 0.12) 100%);
    border: 1px solid rgba(245, 130, 32, 0.18);
    border-left: 4px solid rgba(245, 130, 32, 0.55);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(11, 31, 51, 0.05);
    transition: 0.3s ease
}

.feature-proof:hover {
    border-color: rgba(245, 130, 32, 0.42);
    border-left-color: var(--inghern-orange);
    transform: translateX(4px);
    box-shadow: 0 16px 34px rgba(11, 31, 51, 0.10);
    background: linear-gradient(135deg, #ffffff 0%, #f6fbff 48%, rgba(245, 130, 32, 0.08) 100%)
}

.feature-proof-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--inghern-orange);
    background: linear-gradient(135deg, rgba(245, 130, 32, 0.12) 0%, rgba(245, 130, 32, 0.04) 100%);
    border: 1px solid rgba(245, 130, 32, 0.26);
    border-radius: 14px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: 0.3s ease
}

.feature-proof:hover .feature-proof-icon {
    color: var(--inghern-white);
    background: linear-gradient(135deg, var(--inghern-blue-petrol) 0%, var(--inghern-blue-steel) 100%);
    transform: translateY(-4px)
}

.feature-proof h4 {
    margin-bottom: 6px;
    color: var(--inghern-blue-dark);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.3
}

.feature-proof p {
    margin-bottom: 0;
    color: #4c5c68;
    font-size: 0.93rem;
    line-height: 1.7
}

@media (max-width:575.98px) {
    .feature-media img {
        min-height: 360px
    }

    .feature-badge {
        left: 18px;
        bottom: 18px;
        width: calc(100% - 36px);
        padding: 18px
    }

    .feature-badge strong {
        font-size: 1.05rem
    }

    .feature-proof {
        gap: 14px;
        padding: 18px
    }

    .feature-proof-icon {
        width: 42px;
        height: 42px;
        flex: 0 0 42px
    }
}

.feature-tags {
    justify-content: center
}

.feature-tags span {
    padding: 10px 16px;
    color: var(--inghern-orange-dark);
    background: rgba(245, 130, 32, 0.08);
    border: 1px solid rgba(245, 130, 32, 0.28);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(245, 130, 32, 0.06);
    transition: 0.3s ease
}

.feature-tags span:hover {
    color: var(--inghern-white);
    background: linear-gradient(135deg, var(--inghern-orange), var(--inghern-orange-dark));
    border-color: var(--inghern-orange);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(245, 130, 32, 0.18)
}

.inghern-methodology {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--inghern-white) 0%, #f2f7fa 100%)
}

.methodology-heading {
    max-width: 1080px
}

.method-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    padding: 42px 0 12px
}

.method-timeline::before {
    content: "";
    position: absolute;
    top: 72px;
    left: 8%;
    right: 8%;
    border-top: 2px dashed rgba(47, 111, 145, 0.35)
}

.method-step {
    position: relative;
    padding: 0 18px;
    text-align: center
}

.method-number {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    margin: 0 auto 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--inghern-white);
    background: linear-gradient(135deg, var(--inghern-blue-petrol), var(--inghern-blue-dark));
    border: 4px solid var(--inghern-white);
    border-radius: 50%;
    box-shadow: 0 14px 28px rgba(11, 31, 51, 0.16);
    font-weight: 700
}

.method-step h5 {
    margin-bottom: 10px;
    color: var(--inghern-blue-dark);
    font-weight: 700;
    line-height: 1.3
}

.method-step p {
    max-width: 210px;
    margin: 0 auto;
    color: var(--inghern-gray-text);
    font-size: 0.88rem;
    line-height: 1.55
}

.method-step:hover .method-number {
    background: linear-gradient(135deg, var(--inghern-orange), var(--inghern-orange-dark));
    transform: translateY(-4px)
}

@media (max-width:991.98px) {
    .method-timeline {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-left: 24px
    }

    .method-timeline::before {
        top: 0;
        bottom: 0;
        left: 52px;
        right: auto;
        border-top: none;
        border-left: 2px dashed rgba(47, 111, 145, 0.35)
    }

    .method-step {
        display: flex;
        gap: 18px;
        align-items: flex-start;
        padding: 0;
        text-align: left
    }

    .method-number {
        flex: 0 0 58px;
        margin: 0
    }

    .method-step p {
        max-width: none;
        margin: 0
    }
}

.inghern-specialization {
    position: relative;
    overflow: hidden;
    padding: 80px 0 0;
    background: radial-gradient(circle at 12% 18%, rgba(47, 111, 145, 0.12), transparent 26%), radial-gradient(circle at 86% 82%, rgba(245, 130, 32, 0.08), transparent 24%), linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%)
}

.specialization-intro {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    color: var(--inghern-gray-text);
    font-size: 1.02rem;
    line-height: 1.75
}

.inghern-trust {
    position: relative;
    overflow: hidden;
    margin: -2px 0 !important;
    padding: 88px 0 94px;
    background: radial-gradient(circle at 10% 18%, rgba(47, 111, 145, 0.13), transparent 26%), radial-gradient(circle at 88% 78%, rgba(245, 130, 32, 0.07), transparent 24%), linear-gradient(180deg, #e8f1f6 0%, #f6fafc 48%, #e8f1f6 100%);
    z-index: 1
}

.inghern-trust::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 4px;
    background: #e8f1f6;
    pointer-events: none
}

.inghern-trust::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(11, 31, 51, 0.028) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 31, 51, 0.028) 1px, transparent 1px);
    background-size: 42px 42px;
    pointer-events: none
}

.inghern-trust .container {
    position: relative;
    z-index: 1
}

.trust-heading {
    max-width: 1080px
}

.trust-card {
    position: relative;
    overflow: hidden;
    padding: 34px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f4f8fb 60%, rgba(47, 111, 145, 0.12) 100%);
    border: 1px solid rgba(14, 58, 91, 0.12);
    border-left: 4px solid rgba(245, 130, 32, 0.50);
    border-radius: 20px;
    box-shadow: 0 16px 34px rgba(11, 31, 51, 0.08);
    transition: 0.3s ease
}

.trust-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -75px;
    bottom: -75px;
    background: rgba(245, 130, 32, 0.08);
    border-radius: 50%;
    transition: 0.3s ease
}

.trust-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 130, 32, 0.34);
    box-shadow: 0 24px 46px rgba(11, 31, 51, 0.12)
}

.trust-card:hover::after {
    transform: scale(1.2);
    background: rgba(245, 130, 32, 0.14)
}

.trust-icon {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--inghern-orange);
    background: rgba(245, 130, 32, 0.10);
    border: 1px solid rgba(245, 130, 32, 0.26);
    border-radius: 16px;
    font-size: 1.3rem;
    transition: 0.3s ease
}

.trust-card:hover .trust-icon {
    color: var(--inghern-white);
    background: linear-gradient(135deg, var(--inghern-blue-petrol), var(--inghern-blue-steel));
    transform: translateY(-4px)
}

.trust-card h5 {
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
    color: var(--inghern-blue-dark);
    font-weight: 700
}

.trust-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    color: #4c5c68;
    line-height: 1.7
}
@media (max-width: 767.98px) {
    .inghern-trust {
        padding: 42px 0 48px !important;
    }

    .inghern-trust .row {
        --bs-gutter-y: 14px !important;
    }

    .inghern-trust .trust-heading {
        padding-bottom: 16px !important;
    }

    .inghern-trust .trust-card,
    .inghern-trust .trust-card.h-100 {
        height: auto !important;
        min-height: 0 !important;
        display: grid !important;
        grid-template-columns: 42px 1fr;
        grid-template-areas:
            "icon title"
            "icon text";
        column-gap: 14px;
        row-gap: 4px;
        align-items: start;
        padding: 18px 18px !important;
        border-radius: 15px !important;
    }

    .inghern-trust .trust-icon {
        grid-area: icon;
        width: 42px !important;
        height: 42px !important;
        margin-bottom: 0 !important;
        border-radius: 12px !important;
        font-size: 0.95rem !important;
    }

    .inghern-trust .trust-card h5 {
        grid-area: title;
        margin-bottom: 0 !important;
        font-size: 0.95rem !important;
        line-height: 1.25 !important;
    }

    .inghern-trust .trust-card p {
        grid-area: text;
        margin-bottom: 0 !important;
        font-size: 0.78rem !important;
        line-height: 1.45 !important;
    }

    .inghern-trust .trust-card::after {
        width: 78px !important;
        height: 78px !important;
        right: -42px !important;
        bottom: -42px !important;
    }
}
.inghern-success-modal {
    border: 0;
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(11, 31, 51, 0.22)
}

.success-modal-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--inghern-orange);
    color: var(--inghern-white);
    border-radius: 50%;
    font-size: 1.8rem
}

.inghern-success-modal h4 {
    color: var(--inghern-blue-dark);
    font-weight: 800
}

.inghern-success-modal p {
    color: var(--inghern-gray-text);
    line-height: 1.7
}

.inghern-contact {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 12% 16%, rgba(245, 130, 32, 0.16), transparent 28%), radial-gradient(circle at 86% 18%, rgba(47, 111, 145, 0.35), transparent 32%), linear-gradient(135deg, var(--inghern-blue-dark) 0%, var(--inghern-blue-petrol) 100%)
}

.inghern-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none
}

.inghern-contact .section-shell-medium {
    position: relative;
    z-index: 1;
    width: min(1380px, calc(100% - 96px))
}

.inghern-contact .row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 34px
}

.contact-panel,
.contact-form-card {
    min-height: 100%;
    border-radius: 26px;
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.20)
}

.contact-panel {
    padding: 44px 38px;
    color: var(--inghern-white);
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px)
}

.contact-panel h1,
.contact-panel h5 {
    color: var(--inghern-white)
}

.contact-panel h1 {
    max-width: 520px;
    line-height: 1.12
}

.contact-panel p {
    color: rgba(255, 255, 255, 0.76)
}

.contact-info-list {
    display: grid;
    gap: 15px
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 18px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px
}

.contact-info-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--inghern-orange);
    background: rgba(245, 130, 32, 0.10);
    border: 1px solid rgba(245, 130, 32, 0.24);
    border-radius: 14px
}

.contact-info-item p {
    margin-bottom: 2px;
    font-size: 0.85rem
}

.contact-info-item h5 {
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 700;
    overflow-wrap: anywhere
}

.contact-panel-note {
    margin-top: 24px;
    padding: 22px 24px;
    background: rgba(11, 31, 51, 0.55);
    border-left: 5px solid var(--inghern-orange);
    border-radius: 18px
}

.contact-panel-note span {
    display: block;
    margin-bottom: 6px;
    color: var(--inghern-orange);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase
}

.contact-panel-note strong {
    display: block;
    color: var(--inghern-white);
    line-height: 1.35
}

.contact-form-card {
    padding: 44px 38px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.18)
}

.contact-form-card .row {
    --bs-gutter-x: 18px;
    --bs-gutter-y: 18px
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    min-height: 60px;
    color: var(--inghern-blue-dark);
    background: #f8fbfd;
    border: 1px solid rgba(14, 58, 91, 0.16);
    border-radius: 16px
}

.contact-form-card textarea.form-control {
    min-height: 150px
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    background: var(--inghern-white);
    border-color: rgba(245, 130, 32, 0.55);
    box-shadow: 0 0 0 0.2rem rgba(245, 130, 32, 0.12)
}

.contact-form-card label {
    color: var(--inghern-gray-text)
}

.contact-form-card .btn {
    border-radius: 999px
}

@media (min-width:1200px) {
    .inghern-contact .col-lg-5 {
        width: 40%
    }

    .inghern-contact .col-lg-7 {
        width: 60%
    }
}

@media (max-width:1199.98px) {
    .inghern-contact .section-shell-medium {
        width: min(100%, calc(100% - 56px))
    }

    .contact-panel,
    .contact-form-card {
        padding: 38px 32px
    }
}

@media (max-width:991.98px) {
    .inghern-contact .section-shell-medium {
        width: min(100%, calc(100% - 38px))
    }

    .contact-panel,
    .contact-form-card {
        padding: 34px 28px;
        border-radius: 22px
    }

    .contact-panel h1 {
        max-width: 680px
    }
}

@media (max-width:575.98px) {
    .inghern-contact .section-shell-medium {
        width: min(100%, calc(100% - 24px))
    }

    .inghern-contact .row {
        --bs-gutter-y: 22px
    }

    .contact-panel,
    .contact-form-card {
        padding: 28px 22px;
        border-radius: 20px
    }

    .contact-info-item {
        align-items: flex-start;
        padding: 16px
    }

    .contact-info-icon {
        width: 42px;
        height: 42px;
        flex: 0 0 42px
    }

    .contact-form-card .btn {
        width: 100%;
        margin-left: 0 !important;
        margin-top: 10px
    }
}

.section-label-center::after {
    left: calc(100% + 14px)
}

.text-center .section-label::before,
.section-label-center::before {
    content: "";
    position: absolute;
    width: 48px;
    height: 2px;
    top: 50%;
    right: calc(100% + 14px);
    background: var(--inghern-orange);
    transform: translateY(-50%)
}

@media (max-width:575.98px) {

    .section-label-center::before,
    .section-label-center::after {
        display: none
    }
}

@media (min-width:1200px) {
    .display-5 {
        font-size: clamp(2.8rem, 3.15vw, 3.7rem);
        line-height: 1.12
    }
}

@media (max-width:991.98px) {
    .display-5 {
        font-size: clamp(2.15rem, 4.7vw, 3rem);
        line-height: 1.16
    }
}

@media (max-width:575.98px) {
    .display-5 {
        font-size: clamp(1.8rem, 8vw, 2.25rem);
        line-height: 1.18
    }

    p {
        text-wrap: pretty
    }
}

.section-shell {
    position: relative;
    z-index: 1;
    width: min(1680px, calc(100% - 64px));
    margin: 0 auto
}

.section-shell-narrow {
    width: min(1180px, calc(100% - 64px));
    margin: 0 auto
}

.section-shell-medium {
    width: min(1400px, calc(100% - 64px));
    margin: 0 auto
}

@media (max-width:575.98px) {

    .section-shell,
    .section-shell-narrow,
    .section-shell-medium {
        width: min(100%, calc(100% - 24px))
    }
}