@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {
    --orange: #ff2b00;
    --dark-orange: #370B0B;
    --background: #FEFCFB;
    --bs-primary: #ff2b00;
    --bs-primary-rgb: 255, 43, 0;
    --bs-body-font-family: "Source Sans 3", sans-serif;
    --bs-body-font-size: 1.5rem;
    --bs-body-line-height: 1.5;
    --bs-body-color: #370B0B;
    --bs-body-color-rgb: 55, 11, 11;
    --bs-body-bg: #FEFCFB;
    --bs-body-bg-rgb: 254, 252, 251;
    --heading-title-color: #370B0B;
    --heading-color: #370B0B;
    --heading-heighlight-color: #ff2b00;
    --heading-icon-width: 170px;
    --clashrotesk-variable: "ClashGrotesk-Variable";
    --ivypresto-display: "Cormorant Garamond", serif;
    --heading-font: var(--clashrotesk-variable);
    --heading-heiglight-font: var(--ivypresto-display);
    --heading-font-size: 7.5rem;
    --heading-heighlight-font-size: 6.875rem;
    --heading-title-font-size: 1.875rem;
    --heading-line-height: 6.875rem;
}

html, body {
    overflow-x: hidden;
}

    html:has(.navbar-collapse.collapse.show), body:has(.navbar-collapse.collapse.show) {
        overflow-y: hidden;
    }

img {
    max-width: 100%;
}

.x {
    visibility: hidden !important;
}

.bg-img {
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat;
}

.bg-white {
    background-color: #fff
}

.navbar-toggler {
    border: none;
}

.hamberger-menu {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.hamberger-menu span {
    width: 64px;
    height: 6px;
    background: var(--background);
    border-radius: 4px;
    transform-origin: 6.5px 50%;
    transition: all 100ms ease;
}

#isgro-header:has(.navbar-collapse.collapse.show) .hamberger-menu span.middel {
    opacity: 0;
}

#isgro-header:has(.navbar-collapse.collapse.show) .hamberger-menu span.first {
    transform: rotate(45deg);
}

#isgro-header:has(.navbar-collapse.collapse.show) .hamberger-menu span.last {
    transform: rotate(-45deg);
}

.navbar-collapse {
    border-top: 1px solid #ffffff5e;
    margin-top: 8px;
    transition: all 100ms ease;
    background: var(--dark-orange);
}

.navbar-collapse .primary-nav {
    margin-bottom: 2rem;
}

.navbar-collapse .primary-nav a {
    --bs-nav-link-color: var(--background);
    --bs-nav-link-hover-color: var(--background);
    font-size: 64px;
    font-weight: 500;
    line-height: 64px;
    letter-spacing: -0.64px;
    text-transform: uppercase;
    font-family: var(--clashrotesk-variable);
}

.navbar-collapse .secondary-nav a {
    --bs-nav-link-color: var(--background);
    --bs-nav-link-hover-color: var(--background);
    font-size: 32px;
    line-height: 32px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--bs-body-font-family);
}

#isgro-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

#isgro-header:has(.navbar-collapse.collapse.show) {
    background: var(--dark-orange);
    z-index: 11;
    min-height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
}

#isgro-header .navbar {
    --bs-navbar-padding-y: 2.5rem;
}

#isgro-header.is-sticky {
    position: fixed;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    animation: slideDown 0.35s ease-out;
    z-index: 11;
    background-color: rgba(0, 0, 0, 0.3);
}


#isgro-header.is-sticky .navbar {
    --bs-navbar-padding-y: 1rem;
}

#footer {
    background: var(--dark-orange);
    color: var(--background);
    font-size: 1rem;
    padding-top: 3.125rem;
    padding-bottom: 10rem;
    border-top: 1px solid;
}

#footer .address p {
    margin: 0px;
}

#footer .links a {
    color: inherit;
    text-decoration: none;
}

#footer .social ul {
    column-gap: 1.125rem;
}

.banner.only-mobile {
    display: none;
}

.banner .banner_wraper .banner_item {
    padding-top: 56.25%;
}

.banner .banner_wraper .banner_item.show-on-mobile {
    display: none;
}

.banner .banner_wraper .banner_item .banner_img, .banner .banner_wraper .banner_item .banner_video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.description {
    max-width: 660px;
}

.section-heading {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    column-gap: 3.125rem;
}

