/* Import Fonts CSS file */
@import url('./fonts.css');
/* Basic Needs  */
@import url('./basic-needs.css');

/* --------------------------- */
/* START :: Header Section 1   */
/* --------------------------- */
/* .header-section+* {
    position: relative;
    z-index: 2;
} */
.header-hold-box {
    min-height: 112px;
}
.header-section {
    height: 112px;
    border-bottom: 2px solid #917246;
    box-shadow: 0px 0px 16px 0px #00000040;
    transition: all .4s ease;
    background: #181818;
}

.header-section.show {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999;
    top: -120px;
}

.header-section.anim {
    top: 0;
}

.header-section .container {
    height: 100%;
}

.header-section .header-container {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

.header-section .logo {
    width: 186px;
    user-select: none;
    display: flex;
}

.header-section .logo img {
    width: 100%;
}

.header-section .navbar-container {
    height: 100%;
    display: flex;
    margin-left: auto;
    align-items: center;
    margin-right: 20px;
}

.header-section .navbar-container nav {
    height: 100%;
    align-items: center;
    display: flex;
}

.header-section .navbar-container nav .toggle-btn-x {
    display: none;
}

.header-section .navbar-container nav > ul {
    display: flex;
    padding: 0;
    gap: 26px;
    height: 100%;
    align-items: center;
}

.header-section .navbar-container nav > ul > li {
    align-items: center;
    display: flex;
    min-width: max-content;
}

/*.header-section .navbar-container nav > ul > li:has._active .submenu-triger a {
    color: #E7EEEA;
}*/

.header-section .navbar-container nav > ul > li.lang-selector .submenu-triger a {
    align-items: center;
}

.header-section .navbar-container nav > ul > li.lang-selector img {
    width: 20px;
    margin-right: 7px;
}

.header-section .navbar-container nav > ul > li._active > .submenu-triger a {
    color: #E7EEEA;
}

.header-section .navbar-container nav > ul > li > .submenu-triger {
    padding: 14px 0;
    user-select: none;
}

.header-section .navbar-container nav > ul > li > .submenu-triger > a {
    display: flex;
    color: #E7EEEA;
    cursor: pointer;
    transition: all .3s ease;
}

.header-section .navbar-container nav > ul > li > .submenu-triger > a span {
    transition: all .3s ease;
    font-family: 'Space Grotesk';
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.1px;
    text-align: center;
}

.header-section .navbar-container nav > ul > li > .submenu-triger > a i {
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-section .navbar-container nav > ul > li:hover a {
    color: #E7EEEA;
}

.header-section .navbar-container nav > ul > li > .submenu-triger:hover > a i {
    transform: rotate(180deg);
}


.header-section .navbar-container nav > ul > li > .submenu {
    padding: 8px;
    border-radius: 4px;
    color: white;
    position: absolute;
    box-shadow: 0 0 3px grey;
    background: #181818;
    top: 120px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    z-index: 3;
}

.header-section .navbar-container nav > ul > li:hover > .submenu {
    top: 80px ;
    opacity: 1;
    visibility: visible;
    z-index: 3;
}

.header-section .navbar-container nav > ul > li > .submenu > ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.header-section .navbar-container nav > ul > li > .submenu > ul li {
    width: 100%;
}

.header-section .navbar-container nav > ul > li > .submenu > ul li._active a {
    background: #E7EEEA;
}

.header-section .navbar-container nav > ul > li > .submenu > ul li._active a span {
    color: white;
}

.header-section .navbar-container nav > ul > li > .submenu > ul li a {
    cursor: pointer;
    width: 100%;
    display: block;
    line-height: 30px;
    padding: 2px 10px;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    transition: all .0s ease;
}

.header-section .navbar-container nav > ul > li > .submenu > ul li a span {
    transition: all .0s ease;
}

.header-section .navbar-container nav > ul > li > .submenu > ul li a:hover {
    background: #000000;
}

.header-section .navbar-container nav > ul > li > .submenu > ul li a:hover span {
    color: white;
}

.header-section .resp-menu-toggle-btn {
    margin-left: 10px;
    display: none;
}

.header-section .resp-menu-toggle-btn input#menu-check {
    display: none;
}

.header-section .resp-menu-toggle-btn .menu-icon {
    cursor: pointer;
    display: block;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.header-section .resp-menu-toggle-btn .menu-icon .menu_bars,
.header-section .resp-menu-toggle-btn .menu-icon .menu_bars::before,
.header-section .resp-menu-toggle-btn .menu-icon .menu_bars::after {
    background: #E7EEEA;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    transition: background ease 0.3s, top ease 0.3s 0.3s,
        transform ease 0.3s;
    width: 20px;
    border-radius: 10px;
}

.header-section .resp-menu-toggle-btn .menu-icon:hover .menu_bars,
.header-section .resp-menu-toggle-btn .menu-icon:hover .menu_bars::before,
.header-section .resp-menu-toggle-btn .menu-icon:hover .menu_bars::after {
    background: #E7EEEA;
}

.header-section .resp-menu-toggle-btn .menu-icon .menu_bars {
    position: relative;
}

.header-section .resp-menu-toggle-btn .menu-icon .menu_bars::before {
    top: -6px;
}

.header-section .resp-menu-toggle-btn .menu-icon .menu_bars::after {
    top: 6px;
}

.header-section .resp-menu-toggle-btn #menu-check:checked+.menu-icon .menu_bars {
    background: transparent;
}

.header-section .resp-menu-toggle-btn #menu-check:checked+.menu-icon .menu_bars::before {
    transform: rotate(45deg);
}

