:root {
    --theme-red: #ed1f27;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', sans-serif;
    width: 100%;
    overflow-x: hidden;
}

.chivo-text {
    font-family: 'Chivo', sans-serif;
}

.grey-text {
    color: white;
}

/**{*/
/*    transition:all 0.3s ease-in-out;*/
/*}*/

a {
    color: inherit;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

.animated-link {
    display: flex;
}

.animated-link span {
    display: block;
    color: inherit;
    opacity: 1;
}

.animated-link span.active {
    opacity: 0;
    animation: linkanim 0.3s ease-in-out;
    animation-fill-mode: forwards;
    transition: all 0.2s ease-in-out;
    transform: translateX(5px);
}

@keyframes linkanim {
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.mes-error {
    display: none;
}

.mes-success {
    display: none;
}


.cursorBig {
    position: fixed;
    top: 50%;
    left: 50%;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    margin: -12px 0 0 -12px;
    border: 1px solid black;
    pointer-events: none;
    z-index: 100;
}

.border-white {
    border: 1px solid white !important;
}

.cursorSmall {
    position: fixed;
    top: 50%;
    left: 50%;
    height: 10px;
    width: 10px;
    margin: -2px 0 0 -2px;
    border-radius: 50%;
    background: black;
    pointer-events: none;
    z-index: 100;
}

p {
    font-size: 1.1em;
    font-weight: 500;
    font-family: 'Chivo', sans-serif;
}

.bg-lightgrey {
    background-color: #f3f3f3 !important;
}

.overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #00000052;
    z-index: 1;
}

.top-index {
    position: relative;
    z-index: 10;
}

.text-red {
    /*color:var(--theme-red);*/
}

.round-img {
    border-radius: 8px;
}


.clicker-text {
    display: none;
}

.load-text {
    display: block;
}

.loader-text {}

.loader-text span {
    display: inline;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.loader-text span.active {
    animation: prelaodertextanim 3s ease-in-out infinite;
    transform: translatex(10px);
    opacity: 0;
}

@keyframes prelaodertextanim {
    100% {
        opacity: 1;
        transform: translatex(0);
    }
}

.preloader {
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 500;
    background: white;
    transition: all 0.5s cubic-bezier(1, 0.27, 0.4, 0.86);
    overflow: hidden;
}

.preloader.remove {
    height: 0;
}

.bg-preloader {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.row-height-preloader {
    height: 95%;
}

.frost-glass {
    width: 80%;
    height: 100%;
    background: linear-gradient(53deg, #f5f5f512, #fff9f91f);
    backdrop-filter: blur(2px);
    border-radius: 8px;
    box-shadow: inset -1px -1px 1px #ffffff1f;
    display: flex;
    flex-direction: column;
    align-content: center;
    color: white;
    padding: 3rem 1rem;
    margin: auto;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.preloader-text {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.preloader-text h4 {
    font-size: 2rem;
    font-weight: 600;
    font-family: "American Typewriter";
    margin: 0 15px;
    color: #ff1800;
}

@media screen and (max-width:992px) {
    .row-height-preloader {
        height: auto;
    }

    .preloader-text {
        flex-direction: column;
        margin-top: 20px;
    }
}

.banner-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    background-size: cover;
    background-position: center;
    transition: all 0.8s cubic-bezier(0.24, 0.99, 0.66, 1.01);
}

/*.banner-section:hover{*/
/*    background-size:125%;*/
/*}*/

.banner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #caa136, transparent, transparent, transparent);
}

.banner-section h1 {
    color: white;
    position: relative;
    font-size: 4rem;
    font-weight: 100;
    z-index: 5;
    text-align: right;
}


.mobile-dropdown-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 3rem;
    background: white;
    z-index: 40;
    padding-top: 3.5rem;
    transform: translatex(100%);
    transition: all 0.3s cubic-bezier(0.2, 0.93, 0.31, 0.82);
}

.mobile-dropdown-menu.active {
    transform: translatex(0);
}

.mobile-dropdown-menu ul {
    list-style: none;
    padding: 1rem;
}

.mobile-dropdown-menu ul li {
    margin: 15px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #464646;
    font-family: 'chivo', sans-serif;
}

.mobile-dropdown-menu ul li:hover {
    color: var(--theme-red);
}


.main-logo {
    width: 124px;
    height: auto;
}

.main-logo-sm {
    width: 80px;
    height: auto;
}

.second-logo-sm {
    width: 130px;
    height: auto;
}

.second-logo {
    width: 190px;
    height: auto;
}



.page-content {
    position: relative;
    z-index: 30;
    background: #caa136;
    color: white;
}

.desktop-navbar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease-in-out;
}

.desktop-navbar.nav-up {
    transform: translateY(-120%);
}

.desktop-navbar.active {
    box-shadow: 0 0 14px #bdb8b8;
}


.mobile-navbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 100;
}

@media screen and (max-width:992px) {
    .desktop-navbar {
        display: none !important;
    }

    .mobile-navbar {
        display: block !important;
        width: 100vw;
    }
}

.navbar-mob-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 50;
    width: 100vw;
}