.section-heading .svg-icon {
    min-width: var(--heading-icon-width);
    max-width: var(--heading-icon-width);
    color: var(--heading-heighlight-color);
}

.section-heading .heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 2.25rem;
}

.section-heading .heading h4 {
    color: var(--heading-title-color);
    font-family: var(--clashrotesk-variable);
    font-size: var(--heading-title-font-size);
    font-weight: 500;
    text-transform: uppercase;
    margin: 0px;
}

.section-heading .news-heading h4 {
    color: #ff2b00;
}

.section-heading .heading h2 {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: var(--heading-font-size);
    font-weight: 500;
    line-height: var(--heading-line-height);
    letter-spacing: -1.2px;
    text-transform: uppercase;
    margin: 0px;
}

.details-heading h2 {
    color: #ff2b00;
    font-family: var(--heading-font);
    font-size: 100px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -1.2px;
    text-transform: uppercase;
    margin: 0px;
}

.section-heading .height-content h2 {
    color: var(--background) !important;
}

.section-heading .height-content h4 {
    color: var(--background) !important;
}

.section-heading .height-content h2 span {
    color: #f82900 !important;
}

.section-heading .heading h2 span {
    color: var(--heading-heighlight-color);
    font-family: var(--heading-heiglight-font);
    /*font-size: var(--heading-heighlight-font-size);*/
    font-style: italic;
    font-weight: 400;
    /*line-height: var(--heading-line-height);*/
    text-transform: uppercase;
}

.s-h-p-l {
    padding-left: var(--heading-icon-width);
}

.talk_section {
    --talk-color: var(--orange);
    padding-top: 5rem;
    padding-bottom: 13rem;
}

.talk_section .section-heading {
    --heading-heighlight-color: var(--talk-color);
    margin-bottom: 40px;
}

.talk_section .section-heading .svg-icon {
    color: var(--talk-color);
}

.talk_section .description {
    max-width: 630px;
    margin-bottom: 5rem;
}

.talk_section .description p {
    margin: 0px;
}

.talk_section .talk-item {
    column-gap: 2rem;
    padding-top: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--talk-color);
    position: relative;
}

.talk_section .talk-item::after {
    content: '';
    border-bottom: 1px solid var(--talk-color);
    position: absolute;
    right: -1000px;
    bottom: -1px;
    left: 100%;
}

.talk_section .talk-item .talk-icon {
    min-width: 140px;
    color: var(--talk-color);
    text-align: center;
    max-width: 140px;
}

.talk_section .talk-item .talk-content {
}

.talk_section .talk-item .talk-content p {
    font-family: var(--clashrotesk-variable);
    font-size: 1.875rem;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0px;
}

.talk_section .talk-item .talk-content a {
    color: var(--talk-color);
    font-family: var(--clashrotesk-variable);
    font-size: 3.75rem;
    font-weight: 500;
    line-height: 70px;
    letter-spacing: -0.6px;
    text-transform: uppercase;
    text-decoration: none;
}

.read-more {
    display: none; /* Hidden by default */
    position: absolute;
    bottom: 5%;
    right: 5%;
    /*transform: translate(-50%, -50%); /* Center the button */
    padding: 10px 20px;
    background-color: #ff2b00;
    color: white;
    border: none;
    opacity: 0;
    display: block;
    transition: opacity linear 1s !important;
    border-radius: 90%;
    padding: 25px 10px;
    width: 96px;
    text-align: center;
    font-size: 15px;
}

.caseStudyWrapper {
    position: relative;
    display: inline-block;
}

.caseStudyWrapper:hover .read-more {
    opacity: 0.9;
    /* Show button on hover */
}

.top-section {
    padding-top: 3rem;
    padding-bottom: 6rem;
    background: var(--orange);
}

.top-section .section-heading {
    --heading-color: var(--background);
    --heading-title-color: var(--background);
    --heading-heighlight-color: var(--bs-body-color);
    --heading-font: var(--clashrotesk-variable);
    --heading-heiglight-font: var(--ivypresto-display);
    margin-bottom: 6rem;
}

.top-section .description {
    color: var(--background)
}

/* Stellt den Container des Videos responsiv ein */
.embed-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    padding-top: 25px;
    height: 0;
}