.header-section .resp-menu-toggle-btn #menu-check:checked+.menu-icon .menu_bars::after {
    transform: rotate(-45deg);
}

.header-section .resp-menu-toggle-btn #menu-check:checked+.menu-icon .menu_bars::before,
.header-section .resp-menu-toggle-btn #menu-check:checked+.menu-icon .menu_bars::after {
    top: 0;
    transition: top ease 0.3s, transform ease 0.3s 0.3s;
}


.toggle-btn {
    display: none;
}

.toggle-btn input {
    display: none;
}

/* ------------------------- */
/* END :: Header Section CSS */
/* ------------------------- */
/* ######################### */
/* ######################### */
/* ######################### */
/*  */
.video_popup-section {
    background: #2c2c2cd0;
    position: fixed;
    z-index: 999;
    inset: 0;
    place-items: center;
    backdrop-filter: blur(2px);
    display: none;
    opacity: 0;
    transition: all .5s ease;
}

.video_popup-section.show {
    display: grid;
}

.video_popup-section.anim {
    opacity: 1;
}

.video_popup-container {
    min-width: 40vw;
    background-color: black;
    min-height: 80vh;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
}

.video_popup-container iframe {
    min-height: 100%;
    width: 100%;
    min-width: 80vw;
}

.popup-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    border-radius: 4px;
    background-color: #262626;
}

.popup-close-btn:hover {
    background-color: #313131;
}

/*  */
/* ######################### */
/* ######################### */
/* ######################### */
/* ---------------------------- */
/*  Starts :: Hero Container 2  */
/* ---------------------------  */
.hero-section {
    width: 100%;
    padding: 10vh 0 230px;
    position: relative;
    overflow: hidden;
    margin-bottom: -40px;
}

.hero-section .hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-section .hero__bg img,
.hero-section .hero__bg video,
.hero-section .hero__bg picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Alle möglichen Play-Buttons ausblenden */
video::-webkit-media-controls,
video::-webkit-media-controls-enclosure,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-start-playback-button,
video::-internal-media-controls-overlay-cast-button {
    display: none !important;
    -webkit-appearance: none !important;
    opacity: 0 !important;
}

video::cue {
    display: none;
}