.navbar-item {
    margin: 0;
    padding: 0 1.4rem;
    color: #4c4c4c;
    cursor: pointer;
    font-family: 'Chivo', sans-serif;
    transition: all 0.3s ease-in-out;
}

.navbar-item.current {
    color: var(--theme-red);
}


.navbar-item:hover .dropdown-box {
    opacity: 1;
    transform: translatey(0);
    pointer-events: all;
}

.dropdown-nav {
    position: relative;
}

.dropdown-box {
    padding: 15px;
    border-radius: 10px;
    position: absolute;
    top: 22px;
    left: 0;
    right: 0;
    background: white;
    width: 250px;
    margin: auto;
    opacity: 0;
    transform: translatey(10px);
    pointer-events: none;
    z-index: 150;
    transition: all 0.5s cubic-bezier(0.33, 0.82, 0.33, 0.93);
}

.dropdown-box ul {
    padding: 0;
    margin: 0;
}

.no-points {
    list-style: none;
}

.droppoints li {
    opacity: 0;
    color: #4c4c4c;
    margin: 10px 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.33, 0.82, 0.33, 0.93);
}

.droppoints li:hover {
    color: var(--theme-red);
}

.droppoints li.active {
    opacity: 1;
    transform: translateY(0);
}


.navbar-item.inactive {
    opacity: 0.5;
}

.banner-hero {
    width: 100%;
    position: relative;
    /*padding:1rem;*/
}