/* Stellt das iframe des Videos so ein, dass es den Container voll ausf�llt */
.embed-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-facade-content {
    display: none;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.product-url {
    --productColor: var(--orange);
    position: fixed;
    right: 0;
    top: 50%;
    padding: 0px;
    margin: 0px;
    transform: translateY(-50%);
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 0.25rem;
}

.product-url li {
    background: var(--productColor);
    width: 3.75rem;
    height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-url li.active {
    background: var(--bs-primary);
    width: 3.75rem;
    height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-url li a {
    color: var(--background);
    text-align: center;
    font-size: 1.5rem;
    font-weight: 400;
    text-decoration: none;
}

.video_wraper {
    position: relative;
}

.video_wraper .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    outline: none;
    border: none;
}

.video_wraper.playing .play {
    display: none;
}

@media (max-width: 1200px) {
    :root {
        --heading-font-size: 5.5rem;
        --heading-heighlight-font-size: 5rem;
        --heading-line-height: 5rem;
    }

    .section-heading .heading {
        row-gap: 1.25rem;
    }

    .top-section {
        padding-bottom: 4rem;
    }

    .top-section .section-heading {
        margin-bottom: 4rem;
    }

    .talk_section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .talk_section .description {
        margin-bottom: 3rem;
    }

    .talk_section .talk-item {
        padding-top: 2rem;
    }

    .talk_section .talk-item .talk-content a {
        font-size: 3rem;
        line-height: 50px;
    }
}

@media (max-width: 1023px) {
    :root {
        --heading-icon-width: 100px;
        --heading-title-font-size: 1.5rem;
        --heading-font-size: 3.5rem;
        --heading-heighlight-font-size: 3rem;
        --heading-line-height: 3rem;
    }

    .section-heading {
        column-gap: 2.125rem;
    }

    .top-section .section-heading {
        margin-bottom: 3rem;
    }

    #footer {
        padding-bottom: 5rem;
    }
}

@media (max-width: 767px) {
    :root {
        --heading-icon-width: 80px;
        --heading-title-font-size: 1.5rem;
        --heading-font-size: 3rem;
        --heading-heighlight-font-size: 2.5rem;
        --heading-line-height: 2.5rem;
    }

    #isgro-header .navbar {
        --bs-navbar-padding-y: 1rem;
    }

    .navbar-collapse .primary-nav a {
        font-size: 34px;
        line-height: 40px;
    }

    .navbar-collapse .secondary-nav a {
        font-size: 22px;
        line-height: 26px;
    }

    #header .navbar {
        --bs-navbar-padding-y: 1.5rem;
    }

    .navbar-brand {
        max-width: 88px;
    }

    .navbar-toggler {
        max-width: 74px;
    }

    .hamberger-menu {
        row-gap: 8px;
    }

    .hamberger-menu span {
        width: 48px;
        height: 4px;
        transform-origin: 7px 50%;
    }

    .banner.only-mobile {
        display: block;
    }

    .banner .banner_wraper .banner_item.hide-on-mobile {
        display: none;
    }

    .banner .banner_wraper .banner_item.show-on-mobile {
        display: block;
    }

    .s-h-p-l {
        padding-left: 0px;
    }

    .talk_section .talk-item .talk-content a {
        font-size: 2rem;
        line-height: 40px;
        word-break: break-word;
    }

    .talk_section .talk-item .talk-content p {
        font-size: 1.5rem;
    }

    .talk_section .talk-item .talk-icon {
        max-width: 80px;
        min-width: 80px;
    }

    .video_wraper .play {
        max-width: 120px;
    }
}

@media (max-width: 575px) {
    :root {
        --heading-icon-width: 60px;
        --heading-title-font-size: 1.25rem;
        --heading-font-size: 2rem;
        --heading-heighlight-font-size: 2rem;
        --heading-line-height: 2rem;
        --bs-body-font-size: 1.25rem;
        --bs-body-line-height: 1.25;
    }

    .section-heading .heading h2 {
        word-break: break-word;
    }
}

.accordion {
    --bs-accordion-active-color: var(--bs-white);
    --bs-accordion-active-bg: var(--bs-body-color);
    --bs-accordion-border-radius: 0;
    --bs-accordion-inner-border-radius: 0;
}