.hero-section .hero__bg::before {
    content: '';
    background: linear-gradient(to right, #181818 0 22%, #00000000 70% 100%);
    position: absolute;
    inset: 0;
}

.hero-section::before {
    content: '';
    width: 110%;
    background: #181818;
    display: block;
    position: absolute;
    left: -5%;
    /* transform: rotate(4deg); */
    border-top: 2px solid #917246;
    z-index: 2;
    height: 200px;
    bottom: -110px;
}

/* Hero Content  */
.hero-content {
    justify-content: center;
    max-width: 630px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: "Poppins";
}

.hero-content p {
    font-size: 16px;
    font-weight: 700;
}

.hero-content span {
    color: #E7EEEA;
}

.hero-content h1 {
    color: #E7EEEA;
    font-size: 84px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 89px;
    position: relative;
    z-index: 2;
}

.hero-content h1 span {
    position: relative;
/*     display: inline-block; */
}

.hero-content h1 span::before {
    content: "";
/*     background-image: url(../media/images/Decore.png); */
    background-size: 100%;
    width: 130%;
    height: 20px;
    display: inline-block;
    position: absolute;
    background-repeat: no-repeat;
    bottom: -4px;
    z-index: -1;
}

.hero-content>span {
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
}

/* Sloth Brain Section  */
.sloth-brain-section {
    display: flex;
    gap: 64px;
    align-items: center;
    margin-top: 20px;
}

.slothbrain-intro {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slothbrain-intro a {
    gap: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.slothbrain-intro a i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #14552C;
    color: white;
}

.slothbrain-intro a span {
    color: #414E46;
}

/* --------------------------- */
/*    END :: Hero Container    */
/* --------------------------- */
/* ######################### */
/* ######################### */
/* ######################### */
/* ---------------------------- */
/*  Starts :: Info Container 3  */
/* --------------------------- */
.folivora-info-section {
    position: relative;
    z-index: 3;
}

.folivora-info-container .titles {
    text-align: center;
    color: var(--black);
}

.folivora-info-container .titles p {
    margin: 10px 0 0 0;
    color: #E7EEEA;
}

.folivora-info-container .info-boxes {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    overflow: hidden;
}
.info-box-container{
    background: linear-gradient(180deg, #B58E58 0%, #6E5026 100%);
    border: 1px solid;
    border-radius: 4px;
    padding: 1px;
}

.folivora-info-container .info-boxes .info-box-container {
    background: linear-gradient(180deg, #B58E58 0%, #6E5026 100%);
    border: 1px solid;
    border-radius: 4px;
    padding: 1px;
    width: 100%;
    height: 100%;
}

.folivora-info-container .info-boxes .info-box {
    /* border: 2px solid #917246; */
    border-radius: 2px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
   /* justify-content: center;*/
    position: relative;
    background: #131313;
    width: 100%;
    min-height: 220px;
}

.folivora-info-container .info-boxes .info-box img {
    margin-bottom: 10px;
    transition: all .3s ease;
}

.folivora-info-container .info-boxes .info-box p {
    color: #E7EEEA;
}

.folivora-info-container .info-boxes .info-box:hover {
    cursor: default;
}

.folivora-info-container .info-boxes .info-box:hover img {
    transform: scale(1.1) translateY(4px);
}

.folivora-info-container .content-video-section {
    margin-top: 40px;
}

.folivora-info-container .content-video-section p {
    color: #E7EEEA;
}

/* ------------------------- */
/* END ::  Info Container    */
/* ------------------------- */
/* ######################### */
/* ######################### */
/* ######################### */
/* ------------------------------ */
/* START :: Industry  Container 5 */
/* ------------------------------ */
.products-industry-section {
    padding: 50px 0 125px;
    /*background-image: url(../media/images/FFM1.png);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.products-industry-container {
    text-align: center;
}

.products-industry-container>h1 {
    color: #E7EEEA;
    text-align: center;
}

.products-industry-container>p {
    text-align: center;
    color: #414E46;
}

.products-industry-container>h1+p {
    margin: 20px 0 10px;
}

.products-industry-container p {
    color: #E7EEEA;
}

.products-industry-container .industry-cards {
    margin-top: 60px;
}

.products-industry-container .industry-content .industry-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Industry Cards */
.industry-cards {
    display: flex;
    gap: 20px;
    margin-left: -20px;
}

.industry-cards .card {
    width: 100%;
    text-align: center;
    border-radius: 4px;
    background-color: white;
    padding: 24px 16px;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    user-select: none;
    box-shadow: 0 0 0 1px #917246;
}

.industry-cards .card>* {
    position: relative;
    z-index: 3;
}

.industry-cards .card::after {
    content: '';
    position: absolute;
    border-radius: 4px;
    inset: 0;
    background-color: #131313;
    z-index: 2;
}

.industry-cards .card::before {
    content: '';
    position: absolute;
    width: 24px;
    aspect-ratio: 1 / 1;
    background: #917246;
    border-radius: 4px;
    bottom: 50%;
    transform: rotate(45deg);
    z-index: 2;
    transition: all .6s ease;
}

.industry-cards .card:hover {
    box-shadow: 0 0 0 2px #917246;
}

.industry-cards .card.active {
    box-shadow: 0 0 0 2px #917246;
}

.industry-cards .card.active::before {
    bottom: -12px;
}

.industry-cards .card p {
    padding-top: 8px;
    color: #E7EEEA;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/*     Industry Description      */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.industry-cards-desc-container {
    margin: 50px 0 0;
    position: relative;
}

.industry-cards-desc-container>.industry-desc {
    border: 2px solid #917246;
    padding: 24px 16px;
    border-radius: 4px;
    background: #0D0B0BB2;
    display: none;
    transform: translateY(400px) scale(0.7);
    transition: all .8s ease;
    opacity: 0;
    top: 0;
    position: absolute;
    width: 100%;
}

.industry-cards-desc-container>.industry-desc:first-child {
    display: block !important;
    position: relative !important;
}

.industry-cards-desc-container>.industry-desc.show {
    display: block;
}

.industry-cards-desc-container>.industry-desc.anim {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.industry-cards-desc-container>.industry-desc p {
    color: #E7EEEA;
    font-family: "Space Grotesk";
    font-size: 14px;
    font-weight: 400;
    line-height: 23.8px;
    padding-bottom: 10px;
}

.desc-items {
    display: flow;
    padding-left: 16px;
    gap: 140px;
}

.desc-items h3 {
    color: #E7EEEA;
    gap: 10px;
}

/*  */
.desc-list ul {
    padding-left: 16px;
	padding-bottom: 16px;
}

.desc-list li {
    list-style: disc;
    color: #E7EEEA;
}

.desc-list li a {
    color: #E7EEEA;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 23.8px;
}

/*  */
.industry-links {
    display: flex;
    gap: 50px;
    margin-top: auto;
    align-items: center;
}

.industry-links b a {
    display: block;
    min-width: max-content;
    padding-right: 12px;
}

/* --------------------------- */
/* END :: Industry  Container  */
/* --------------------------- */
/* ######################### */
/* ######################### */
/* ######################### */
/* ---------------------------- */
/* START :: Product  Container 6 */
/* ---------------------------- */
.indus-product-head {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 48px;
}

.indus-product-head h1 {
    grid-column: 1/2;
}

.indus-product-head p {
    grid-column: 1/3;
    color: #E7EEEA;
}

.fa-arrow-down{
    background: linear-gradient(180deg, #B58E58 0%, #624823 76.09%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
   /* font-size: 40px;
    display: block;
    align-self: center; */
}
.product-cards i {
    /* background: linear-gradient(180deg, #B58E58 0%, #624823 76.09%);
; */
    font-size: 40px;
    display: block;
    text-align: center;
    color: transparent;
}

.product-card-container{
    background: linear-gradient(180deg, #B58E58 0%, #6E5026 100%);
    border: 1px solid;
    border-radius: 4px;
    padding: 1px;
    margin: 24px 0;
}

.product-card {
    padding: 24px;
    display: flex;
    gap: 20px;
    /* margin: 24px 0; */
    border: 1px solid;
    border-radius: 2px;
    background-color: #131313;
}

.product-card .icon-box {
    align-items: center;
    display: flex;
    gap: 20px;
    width: 50%;
}

.product-card .icon-box .icon-image img {
    width: 100%;
}

.product-card .icon-box p {
    color: #E7EEEA;
}

.product-card .product-content {
    width: 50%;
}

.product-card .product-content p {
    font-size: 16px;
    color: #E7EEEA;
}

/* -------------------------- */
/* END :: Product  Container  */
/* -------------------------- */
/* ######################### */
/* ######################### */
/* ######################### */
/* ------------------------------- */
/* START :: Services   Container 7 */
/* ------------------------------ */
.icon-box-container {
    display: flex;
}

.product-services-head p {
    margin: 16px 0 48px;
}

.services-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.icon-box-container {
    display: flex;
    gap: 24px;
}

.services-box-container{
     background: linear-gradient(180deg, #B58E58 0%, #6E5026 100%);
    border: 1px solid;
    border-radius: 4px;
    padding: 1px;
    width: 50%;
}

.services-box {
    
    /* width: 50%; */
    height: 100%;
    padding: 24px;
    border: 1px solid ;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    background: #131313;
    backdrop-filter: blur(16px);
}

.services-box .icon-title {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 16px;
}

.services-box .icon-title p {
    color: #E7EEEA;
}

.services-box p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #E7EEEA;
    letter-spacing: -1%;
}

.services-list {
    margin: 40px 0 0 30px;
}

.services-list ul li {
    list-style: disc;
    color: #E7EEEA;
}

.services-list ul li a {
    color: #232323;
    font-size: 16px;
    font-weight: 700;
}

/* ------------------------------ */
/* END :: Services  Container     */
/* ------------------------------ */
/* ------------------------------ */
/* START :: Go-to Work  Container  */
/* ------------------------------ */
.goto-work-container {
    background: linear-gradient(180deg, #B58E58 0%, #6E5026 100%);
     border: 1px solid;
    border-radius: 4px;
    padding: 1px;
}

.goto-work {
    max-width: 1240px;
    background-color: #131313;
    width: 100%;
    text-align: center;
    border-radius: 2px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid ;
}

.goto-work-container h1,
.goto-work-container p {
    color: #E7EEEA;
}

.goto-btns {
    justify-content: center;
    display: flex;
    gap: 56px;
    padding-top: 8px;
}

.goto-btns .overview-link {
    color: #E7EEEA;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: underline;
}

/* ---------------------------- */
/* END :: Goto Work  Container  */
/* ---------------------------- */
/* ######################### */
/* ######################### */
/* ######################### */
/* ------------------------------- */
/* START :: Form Section Container  */
/* ------------------------------- */
.form-section {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45.27%, #B58E58 100%);
}

.form-container {
    padding-bottom: 110px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-image {
    max-width: 1240px;
    width: 100%;
    margin-top: 24px;
}

.form-image img {
    width: 100%;
}

/* -------------------------------- */
/* START :: Form Section Container  */
/* -------------------------------- */
/* ######################### */
/* ######################### */
/* ######################### */
/* ---------------------------------- */
/* START :: Footer Section Container  */
/* ---------------------------------- */
.footer-section {
    background: #0D0B0B;
}

.footer-container {
    text-align: center;
    padding: 60px 40px 50px;
    color: white;
}

.footer-container p {
    color: #E7EEEA;
}

.footer-logo {
    margin: 0 auto;
    width: 270px;
}

.footer-logo img {
    width: 100%;
}

.folivora-links {
    display: flex;
    gap: 20px;
    padding: 65px 0;
    justify-content: center;
}

.folivora-links ul {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
}

.folivora-links ul li a {
    color: #E7EEEA;
    font-size: 18px;
    font-weight: 400;
    padding: 0 16px;
}

.folivora-links ul li:not(:last-child) a {
    border-right: 1px solid #E7EEEA;
}

.footer-container>a {
    color: #E7EEEA;
}

/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* Client Page CSS :: Start   */
/* Client Industry Container  */
.industry-container {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 50%);
    grid-template-areas: 'headings image' 'content image';
    row-gap: 20px;
    position: relative;
    z-index: 2;
}

.industry-container:has(.industry-headings p) {
    grid-template-areas: 'headings headings' 'content image';
}

.industry-container .industry-headings {
    grid-area: headings;
    display: flex;
    justify-content: end;
    row-gap: 10px;
    flex-direction: column;
}

.industry-container .industry-headings p {
    margin: 10px 0 0 0;
    color: var(--grey);
}

.industry-container .industry-content {
    grid-area: content;
}

.industry-container .industry-content p {
    color: #E7EEEA;
}

.industry-container .industry-content>a {
    margin-top: 60px;
    display: block;
}

.industry-container .industry-content .industry-list {
    margin-top: 48px;
}

.industry-container .industry-content .industry-list ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.industry-container .industry-content .industry-list ul li {
    color: #E7EEEA;
    font-weight: 400;
	list-style: disc;
	
}

.industry-container .industry-content .industry-list ul li i {
    margin-right: 4px;
}

.industry-container .industry-content .industry-list h4 {
    margin-top: 25px;
	margin-bottom: 10px;
}

.industry-container .industry-image {
    grid-area: image;
    display: flex;
    align-items: center;
    padding-left: 50px;
    position: relative;
    margin-top: 20px;
}

.industry-container .industry-image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    border-radius: 4px
}

.industry-container .industry-image svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.industry-container .industry-image svg.front-shape-svg {
    bottom: -60px;
    right: -40px;
    transform: rotate(65deg);
    z-index: 1;
}

.industry-container .industry-image svg.back-shape-svg {
    top: -50px;
    left: 10px;
    transform: rotate(105deg);
}

/* Client Page CSS :: End */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* Services Page CSS :: Start   */
.transform-container {
    text-align: center;
}

/* Transform Container  */
.service-process-steps-container {
    align-items: center;
    position: relative;
}

.service-process-steps-container::before {
    content: "";
    width: 100%;
    height: 8px;
    position: absolute;
    background-color: #917246;
    align-self: center;
}

.service-process-steps-container .process-step {
    max-height: max-content;
}

.service-process-steps-container .process-step .text-small {
    color: var(--grey);
}

.transform-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.transform-list li {
    list-style: unset;
    padding: 10px 0px 10px 0px;
}

.folivora-services-bg {
    padding: 0px 0 25px;
    background-image: url(../media/images/Ökosystem.svg);
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
}

/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/*   Client Page CSS :: Start   */
#casestudy-swiper {
    margin-top: 50px;
}

#casestudy-swiper .swiper-slide {
    border-radius: 32px;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(0.94);
}

#casestudy-swiper .swiper-slide.swiper-slide-active {
    transform: scale(1);
}

.caseStudy-swiper-pagination {
    margin: 0 auto;
    display: flex;
    max-width: max-content;
    margin-top: 40px;
    gap: 8px;
}

.caseStudy-swiper-pagination .swiper-pagination-bullet {
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
    background-color: #505050;
    margin: 0 !important;
}

.caseStudy-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #917246;
}

.case-study-head {
    gap: 10px;
}

.case-study-head div {
    grid-column: 1/3;
}

.residentail-container {
    padding: 48px 30px 60px 30px;
    /* background: linear-gradient(to bottom, #55b7dd, #b0d267); */
    text-align: center;
    border-radius: 8px;
}

.residentail-container ._label {
    width: 140px;
    margin-right: auto;
    position: absolute;
    display: block;
    margin-top: -10px;
}

.residentail-container p {
    padding: 24px 0 60px 0;
    color: #E7EEEA;
	font-weight: 700;
	
}

.residentail-container .residential-cards {
    display: flex;
    justify-content: space-between;
    text-align: start;
}

.residentail-container .residential-card {
    padding: 24px 32px;
    width: 32%;
    border-radius: 8px;
    background: #00000080;
    backdrop-filter: blur(10px);
    border-radius: 16px;
}

.residentail-container .residential-card h3 {
    color: #E7EEEA;
}

.residentail-container .residential-card li {
    color: #E7EEEA;
}

.casestudy-swiper-section {
    max-width: 100%;
    overflow: hidden;
}

.caseStudy-swiper.container {
    overflow: visible;
}

/*  Page CSS :: End */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* **************************** */
/* About-us Page CSS :: Start   */
.slothe-title {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.slothe-title span {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    color: #d49a49;
}

/* ############################ */
/* ############################ */
/* START :: Research  Container */
.research-container h1 {
    text-align: center;
    margin-bottom: 70px;
}

.research-detail {
    display: flex;
    gap: 36px;
}

.research-image-box {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
	justify-content:space-evenly
}

.research-image-box .reseach-image {
    max-width: 270px;
    width: 100%;
}

.research-image-box div {
	min-width: max-content;
    max-width: max-content;
    min-width: 333px;
}

.research-image-box a {
    /*background-color: #004e73;*/
    background-color: #004E73;
    color: #E7EEEA;
    border-radius: 8px;
    min-width: max-content;
    max-width: max-content;
    min-width: 333px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.research-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 15px;
}

.research-content p {
    color: #E7EEEA;
}

.legal-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 15px;
    padding-bottom: 50px;
}

.legal-container h2 {
    margin-top: 20px;
    margin-bottom: 15px;
}

.legal-container h3 {
    margin-top: 10px;
    margin-bottom: 15px;
}

/* ############################ */
/* ############################ */
/* ############################ */
/* ---------------------------- */
/* START :: Features Container  */
/* ---------------------------- */


.folivora-sticky-anim-section-container {
    background: linear-gradient(180deg, #B58E58 0%, #6E5026 100%);
    border-radius: 5px;
    padding: 1px; /* thickness of border */
    margin: 0 4%;
    overflow: hidden;
}

.folivora-sticky-anim-section {
    background-color: #181818;
    border-radius: 5px;
    padding: 80px 0;
    display: flex;
    align-items: center;
    margin: 0;
}

.folivora-sticky-anim-section:nth-child(2) {
    /* top: 170px; */
    z-index: 2;
    margin: 0 6%;
    margin-top: 50px;
	background: linear-gradient(180deg, #181818 0%, rgba(24, 24, 24, 0.68) 43.78%, #B58E58 100%);
	border: 1px solid #917246;

}
.folivora-sticky-anim-section-deployment-container {
    background: linear-gradient(180deg, #B58E58 0%, #6E5026 100%);
    border-radius: 4px;
    padding: 1px; /* thickness of border */
    margin: 0 8%;
	margin-top: 50px;
    overflow: hidden;
}

.folivora-sticky-anim-section-deployment {
    background-color: #181818;
    border-radius: 4px;
    padding: 80px 0;
    display: flex;
    align-items: center;
    z-index: 3;
/*     margin: 0 8%;
    margin-top: 50px; */
}

.folivora-sticky-anim-section:nth-child(3) {
    /* top: 210px; */
    z-index: 3;
    margin: 0 8%;
    margin-top: 50px;
}

.folivora-sticky-anim-section ._label {
/*     background: #FCFCFC; */
    max-width: max-content;
    padding: 10px 30px;
    border-radius: 4px;
    box-shadow: 1px 3px 0 #917246;
    font-family: 'Space Grotesk';
    font-size: 22.74px;
    font-weight: 400;
    color: #E7EEEA;
    margin-bottom: -20px;
}

.folivora-sticky-anim-section-deployment ._label {
/*     background: #FCFCFC; */
    max-width: max-content;
    padding: 10px 30px;
    border-radius: 4px;
    box-shadow: 1px 3px 0 #917246;
    font-family: 'Space Grotesk';
    font-size: 22.74px;
    font-weight: 400;
    color: #E7EEEA;
    margin-bottom: -20px;
}

.folivora-sticky-anim-section ._label span {
    font-size: 28.42px;
    font-weight: 700;
    color: #917246;
}
.folivora-sticky-anim-section-deployment ._label span {
    font-size: 28.42px;
    font-weight: 700;
    color: #917246;
}

.folivora-features-container {
    text-align: center;
}

.folivora-features-container .titles {
    color: var(--black);
}

.folivora-features-container .titles p {
    color: #E7EEEA;
}

.folivora-features-container .titles>h1+p {
    margin: 20px 0 10px;
}

.features-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.features-box-container{
	background: linear-gradient(180deg, #B58E58 0%, #6E5026 100%);
    border: 1px solid #917246;
    border-radius: 4px;
    padding: 1px;
}

.features-box {
    background-color: #131313;
    border: 1px solid #131313;
    border-radius: 4px;
    padding: 16px;
	height:100%;
	width:100%
}

.features-box p {
    color: #E7EEEA;
}

.features-box .features-box-head {
    display: flex;
    margin-bottom: 16px;
    gap: 20px;
    align-items: center;
}

/* -------------------------- */
/* END :: Features Container  */
/* -------------------------- */
.operating-container {
    text-align: center;
}

.operating-container .operating-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 40px 0;
    gap: 24px;
}

.operating-container .operating-boxes .operating-box {
    background: white;
    border-radius: 16px;
    border: 2px solid #E7EEEA;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ############################## */
/* ############################## */
/* ############################## */
/* ############################## */
/* ----------------------------- */
/* START :: Publication Section  */
/* ----------------------------- */
.publication-container {
    text-align: center;
/*     border: 2px solid #E7EEEA; */
    border-radius: 16px;
}

.publication-container .public-head {
    cursor: pointer;
    padding: 48px 60px;
    user-select: none;
}

.publication-container .public-head p {
    color: #E7EEEA;
}

.publication-container .public-head._hide i {
    transform: rotate(180deg);
}

.publication-container .public-head h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.publication-container .public-head>p {
    margin-top: 20px;
}

.publication-container .publication-cards-container {
    display: grid;
    grid-template-rows: 1fr;
    overflow: hidden;
}

.publication-container .publication-cards-container._hide {
    grid-template-rows: 0fr;
}

.publication-container .article-cards {
    display: flex;
    flex-direction: column;
    gap: 48px;
    min-height: 0px;
    padding: 0 60px;
}

.publication-container .article-cards .sub-articles-cards-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.publication-container .article-cards .article-card-container {
/*     text-align: start; */
/*     border: 2px solid #E7EEEA; */
    padding: 1px;
/*     display: flex;
    flex-direction: column; */
    gap: 16px;
    border-radius: 4px;
	background: linear-gradient(180deg, #B58E58 0%, #6E5026 100%);
    border: 1px solid #917246;
}
.publication-container .article-cards .article-card {
    text-align: start;
/*     border: 2px solid #E7EEEA; */
    padding: 24px 48px;
/*     display: flex;
    flex-direction: column;
    gap: 16px; */
    border-radius: 4px;
	background:#131313
}

.publication-container .article-cards .article-card p {
    color: #E7EEEA;
}

.publication-container .article-cards .article-card span {
    color: #E7EEEA;
}

.publication-container .article-cards .article-card>a {
    color: black;
    text-decoration: underline;
}

.publication-container .article-cards .article-btn {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.publication-container .article-cards .load-more-button {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

/* --------------------------- */
/* END :: Publication Section  */
/* --------------------------- */
/* ############################## */
/* ############################## */
/* ############################## */
/* ############################## */
/* --------------------------- */
/* START :: Founder Container  */
/* --------------------------- */
.founder-container {
    text-align: center;
}

.founder-container .founders-box {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.founder-container .founder-content {
    flex: 1 1 0;
    max-width: 350px;
    min-width: 300px;
/*	margin-right:20px;
    margin-left:20px;
*/
}
.founder-container .founder-content .founder-description{
	margin-top:30px;
	text-align: left;
    
}

.founder-container .founder-content .founder-description h {
	color: white;
	font-size: 14px;

}

.founder-container .founder-content .founder-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    height: 30px;
	flex-wrap: wrap
}

.founder-container .founder-content .founder-links :nth-child(1) {
    color: #E7EEEA;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    text-align: start;
}

.founder-container .founder-content .founder-links :nth-child(2) {
    color: #E7EEEA;
    font-size: 15px;
    font-weight: 700;
    text-align: end;
    margin-left: auto;
}

.founder-container .founder-content .founder-links img {
    align-items: center;
    padding-left: 5px;
}

.founder-container .founder-content .founder-links p {
    color: #004E73;
}

.founder-container .founder-content .toggle-Number #toggleTextMax {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* iOS Auto-Resize global verhindern */
.founder-container .founder-content .founder-links * {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.founder-container .founder-content .toggle-Number .hidden {
    opacity: 0;
    transform: scale(0);
    height: 0;
    border: 0;
    padding: 0;
}

.founder-container .founder-content .founder-image {
    align-items: center;
    max-width: 400px;
    width: 80%;
    display: inline-block;
}

.founder-image img {
    border-radius: 4px;
    height:200px;
    object-fit:cover;
}

/* ------------------------- */
/* END :: Founder Container  */
/* ------------------------- */
/* ################################# */
/* ################################# */
/* ################################# */
/* ------------------------------ */
/* START :: Deployment Container  */
/* ------------------------------ */
.deployment-container {
    text-align: center;
}

.deployment-container>h1+p {
    margin: 20px 0 10px;
}

.deployment-container h1 {
    margin-bottom: 8px;
}

.deployment-container p {
    color: #E7EEEA;
}

.deployment-cards {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.deployment-cards .deployment-card {
    border: 1px solid #917246;
    border-radius: 4px;
    padding: 24px 16px;
    text-align: center;
/*     background: white; */
}

.deployment-cards .deployment-card strong {
    margin-top: 24px;
    color: #E7EEEA;
}

.deployment-cards .deployment-card .deploy-image {
    max-width: 280px;
    width: 100%;
}

.deployment-cards .deployment-card .deploy-image img {
    height: 225px;
    border-radius: 20px;
    object-fit: cover;
}

.features-tab-section .industry-desc {
    background: #0D0B0BB2;
;
}

.features-tab-section .industry-links {
    margin-left: auto;
    padding: 0px 12px;
}

.features-tab-section .industry-cards {
    gap: 24px;
}

.features-tab-section .industry-cards-desc-container {
    margin: 40px 0 0 0;
}

.casestudy-resp-section {
    padding: 12px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: none;
}

.casestudy-resp-section ._label {
    width: 80px;
    display: block;
    margin: 0px 0 -20px auto;
}

.casestudy-resp-section h3 {
    margin-bottom: 10px;
}

.casestudy-resp-section .caseStudy-resp-cards {
    display: flex;
    overflow: auto;
    gap: 20px;
    padding-bottom: 20px;
    padding: 0 5% 40px;
    max-width: 1240px;
    margin: 30px 0 0;
}

.casestudy-resp-section .caseStudy-resp-cards .caseStudy-resp-card {
    min-width: 300px;
    background-color: #181818;
    border-radius: 6px;
    padding: 32px;
}

.nf-form-fields-required,
.ninja-forms-req-symbol {
    display: none !important;
}

.nf-field-element input,
.nf-field-element textarea {
    height: 60px !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 0 30px !important;
    color: #09151E !important;
    background-color: #ffffff52 !important;
    font-size: 22px !important;
}

.nf-field-element input:not([type="submit"]),
.nf-field-element textarea{
    background: #E7EEEA !important;
}


.nf-field-element textarea {
    padding: 30px !important;
    height: 300px !important;
}

.nf-field-element input::placeholder,
.nf-field-element textarea::placeholder {
    color: #09151E !important;
}

.nf-field-element input:focus-visible,
.nf-field-element textarea:focus-visible {
    outline: 2px solid white;
    outline-offset: 2px;
}

.nf-field-element input:focus,
.nf-field-element textarea:focus {
    outline: none;
}


.nf-form-content .nf-field-element input[type="submit"] {
    background: linear-gradient(0deg, #917246, #917246), linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    /* background-color: linear-gradient(0deg, #917246, #917246) !important; */
    /* border: 1px solid #917246 !important; */
    color: #E7EEEA !important;
    font-size: 22px !important;
    padding: 10px 90px !important;
    height: auto !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    cursor: pointer !important;
}

.nf-form-content .nf-field-element input[type="submit"]:hover {
    /* background-color: #000000 !important; */
    /* border: 1px solid #000000 !important; */
    color: #E7EEEA !important;
}
.small-text li {
    font-size: 16px;
    color: #E7EEEA;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* ######################### */
/* ######################### */
/* ######################### */
/* ---------------------------- */
/*  Starts :: Management Conatiner  */
/* --------------------------- */
.folivora-management-section {
    position: relative;
    z-index: 3;
}

.folivora-management-container .titles {
    text-align: center;
    color: var(--black);
}

.folivora-management-container .titles p {
    margin: 10px 0 0 0;
    color: #E7EEEA;
}

.folivora-management-container .management-boxes {
    display: grid;
	grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
    overflow: hidden;
}
.management-box-container{
    background: linear-gradient(180deg, #B58E58 0%, #6E5026 100%);
    border: 1px solid;
    border-radius: 4px;
    padding: 1px;
}

.folivora-management-container .management-boxes .management-box-container {
    background: linear-gradient(180deg, #B58E58 0%, #6E5026 100%);
    border: 1px solid;
    border-radius: 4px;
    padding: 1px;
    width: 100%;
    height: 100%;
}

.folivora-management-container .management-boxes .management-box {
    /* border: 2px solid #917246; */
    border-radius: 2px;
    padding: 20px;
    display: flex;
    flex-direction: column;
/*     align-items: center;
    text-align: center; */
    gap: 10px;
    position: relative;
    background: #131313;
    width: 100%;
    height: 100%;
}

.folivora-management-container .management-boxes .management-box img {
    margin-bottom: 10px;
    transition: all .3s ease;
}

.folivora-management-container .management-boxes .management-box p {
    color: #E7EEEA;
}

.folivora-management-container .management-boxes .management-box:hover {
    cursor: default;
}

.folivora-management-container .management-boxes .management-box:hover img {
    transform: scale(1.1) translateY(4px);
}

.folivora-management-container .content-video-section {
    margin-top: 40px;
}

.folivora-management-container .content-video-section p {
    color: #E7EEEA;
}

.management-head {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
}

.title-btn-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.title-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.title-group p {
  font-weight:700;
  font-size: 32px;
}

.management-head h1 {
  margin-bottom: 0;
}

.management-head .btn {
  margin-left: 32px;
  min-width: 200px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.management-head .description {
  margin-top: 24px;
  color: #E7EEEA;
}

/* Ökosystem Wrapper */
.ecosystem-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 800px;
    margin: 0 auto;
} 

/* GIF Container Basis */
.gif-container {
    position: absolute;
    width: 320px;
    height: 240px;
    overflow: hidden;
    border-radius: 4px;
    text-decoration:none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
   /* cursor:pointer; */
}

.gif-container .gif-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #E7EEEA;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    padding: 12px 16px;
    background: rgba(19, 19, 19, 0.85);
    text-align: center;
    z-index: 10;
}

.gif-container:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    border-color: rgba(212, 175, 55, 0.6);
}

.gif-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gif-container .gif-image {
    display: block;
}


/* GIF Positionierung */
.gif-top-left {
    top: 50px;
    left: 100px;
}

.gif-top-right {
    top: 50px;
    right: 100px;
}

.gif-bottom-left {
    bottom: 50px;
    left: 100px;
}

.gif-bottom-right {
    bottom: 50px;
    right: 100px;
}

.solutions-container > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* ------------------------- */
/* END ::  Management Conatiner    */
/* ------------------------- */
/* ######################### */
/* ######################### */
/* ######################### */