.cream-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(to top, #caa136, transparent);
    top: 0;
    left: 0;
    margin: auto;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.hero-bg-img {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    z-index: 15;
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    width: 50%;
    height: 100%;
    margin: auto;
    padding-top: 2em;
    text-align: center;
    z-index: 5;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
}


.herospan {
    display: inline;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.herospan.active {
    opacity: 1;
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 400;
    font-family: 'Chivo', sans-serif;
}

.btn-gradient {
    padding: 1rem 3.8rem;
    background: linear-gradient(90deg, #137bf1, #8865a5, #fd4e56);
    border: none;
    outline: none;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    font-size: 1.4rem;
    border-radius: 38px;
    color: white;
}

.btn-gradient:hover {
    background: linear-gradient(90deg, #fd4e56, #8865a5, #137bf1);
}

.btn-gradient-content,
.right-icon,
.left-icon {
    transition: all 0.4s cubic-bezier(0.49, 0.8, 0.47, 1.08);
}

.btn-gradient:hover .btn-gradient-content {
    transform: translatex(10px);
}

.btn-gradient-content .btnspan {
    opacity: 1;
    display: inline-block;
}

.btn-gradient-content .btnspan.active {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    animation: btn_letters 0.3s ease-in-out;
    animation-fill-mode: forwards;
    transform: translatex(20px) scale(0.5);
}

@keyframes btn_letters {
    20% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: translatex(0px) scale(1);
    }
}

.btnspan:nth-child(1) {
    animation-delay: 0.10s !Important;
}

.btnspan:nth-child(2) {
    animation-delay: 0.12s !Important;
}

.btnspan:nth-child(3) {
    animation-delay: 0.14s !Important;
}

.btnspan:nth-child(4) {
    animation-delay: 0.16s !Important;
}

.btnspan:nth-child(5) {
    animation-delay: 0.18s !Important;
}

.btnspan:nth-child(6) {
    animation-delay: 0.20s !Important;
}

.btnspan:nth-child(7) {
    animation-delay: 0.22s !Important;
}

.btnspan:nth-child(8) {
    animation-delay: 0.24s !Important;
}

.btnspan:nth-child(9) {
    animation-delay: 0.26s !Important;
}

.btnspan:nth-child(10) {
    animation-delay: 0.28s !Important;
}

.btn-gradient:hover .right-icon {
    transform: translatex(10px);
    opacity: 0;
}

.btn-gradient:hover .left-icon {
    transform: translatex(10px);
    opacity: 1;
}


.btn-gradient .right-icon,
.left-icon {
    line-height: 1.9rem;
}

.btn-gradient .right-icon i {
    font-size: 14px;
}

.btn-gradient .left-icon {
    opacity: 0;
}

.btn-gradient .left-icon i {
    font-size: 14px;
}

.ml10 {
    position: relative;
    font-weight: 900;
    font-size: 4em;
}

.ml10 .text-wrapper {
    position: relative;
    display: inline-block;
    padding-top: 0.2em;
    padding-right: 0.05em;
    padding-bottom: 0.1em;
    overflow: hidden;
}

.ml10 .letter {
    display: inline-block;
    line-height: 1em;
    transform-origin: 0 0;
}




.homelist-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    list-style: none;
}

.homelist-bar li {
    margin: 0 3.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #858585;
    transition: all 0.3s ease-in-out;
}

.homelist-bar li:hover {
    color: var(--theme-red);
}

.section-large-title {
    font-size: 2.8rem;
    line-height: 3rem;
}

.red-label {
    display: none;
    padding: 5px 15px;
    margin-bottom: 10px;
    border-radius: 30px;
    font-size: 14px;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Chivo', sans-serif;
    background-image: linear-gradient(50deg, rgb(199, 32, 39) 0%, rgba(255, 0, 0, 0.45) 100%);
}

.solution-slick-arrow-control {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.solution-navigate {
    cursor: pointer;
}

.solution-navigate.slick-disabled {
    opacity: 0.5;
}


.imagcard {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.parallax-view-box {
    perspective: 500px;
    position: relative;
    min-height: 250px;
}

.front-parallax,
.back-parallax {
    transition: all 0.5s ease-in-out;
}

.front-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    z-index: 2;
    overflow: hidden;
    z-index: 1;
    /*transform:rotatex(0deg);*/
    backface-visibility: hidden;
}

.front-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    justify-content: center;
    color: white;
    transition: all 0.5s ease-in-out;
}

.parallax-view-box:hover .front-content {
    transform: translateY(60px) rotateX(-180deg);
}

.back-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    z-index: 2;
    overflow: hidden;
    transform: rotatex(180deg);
    backface-visibility: hidden;
}

.back-bg {
    height: 100%;
    width: 100%;
    background: purple;
}

.back-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    justify-content: center;
    color: white;
    transform: translateY(-100px) rotateX(180deg);
    backface-visibility: hidden;
    transition: all 0.5s ease-in-out;
}

.parallax-view-box:hover .back-content {
    transform: translateY(0px) rotateX(0deg);
}