.accordion-button {
    color: var(--bs-body-color);
    font-family: var(--bs-body-font-family), serif;
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    --bs-accordion-btn-icon: url('data:image/svg+xml, %3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2016%2016%27%20fill%3D%27none%27%20stroke%3D%27%23370B0BFF%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M2%205L8%2011L14%205%27%2F%3E%3C%2Fsvg%3E');
    --bs-accordion-btn-active-icon: url('data:image/svg+xml, %3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2016%2016%27%20fill%3D%27none%27%20stroke%3D%27white%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M2%205L8%2011L14%205%27%2F%3E%3C%2Fsvg%3E');
}

.accordion-item {
    border: none;
    --bs-accordion-btn-focus-box-shadow: none;
}

.accordion-item:not(:last-child) {
    border-bottom: 1px solid var(--bs-body-color);
}


/*------ New Section (Home & News & News Details ) CSS start -----*/

.rectangle {
    background: #370b0b;
}

.slide-img {
    aspect-ratio: 20 / 14;
    object-fit: cover;
}

.content-box {
    padding: 35px 30px;
    color: #000;
    position: relative;
    aspect-ratio: 20 / 14;
}

.content-box h3 {
    color: var(--bs-body-bg);
    font-family: var(--clashrotesk-variable);
    font-size: var(--heading-title-font-size);
    font-weight: 500;
    text-transform: uppercase;
    margin: 15px 0;
}

.content-box p {
    font-size: 24px;
}

.content-box .linkedin {
    color: #000;
}

.content-box .linkedin:hover {
    background-color: #ed143d;
}

.carousel-item {
    padding: 7%;
}
/* ================= FILTER + SEARCH ================= */
.filter-btn {
    border: 1px solid #ff2b00;
    padding: 6px 36px;
    border-radius: 25px;
    background: #eee;
    font-weight: 500;
    cursor: pointer;
    font-size: 24px;
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
}

.filter-btn.active {
    background: #ff2b00;
    color: #fff;
}

.search-box {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #ff2b00;
}

.search-box input {
    border: none;
    padding: 10px 15px;
    outline: none;
    width: 240px;
}

.search-box button {
    background: #ff2b00;
    color: #fff;
    border: none;
    padding: 6px 30px;
    font-size: 18px;
    border-radius: 30px;
}
/* ================= CARDS ================= */
.news-card {
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card-top {
    padding: 24px;
    color: #fff;
}

.card-top .post-head {
    min-height: 150px;
}

.card-top h4 {
    font-size: 30px;
    margin-top: 24px;
    text-transform: uppercase;
}

.card-img {
    position: relative;
}

.card-img img {
    width: 100%;
    aspect-ratio: 12 / 14;
    object-fit: cover;
    display: block;
}
/* ================= COMMON ================= */
.badge-pill {
    padding: 6px 36px;
    border-radius: 25px;
    background: #eee;
    font-weight: 500;
    cursor: pointer;
    font-size: 24px;
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
}

.arrow-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    color: #ff2b00;
}

.load-btn {
    background: #ff2b00;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 24px;
    border-radius: 30px;
    text-decoration: none;
}
/* ================= COLORS ================= */
.bg-orange {
    background: #ff2b00;
}

.bg-pink {
    background: #ff0088;
}

.bg-skyblue {
    background: #00d3d6;
}
/* ================= CAROUSEL DOTS ================= */
.carousel-indicators [data-bs-target] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 1;
}

.carousel-indicators .active {
    background-color: #ff3c00;
}

.hero-section {
    color: #fff;
}

.new-title {
    color: #ff2b00;
}

.main-title {
    color: var(--bs-body-bg);
    font-family: var(--heading-font);
    font-size: var(--heading-font-size);
    font-weight: 500;
    line-height: var(--heading-line-height);
    letter-spacing: -1.2px;
    text-transform: uppercase;
    margin: 0px;
}

.text-title {
    color: #000;
}

.main-title span {
    color: #ff2b00;
    font-style: italic;
    font-weight: 500;
}

.desc-text {
    margin-top: 20px;
    max-width: 600px;
    font-size: 24px;
    float: right;
}

.content-area p {
    color: #000;
}

.content-area h5 {
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 1.5rem;
}

/* =========================
   1024px
========================= */
@media (max-width:1024px) {

    .main-title {
        font-size: 90px;
    }

    .desc-text {
        font-size: 20px;
    }

    .content-box {
        padding: 30px;
    }

    .content-box h3 {
        font-size: 30px;
    }

    .content-box p {
        font-size: 24px;
    }

    .card-top h4 {
        font-size: 24px;
    }

    .badge-pill {
        font-size: 20px;
    }

    .content-box {
        aspect-ratio: 14 / 14;
        height: 80vh;
    }

    .slide-img {
        aspect-ratio: 14 / 14;
        height: 80vh;
    }

    .load-btn {
        padding: 10px 20px;
    }

    .carousel-indicators {
        margin-bottom: -1rem;
    }

    .filter-btn {
        padding: 3px 20px;
    }

    .search-box input {
        padding: 3px 15px;
    }
}