.parallax-view-box:hover .front-parallax {
    transform: rotatex(-180deg);
}

.parallax-view-box:hover .back-parallax {
    transform: rotatex(0);
}


.main-box-solution {
    height: 500px;
    width: 350px;
    position: relative;
    padding: 2rem 0.8rem;
    transform-style: preserve-3d;
}

.main-box-solution:hover {
    padding: 0.2rem;
}

.main-box-solution:hover .solution-ico {
    opacity: 1;
}

.box-solution {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    z-index: 5;
}

.box-solution-textbox {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 1.7rem 2.2rem;
    color: white;
    font-weight: 700;
    z-index: 10;
    transform: translateZ(100px);
}



.gradient-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, #ffd66b, transparent 50%);
}

.solution-ico {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.accordion-title {
    display: block;
    padding: 14px 0;
    position: relative;
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 1px solid #e3e2e2;
    font-family: 'Chivo', sans-serif;
    cursor: pointer;
}


.accordion-title::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    width: 10px;
    margin: auto;
    background: #606060;
}

.accordion-title::after {
    content: "";
    position: absolute;
    top: 0;
    right: 4px;
    bottom: 0;
    height: 10px;
    width: 2px;
    margin: auto;
    background: #606060;
    transition: all 0.3s ease-in-out;
}

.accordion-title.active::after {
    transform: rotate(-90deg);
}