/* =========================
   991px
========================= */
@media (max-width:992px) {

    .carousel-item {
        padding: 5%;
    }

    .text-box {
        margin-top: 0;
    }

    .main-title {
        font-size: 68px;
        letter-spacing: 0;
    }

    .desc-text {
        max-width: 100%;
        float: none;
        font-size: 18px;
    }

    .content-box {
        padding: 17px;
    }

    .content-box h3 {
        font-size: 30px;
    }

    .content-box p {
        font-size: 24px;
    }

    .filter-btn {
        font-size: 18px;
        padding: 8px 24px;
    }

    .card-top h4 {
        font-size: 22px;
    }

    .content-box {
        aspect-ratio: 16 / 14;
    }

    .slide-img {
        aspect-ratio: 16 / 14;
    }

    .load-btn {
        padding: 10px 20px;
    }
}

/* =========================
   768px
========================= */
@media (max-width:768px) {

    .carousel-item {
        padding: 20px;
    }

    .main-title {
        font-size: 52px;
        line-height: 1.2;
    }

    .desc-text {
        font-size: 16px;
    }

    .content-box {
        padding: 20px;
    }

    .content-box h3 {
        font-size: 24px;
        margin: 10px 0;
    }

    .content-box p {
        font-size: 20px;
    }

    .filter-btn {
        font-size: 15px;
        padding: 8px 18px;
    }

    .search-box {
        width: 100%;
    }

    .search-box input {
        width: 100%;
        font-size: 14px;
    }

    .search-box button {
        font-size: 14px;
        padding: 6px 18px;
    }

    .card-top {
        padding: 18px;
    }

    .card-top h4 {
        font-size: 20px;
    }

    .badge-pill {
        font-size: 20px;
    }

    .carousel-indicators {
        margin-bottom: -2rem;
    }

    .carousel-indicators [data-bs-target] {
        width: 25px;
        height: 25px;
    }
}

/* =========================
   480px
========================= */
@media (max-width:480px) {

    .main-title {
        font-size: 38px;
    }

    .desc-text {
        font-size: 14px;
    }

    .content-box {
        padding: 18px 15px;
    }

    .content-box h3 {
        font-size: 30px;
    }

    .content-box p {
        font-size: 20px;
    }

    .filter-btn {
        display: block;
        text-align: center;
        font-size: 14px;
        padding: 10px;
    }

    .search-box {
        display: flex;
        width: 100%;
    }

    .search-box input {
        padding: 8px 12px;
    }

    .search-box button {
        padding: 6px 14px;
    }

    .card-top {
        padding: 25px 15px;
    }

    .card-top h4 {
        font-size: 18px;
        margin-top: 15px;
    }

    .badge-pill {
        font-size: 18px;
        padding: 5px 14px;
    }

    .carousel-indicators [data-bs-target] {
        width: 14px;
        height: 14px;
    }

    .card-top .post-head {
        min-height: 80px;
    }
}

/* =========================
   424px
========================= */
@media (max-width:424px) {

    .main-title {
        font-size: 32px;
    }

    .content-box {
        padding: 15px 12px;
    }

    .card-top h4 {
        font-size: 16px;
    }

    .badge-pill {
        font-size: 11px;
    }

    .content-box h3 {
        font-size: 24px;
    }

    .content-box p {
        font-size: 20px;
    }

    .badge-pill {
        font-size: 20px;
    }
}

/* =========================
   320px
========================= */
@media (max-width:320px) {

    .main-title {
        font-size: 26px;
    }

    .desc-text {
        font-size: 12px;
    }

    .content-box {
        padding: 25px 15px;
    }

    .filter-btn {
        font-size: 12px;
    }

    .search-box button {
        font-size: 12px;
        padding: 6px 10px;
    }

    .card-top h4 {
        font-size: 14px;
    }

    .carousel-indicators {
        margin-bottom: -1rem;
    }

    .card-top .post-head {
        min-height: 100px;
    }
}

        