.accordion-title.active {
    background: linear-gradient(90deg, rgb(244, 73, 37) 0%, rgb(83, 91, 240) 55%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.enzyme-points .accordion-title {
    font-size: 1.2rem;
    text-transform: uppercase;
}

.accordion-content {
    display: none;
    background: #bb9126;
    padding: 10px;
}

.accordion-content ul {
    padding: 0 25px;
    margin: 0;
}

.cta-bg {
    background-size: 115%;
    background-position: center;
    transition: all 0.9s cubic-bezier(0.34, 0.74, 0.41, 1);
    background: #cb870b !important;
}

.cta-bg p {
    color: white;
}

.cta-bg:hover {
    background-size: 125%;
}


.btn-transparent {
    background: transparent;
    border: 4px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 35px;
    font-weight: 400;
    font-size: 1.2rem;
    min-width: 350px;
    min-height: 60px;
    text-transform: uppercase;
    font-family: 'Chivo';
    position: relative;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.btn-red-hover:hover {
    background: #fd2b2b;
    border: 3px solid #fd2b2b;
}

.btn-red-hover:hover .btn-content-down {
    opacity: 1;
    transform: translatey(0);

}

.btn-red-hover:hover .btn-content-up {
    opacity: 0;
    transform: translatey(-100%);
}

.btn-content-up {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
    transform: translatey(0);
    transition: all 0.6s cubic-bezier(0.59, 0.56, 0.17, 0.73);
}

.btn-content-down {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translatey(100%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.59, 0.56, 0.17, 0.73);
}

.about-lg-img {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 400px;
    width: 402px;
    /*margin-left: auto;*/
    /*margin-right:30px;*/
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    z-index: 5;
}

.about-sm-img {
    position: absolute;
    top: 0;
    left: 15%;
    bottom: 0;
    margin: auto;
    height: 250px;
    width: 250px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    z-index: 2;
}

.about-page-card {
    width: 100%;
    padding: 2rem;
    background: white;
    color: #747373;
    text-align: center;
    box-shadow: -1px 1px 5px #efecec;
    transition: all 0.3s cubic-bezier(0.29, 1.03, 0.71, 0.95);
}

.about-page-card svg {
    filter: hue-rotate(63deg);
}

.about-page-card li {
    text-align: left;
}

.about-page-card:hover {
    transform: translatey(-30px);
}

.about-page-card h4 {
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 20px;
}

.about-page-card p {
    font-size: 16px;
    line-height: 26px;
    margin-top: 16px;
}

.value-cards {
    position: relative;
    background-size: 125%;
    background-position: center;
    box-shadow: 0 0 0 black;
    box-shadow: 0px 0px 0px #adaaaa;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    overflow: hidden;
}

.value-cards:hover {
    transform: translatey(-5px);
    box-shadow: 4px 1px 40px #adaaaa;
    background-size: 175%;
    transition: background-size 3.5s ease-in-out;
}

.value-cards:hover .red-overlay {
    transform: translateY(0);
}

.default-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background: #3a000047;
    top: 0;
    left: 0;
    margin: auto;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.red-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(to top, #ff3967e0 50%, transparent);
    top: 0;
    left: 0;
    margin: auto;
    z-index: 2;
    transform: translateY(25%);
    transition: all 0.5s ease-in-out;
}

.value-cardcontent {
    padding: 3rem 2.5rem;
    color: white;
    position: relative;
    z-index: 5;
}

.value-cardcontent h4 {
    font-size: 2rem;
    font-weight: 700;
}

.value-cardcontent p {
    color: white;
}


.overflow-image {
    max-width: 650px;
}


.aux-card {
    width: 100%;
    height: 100%;
    padding: 25px;
    color: #5e5e5e;
    box-shadow: 0 0 0 grey;
    background: white;
}

.aux-card:hover {
    box-shadow: 1px 5px 20px #e3e3e3;
}


.aux-card h4 {
    font-size: 1.7rem;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 10px;
}

.aux-card p {
    font-size: 1rem;
    font-weight: 300;
}

.aux-card-link {
    font-weight: 500;
    font-family: "chivo", sans-serif;
}

.auxilary-points {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    font-family: 'Chivo', sans-serif;
    list-style: none;
}

.auxilary-points li {
    position: relative;
    margin: 10px;
    width: 45%;
}

@media screen and (max-width:520px) {
    .auxilary-points li {
        width: 100%;
    }
}

.auxilary-points li::before {
    content: "\f00c";
    font-family: "FontAwesome";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -20px;
    margin: auto;
    color: white;
}

.point-heading {
    font-weight: 700;
    color: #7e4000;
}

.contact-form label {
    margin: 0;
    font-size: 1rem;
}

.form-box::placeholder {
    font-weight: 100;
}

.form-box {
    display: block;
    width: 100%;
    padding: 10px 20px;
    color: #484848;
    font-weight: 500;
    background: #ffe5a0;
    border-radius: 8px;
    border: 1px solid #bdbdbd;
    outline: none;
}

.form-box:focus {
    outline: none;
    border: 1px solid #5e5e5e;
}

.btn-red {
    padding: 10px 30px;
    border: none;
    border-radius: 36px;
    background: #5e3d01;
    color: white;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.2s ease-out;
}

.btn-red:hover {
    background: #5e3d01;
    outline: 3px solid #ed1f2740;
}

.btn-red:active {
    background: #303030;
}

.contact-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
}

.image-blend {
    position: relative;
}

.image-blend::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, #caa13657, transparent);
}


footer {
    font-family: 'Chivo', sans-serif;
    background: #4a3000;
    color: white;
    position: fixed;
    bottom: 0;
    left: 0;
}

footer h4 {
    text-transform: uppercase;
    white-space: nowrap;
    color: #a5a5a5;
    margin-bottom: 18px;
}

footer a {
    color: #d9d9d9;
    font-size: 1.1rem;
}

footer a:hover {
    color: white;
    text-decoration: none;
}

.life-logo {
    position: absolute;
    top: 15px;
    right: 11%;
    text-align: center;
    display: flex;
    align-content: center;
    align-items: center;
}

.volkolak-text {
    font-family: "volkolak";
    font-size: 15px;
    margin-left: 5px;
    margin-top: 30px;
    font-style: italic;
    color: #f11d21;
}

.life-logo img {
    width: 100px;
    filter: drop-shadow(2px 4px 6px black);
}