@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Rubik:wght@500&display=swap'); /* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-family: 'Manrope', sans-serif;
    color: #040404;
    background-color: #000 !important;
    background-image: url(../BGGradient.svg);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
}

a {
    color: #2e416a;
    text-decoration: none;
}

/* -------------------------------- 

General Style

-------------------------------- */
.cd-intro {
    position: relative;
    /* height: 100vh; */
    width: 100%;
    /* vertically align its content */
    /* display: table; */
    /* overflow: hidden; */
}

.cd-intro-content {
    /* vertically align inside its parent */
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 0 5%;
    
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cd-intro-content h1 {
    font-size: 2.4rem;
    color: #ffffff;
}

.cd-intro-content p {
    color: #D0D0D0 !important;
    font-family: Manrope;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0px;
    text-align: center;
    margin-top: 32px;
    margin-bottom: 24px;
}

.cd-intro-content .action-wrapper {
    display: inline-block;
}

.cd-intro-content .action-wrapper::after {
    clear: both;
    content: "";
    display: table;
}

.cd-intro-content .action-wrapper > * {
    float: left;
}

@media only screen and (min-width: 768px) {
    .cd-intro-content h1 {
        font-size: 5.2rem;
        font-weight: 300;
    }

    .cd-intro-content p {
        /* font-size: 1.6rem; */
        /* margin: 1.5em 0 1.9em; */
    }
}

.cd-btn {
    display: inline-block;
    padding: 1.2em 1.4em;
    font-size: 1.3rem;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    background-color: #202e4a;
    border-radius: .25em;
    margin-right: 1.5em;
}

.cd-btn:nth-of-type(2) {
    margin-right: 0;
}

.cd-btn.main-action {
    background-color: #fb5e58;
}

@media only screen and (min-width: 480px) {
    .cd-btn {
        padding: 1.2em 1.6em;
    }
}

@media only screen and (min-width: 768px) {
    .cd-btn {
        padding: 1.4em 1.8em;
    }
}

.cd-intro-content h1, .cd-intro-content h1 span, .cd-intro-content p, .cd-intro-content .cd-btn {
    opacity: 0;
    -webkit-animation-duration: 0.8s;
    -moz-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.no-cssanimations .cd-intro-content h1, .no-cssanimations .cd-intro-content h1 span, .no-cssanimations .cd-intro-content p, .no-cssanimations .cd-intro-content .cd-btn {
    opacity: 1;
}

/* -------------------------------- 

Bouncy 

-------------------------------- */
.bouncy.cd-intro-content h1 {
    -webkit-animation-name: cd-bounce-right;
    -moz-animation-name: cd-bounce-right;
    animation-name: cd-bounce-right;
}

.bouncy.cd-intro-content p {
    -webkit-animation-name: cd-bounce-left;
    -moz-animation-name: cd-bounce-left;
    animation-name: cd-bounce-left;
}

.bouncy.cd-intro-content h1, .bouncy.cd-intro-content p {
    -webkit-animation-duration: 0.6s;
    -moz-animation-duration: 0.6s;
    animation-duration: 0.6s;
}

.bouncy.cd-intro-content .cd-btn {
    -webkit-animation-name: cd-bounce-rotate;
    -moz-animation-name: cd-bounce-rotate;
    animation-name: cd-bounce-rotate;
}

.bouncy.cd-intro-content .cd-btn {
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

.bouncy.cd-intro-content .cd-btn.main-action {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

@-webkit-keyframes cd-bounce-right {
    0% {
        opacity: .2;
        -webkit-transform: translateX(-200px);
    }

    60% {
        opacity: .7;
        -webkit-transform: translateX(15px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes cd-bounce-right {
    0% {
        opacity: .2;
        -moz-transform: translateX(-200px);
    }

    60% {
        opacity: .7;
        -moz-transform: translateX(15px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@keyframes cd-bounce-right {
    0% {
        opacity: .2;
        -webkit-transform: translateX(-200px);
        -moz-transform: translateX(-200px);
        -ms-transform: translateX(-200px);
        -o-transform: translateX(-200px);
        transform: translateX(-200px);
    }

    60% {
        opacity: .7;
        -webkit-transform: translateX(15px);
        -moz-transform: translateX(15px);
        -ms-transform: translateX(15px);
        -o-transform: translateX(15px);
        transform: translateX(15px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes cd-bounce-left {
    0% {
        opacity: .2;
        -webkit-transform: translateX(200px);
    }

    60% {
        opacity: .7;
        -webkit-transform: translateX(-15px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes cd-bounce-left {
    0% {
        opacity: .2;
        -moz-transform: translateX(200px);
    }

    60% {
        opacity: .7;
        -moz-transform: translateX(-15px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@keyframes cd-bounce-left {
    0% {
        opacity: .2;
        -webkit-transform: translateX(200px);
        -moz-transform: translateX(200px);
        -ms-transform: translateX(200px);
        -o-transform: translateX(200px);
        transform: translateX(200px);
    }

    60% {
        opacity: .7;
        -webkit-transform: translateX(-15px);
        -moz-transform: translateX(-15px);
        -ms-transform: translateX(-15px);
        -o-transform: translateX(-15px);
        transform: translateX(-15px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes cd-bounce-rotate {
    0% {
        opacity: .2;
        -webkit-transform: perspective(800px) rotateX(-80deg);
    }

    20% {
        opacity: 1;
    }

    60% {
        -webkit-transform: perspective(800px) rotateX(20deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: perspective(800px) rotateX(0);
    }
}

@-moz-keyframes cd-bounce-rotate {
    0% {
        opacity: .2;
        -moz-transform: perspective(800px) rotateX(-80deg);
    }

    20% {
        opacity: 1;
    }

    60% {
        -moz-transform: perspective(800px) rotateX(20deg);
    }

    100% {
        opacity: 1;
        -moz-transform: perspective(800px) rotateX(0);
    }
}

@keyframes cd-bounce-rotate {
    0% {
        opacity: .2;
        -webkit-transform: perspective(800px) rotateX(-80deg);
        -moz-transform: perspective(800px) rotateX(-80deg);
        -ms-transform: perspective(800px) rotateX(-80deg);
        -o-transform: perspective(800px) rotateX(-80deg);
        transform: perspective(800px) rotateX(-80deg);
    }

    20% {
        opacity: 1;
    }

    60% {
        -webkit-transform: perspective(800px) rotateX(20deg);
        -moz-transform: perspective(800px) rotateX(20deg);
        -ms-transform: perspective(800px) rotateX(20deg);
        -o-transform: perspective(800px) rotateX(20deg);
        transform: perspective(800px) rotateX(20deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: perspective(800px) rotateX(0);
        -moz-transform: perspective(800px) rotateX(0);
        -ms-transform: perspective(800px) rotateX(0);
        -o-transform: perspective(800px) rotateX(0);
        transform: perspective(800px) rotateX(0);
    }
}

/* -------------------------------- 

Cut

-------------------------------- */
.cut.cd-intro-content h1 {
    position: relative;
    /* overwrite default style */
    opacity: 1;
    font-weight: 700;
    color: transparent;
}

.cut.cd-intro-content h1 span {
    /* 2 span elements are used to create the cut effect */
    display: block;
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0;
    overflow: hidden;
    color: #ffffff;
}

.cut.cd-intro-content h1 span:first-of-type {
    top: 0;
}

.cut.cd-intro-content h1 span:last-of-type {
    bottom: 0;
}

.cut.cd-intro-content h1 span:first-of-type::before, .cut.cd-intro-content h1 span:last-of-type::after {
    /* span:first-of-type::before - top half of the text */
    /* span:last-of-type::after - bottom half of the text */
    content: attr(data-content);
    position: absolute;
    width: 100%;
    left: 0;
    color: #ffffff;
}

.cut.cd-intro-content h1 span:first-of-type::before {
    top: 0;
}

.cut.cd-intro-content h1 span:last-of-type::after {
    bottom: 0;
}

.cut.cd-intro-content .cd-btn {
    /* overwrite default style */
    margin-right: 0;
    border-radius: 0;
}

.cut.cd-intro-content h1 span, .cut.cd-intro-content p, .cut.cd-intro-content .cd-btn {
    -webkit-animation-duration: 0.6s;
    -moz-animation-duration: 0.6s;
    animation-duration: 0.6s;
}

.cut.cd-intro-content h1 span, .cut.cd-intro-content p {
    -webkit-animation-name: cd-slide-left;
    -moz-animation-name: cd-slide-left;
    animation-name: cd-slide-left;
}

.cut.cd-intro-content h1 span:first-of-type {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.cut.cd-intro-content p {
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.cut.cd-intro-content .cd-btn {
    -webkit-animation-name: cd-slide-left-btn;
    -moz-animation-name: cd-slide-left-btn;
    animation-name: cd-slide-left-btn;
    -webkit-animation-delay: 0.55s;
    -moz-animation-delay: 0.55s;
    animation-delay: 0.55s;
}

@-webkit-keyframes cd-slide-left {
    0% {
        opacity: 1;
        -webkit-transform: translateX(100vw);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes cd-slide-left {
    0% {
        opacity: 1;
        -moz-transform: translateX(100vw);
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@keyframes cd-slide-left {
    0% {
        opacity: 1;
        -webkit-transform: translateX(100vw);
        -moz-transform: translateX(100vw);
        -ms-transform: translateX(100vw);
        -o-transform: translateX(100vw);
        transform: translateX(100vw);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes cd-slide-left-btn {
    0% {
        opacity: 1;
        -webkit-transform: translateX(150vw);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes cd-slide-left-btn {
    0% {
        opacity: 1;
        -moz-transform: translateX(150vw);
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@keyframes cd-slide-left-btn {
    0% {
        opacity: 1;
        -webkit-transform: translateX(150vw);
        -moz-transform: translateX(150vw);
        -ms-transform: translateX(150vw);
        -o-transform: translateX(150vw);
        transform: translateX(150vw);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

/* -------------------------------- 

Reveal

-------------------------------- */
.reveal.cd-intro-content h1 {
    position: relative;
    /* overwrite default style */
    opacity: 1;
    font-weight: 700;
    /* <h1> text is not visible - it is used only as a container for the ::after element */
    color: transparent;
    overflow: hidden;
}

.reveal.cd-intro-content h1::after {
    /* this is the animated text */
    content: attr(data-content);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    color: #ffffff;
    opacity: 0;
    -webkit-animation-name: cd-reveal-up;
    -moz-animation-name: cd-reveal-up;
    animation-name: cd-reveal-up;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.no-cssanimations .reveal.cd-intro-content h1::after {
    opacity: 1;
}

@media only screen and (min-width: 768px) {
    .reveal.cd-intro-content h1 {
        -webkit-transform: translateY(5px);
        -moz-transform: translateY(5px);
        -ms-transform: translateY(5px);
        -o-transform: translateY(5px);
        transform: translateY(5px);
    }
}

.reveal.cd-intro-content p {
    position: relative;
    margin: 0;
    padding: 1em;
    background-color: #202e4a;
    -webkit-animation-name: cd-reveal-down;
    -moz-animation-name: cd-reveal-down;
    animation-name: cd-reveal-down;
}

@media only screen and (min-width: 1170px) {
    .reveal.cd-intro-content p {
        padding: 1em 1.6em;
    }
}

.reveal.cd-intro-content h1::after, .reveal.cd-intro-content p {
    -webkit-animation-duration: 0.4s;
    -moz-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-delay: 0.7s;
    -moz-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.reveal.cd-intro-content .action-wrapper {
    position: relative;
    overflow: hidden;
}

.reveal.cd-intro-content .action-wrapper::before {
    /* this is the loading bar */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: #202e4a;
    -webkit-animation: cd-loading 0.4s 0.3s backwards;
    -moz-animation: cd-loading 0.4s 0.3s backwards;
    animation: cd-loading 0.4s 0.3s backwards;
}

.reveal.cd-intro-content .action-wrapper .cd-btn {
    display: block;
    opacity: 1;
    max-width: 200px;
    margin: 1em auto 0;
}

@media only screen and (min-width: 768px) {
    .reveal.cd-intro-content .action-wrapper .cd-btn {
        display: inline-block;
        margin: 0 0 0 1em;
    }
}

@-webkit-keyframes cd-reveal-up {
    0% {
        opacity: 1;
        -webkit-transform: translateY(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes cd-reveal-up {
    0% {
        opacity: 1;
        -moz-transform: translateY(100%);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@keyframes cd-reveal-up {
    0% {
        opacity: 1;
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes cd-reveal-down {
    0% {
        opacity: 1;
        -webkit-transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes cd-reveal-down {
    0% {
        opacity: 1;
        -moz-transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@keyframes cd-reveal-down {
    0% {
        opacity: 1;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes cd-loading {
    0% {
        -webkit-transform: scaleX(0);
    }

    100% {
        -webkit-transform: scaleX(1);
    }
}

@-moz-keyframes cd-loading {
    0% {
        -moz-transform: scaleX(0);
    }

    100% {
        -moz-transform: scaleX(1);
    }
}

@keyframes cd-loading {
    0% {
        -webkit-transform: scaleX(0);
        -moz-transform: scaleX(0);
        -ms-transform: scaleX(0);
        -o-transform: scaleX(0);
        transform: scaleX(0);
    }

    100% {
        -webkit-transform: scaleX(1);
        -moz-transform: scaleX(1);
        -ms-transform: scaleX(1);
        -o-transform: scaleX(1);
        transform: scaleX(1);
    }
}

/* -------------------------------- 

Mask

-------------------------------- */
.mask.cd-intro-content h1 {
    position: relative;
    padding-bottom: 10px;
    /* overwrite default style */
    opacity: 1;
    font-weight: 700;
    /* <h1> text is not visible - it is used only as a container for the ::after element */
    color: transparent;
    overflow: hidden;
}

.mask.cd-intro-content h1::after {
    /* this is the animated text */
    content: attr(data-content);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    color: #ffffff;
    -webkit-animation-name: cd-reveal-up;
    -moz-animation-name: cd-reveal-up;
    animation-name: cd-reveal-up;
    -webkit-animation-fill-mode: backwards;
    -moz-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
}

.mask.cd-intro-content h1 span {
    position: relative;
    display: inline-block;
    opacity: 1;
}

.mask.cd-intro-content h1 span::before {
    /* this is the loading bar */
    content: '';
    position: absolute;
    top: calc(100% + 8px);
    left: -1em;
    height: 2px;
    width: calc(100% + 2em);
    background-color: #ffffff;
    -webkit-animation: cd-loading-mask 1s 0.3s both;
    -moz-animation: cd-loading-mask 1s 0.3s both;
    animation: cd-loading-mask 1s 0.3s both;
}

@media only screen and (min-width: 768px) {
    .mask.cd-intro-content h1 {
        padding-bottom: 20px;
    }

    .mask.cd-intro-content h1 span::before {
        top: calc(100% + 18px);
    }
}

.mask.cd-intro-content p {
    position: relative;
    margin: 0;
    padding: 10px 0 0;
    -webkit-animation-name: cd-reveal-down;
    -moz-animation-name: cd-reveal-down;
    animation-name: cd-reveal-down;
}

@media only screen and (min-width: 768px) {
    .mask.cd-intro-content p {
        padding-top: 20px;
    }
}

.mask.cd-intro-content h1::after, .mask.cd-intro-content p {
    -webkit-animation-duration: 0.4s;
    -moz-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-delay: 0.7s;
    -moz-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.mask.cd-intro-content .action-wrapper {
    overflow: hidden;
}

.mask.cd-intro-content .action-wrapper .cd-btn {
    opacity: 1;
    margin: 0 0 0 1.5em;
}

.mask.cd-intro-content .action-wrapper .cd-btn:first-of-type {
    margin-left: 0;
}

@-webkit-keyframes cd-loading-mask {
    0%, 100% {
        -webkit-transform: scaleX(0);
    }

    40%, 60% {
        -webkit-transform: scaleX(1);
    }
}

@-moz-keyframes cd-loading-mask {
    0%, 100% {
        -moz-transform: scaleX(0);
    }

    40%, 60% {
        -moz-transform: scaleX(1);
    }
}

@keyframes cd-loading-mask {
    0%, 100% {
        -webkit-transform: scaleX(0);
        -moz-transform: scaleX(0);
        -ms-transform: scaleX(0);
        -o-transform: scaleX(0);
        transform: scaleX(0);
    }

    40%, 60% {
        -webkit-transform: scaleX(1);
        -moz-transform: scaleX(1);
        -ms-transform: scaleX(1);
        -o-transform: scaleX(1);
        transform: scaleX(1);
    }
}

/* -------------------------------- 

Mask 2

-------------------------------- */
.mask-2.cd-intro-content * {
    /* overwrite default style */
    opacity: 1;
}

.mask-2.cd-intro-content .content-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 2em 0;
    overflow: hidden;
}

.mask-2.cd-intro-content .content-wrapper::before {
    /* vertical bar */
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    height: 100%;
    width: 2px;
    background-color: #ffffff;
    -webkit-animation: cd-pulse 1.3s 0.3s both;
    -moz-animation: cd-pulse 1.3s 0.3s both;
    animation: cd-pulse 1.3s 0.3s both;
}

.no-cssanimations .mask-2.cd-intro-content .content-wrapper::before {
    opacity: 0;
}

.mask-2.cd-intro-content .content-wrapper > div {
    /* wrap the entire content */
    position: relative;
    z-index: 1;
}

.mask-2.cd-intro-content .content-wrapper, .mask-2.cd-intro-content .content-wrapper > div {
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 1.1s;
    -moz-animation-delay: 1.1s;
    animation-delay: 1.1s;
    -webkit-animation-fill-mode: backwards;
    -moz-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
}

.mask-2.cd-intro-content .content-wrapper {
    -webkit-animation-name: cd-mask-wrapper;
    -moz-animation-name: cd-mask-wrapper;
    animation-name: cd-mask-wrapper;
}

.mask-2.cd-intro-content .content-wrapper > div {
    -webkit-animation-name: cd-mask-content;
    -moz-animation-name: cd-mask-content;
    animation-name: cd-mask-content;
}

@-webkit-keyframes cd-mask-wrapper {
    0% {
        -webkit-transform: translateX(50%);
    }

    100% {
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes cd-mask-wrapper {
    0% {
        -moz-transform: translateX(50%);
    }

    100% {
        -moz-transform: translateX(0);
    }
}

@keyframes cd-mask-wrapper {
    0% {
        -webkit-transform: translateX(50%);
        -moz-transform: translateX(50%);
        -ms-transform: translateX(50%);
        -o-transform: translateX(50%);
        transform: translateX(50%);
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes cd-mask-content {
    0% {
        -webkit-transform: translateX(-100%);
    }

    100% {
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes cd-mask-content {
    0% {
        -moz-transform: translateX(-100%);
    }

    100% {
        -moz-transform: translateX(0);
    }
}

@keyframes cd-mask-content {
    0% {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes cd-pulse {
    0%, 30.8% {
        opacity: 0;
    }

    15.4%, 46.2%, 61.5%, 70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes cd-pulse {
    0%, 30.8% {
        opacity: 0;
    }

    15.4%, 46.2%, 61.5%, 70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes cd-pulse {
    0%, 30.8% {
        opacity: 0;
    }

    15.4%, 46.2%, 61.5%, 70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* -------------------------------- 

scale

-------------------------------- */
.scale.cd-intro-content * {
    /* overwrite default style */
    opacity: 1;
}

.scale.cd-intro-content {
    /* overwrite default style */
    background-color: transparent;
    /* Force hardware acceleration */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-animation: cd-scale-in 0.6s 0.3s both;
    -moz-animation: cd-scale-in 0.6s 0.3s both;
    animation: cd-scale-in 0.6s 0.3s both;
}

@-webkit-keyframes cd-scale-in {
    0% {
        opacity: 0;
        -webkit-transform: scale(3);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes cd-scale-in {
    0% {
        opacity: 0;
        -moz-transform: scale(3);
    }

    100% {
        opacity: 1;
        -moz-transform: scale(1);
    }
}

@keyframes cd-scale-in {
    0% {
        opacity: 0;
        -webkit-transform: scale(3);
        -moz-transform: scale(3);
        -ms-transform: scale(3);
        -o-transform: scale(3);
        transform: scale(3);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

/* -------------------------------- 

Parallax

-------------------------------- */
.parallax.cd-intro-content * {
    /* overwrite default style */
    opacity: 1;
}

.parallax.cd-intro-content h1 span, .parallax.cd-intro-content p span {
    position: relative;
    display: inline-block;
    padding: .5em 1em;
    /* span text is not visible */
    color: transparent;
}

.parallax.cd-intro-content h1 span::before, .parallax.cd-intro-content h1 span::after, .parallax.cd-intro-content p span::before, .parallax.cd-intro-content p span::after {
    position: absolute;
    left: 0;
    width: 100%;
}

.parallax.cd-intro-content h1 span::before, .parallax.cd-intro-content p span::before {
    /* this is used to create the background colored layer */
    content: '';
    height: 100%;
    top: 0;
    background-color: #202e4a;
}

.parallax.cd-intro-content h1 span::after, .parallax.cd-intro-content p span::after {
    /* this is used to create the text */
    content: attr(data-content);
    top: .5em;
}

.parallax.cd-intro-content h1 {
    font-size: 2.2rem;
}

.parallax.cd-intro-content h1 span::after {
    color: #ffffff;
}

@media only screen and (min-width: 768px) {
    .parallax.cd-intro-content h1 {
        font-size: 5.4rem;
    }
}

.parallax.cd-intro-content p span::after {
    color: #6d7a97;
}

.parallax .cd-btn {
    color: #202e4a;
    background-color: #ffffff;
    margin-top: .6em;
    /* overwrite default style */
    border-radius: 0;
    margin-right: 0;
}

.parallax .cd-btn.main-action {
    background-color: #fb5e58;
    color: #ffffff;
    padding: 1.8em 2.2em;
    margin-top: 0;
}

@media only screen and (min-width: 768px) {
    .parallax .cd-btn.main-action {
        padding: 2em 3em;
    }
}

.parallax.cd-intro-content h1 span::after, .parallax.cd-intro-content h1 span::before, .parallax.cd-intro-content p span::after, .parallax.cd-intro-content p span::before, .parallax.cd-intro-content .cd-btn {
    -webkit-animation-name: cd-slide-up;
    -moz-animation-name: cd-slide-up;
    animation-name: cd-slide-up;
    -webkit-animation-duration: 0.4s;
    -moz-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-fill-mode: backwards;
    -moz-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
}

.parallax.cd-intro-content h1 span::after {
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.parallax.cd-intro-content h1 span::before {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.parallax.cd-intro-content p span::after {
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.parallax.cd-intro-content p span::before {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.parallax.cd-intro-content .cd-btn {
    -webkit-animation-delay: 0.7s;
    -moz-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.parallax.cd-intro-content .cd-btn.main-action {
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

@-webkit-keyframes cd-slide-up {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30vh);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes cd-slide-up {
    0% {
        opacity: 0;
        -moz-transform: translateY(30vh);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@keyframes cd-slide-up {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30vh);
        -moz-transform: translateY(30vh);
        -ms-transform: translateY(30vh);
        -o-transform: translateY(30vh);
        transform: translateY(30vh);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

/* -------------------------------- 

Video 

-------------------------------- */
.cd-intro.video {
    display: block;
    /* margin-top: -114px; */
    /* padding-top: 114px; */
}

.video.cd-intro-content {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.video.cd-intro-content * {
    opacity: 1;
}

.video.cd-intro-content .svg-wrapper {
    /* position: absolute; */
    z-index: 2;
    /* top: 0; */
    /* left: 0; */
    /* height: 100%; */
    /* width: 100%; */
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 800;
    font-size: 74px;
    line-height: 82px;
    /* or 120% */
    text-align: center;
    letter-spacing: -2.50105px;
    margin-bottom: 27px;
    margin-top: 80px;
}

.video.cd-intro-content svg {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: 0.8;
}

.video.cd-intro-content svg.svg-mask {
    /* this is the svg mask used on desktop version */
    display: none;
}

.video.cd-intro-content p, .video.cd-intro-content .action-wrapper {
    /* position: absolute; */
    z-index: 3;
    /* left: 50%; */
}

.video.cd-intro-content p {
    /* bottom: calc(50% + 80px); */
    /* margin: 0; */
    /* color: #040404; */
    /* min-width: 90%; */
}

.video.cd-intro-content .action-wrapper {
    top: calc(50% + 120px);
    min-width: 295px;
}

.video.cd-intro-content .cd-btn {
    background-color: rgba(4, 4, 4, 0.4);
}

.video.cd-intro-content .cd-btn.main-action {
    background-color: #fb5e58;
}

@media only screen and (min-width: 768px) {
    .video.cd-intro-content svg.svg-mask-mobile {
        display: none;
    }

    .video.cd-intro-content svg.svg-mask {
        display: block;
    }

    .video.cd-intro-content p {
        /* bottom: calc(50% + 40px); */
        margin: 11px auto !important;
    }

    .video.cd-intro-content .action-wrapper {
        top: calc(50% + 80px);
    }
}

.cd-bg-video-wrapper {
    /* background cover video */
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: url(../assets/bg-img.png) no-repeat center center;
    background-size: cover;
}

.cd-bg-video-wrapper video {
    /* you won't see this element in the html, but it will be injected using js */
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    min-height: 100%;
    min-width: 100%;
    max-width: none;
    height: auto;
    width: auto;
}

.cd-bg-video-wrapper::after {
    /* never visible - this is used in jQuery to check the current MQ */
    display: none;
    content: 'mobile';
}

@media only screen and (min-width: 768px) {
    .cd-bg-video-wrapper::after {
        content: 'desktop';
    }
}

.burger-specs {
    z-index: 899;
    margin-bottom: 24px;
}

.burger-specs .spec-single {
    z-index: 899;
    font-family: Manrope;
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: 0em;
    color: #fff;
}

.burger-specs .spec-single:not(:first-child)::before {
    content: "|";
    margin: 0 8px;
}

.packs {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-top: 56px;
    z-index: 1000;
}

.pack:nth-child(2) {
    max-width: 463px;
    margin: 0 40px;
}

.pack {
    max-width: 228px;
    z-index: 1000;
}

.planty-seciton {
    margin: 120px 0 !important;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.about {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.about h2 {
    font-family: Manrope;
    font-size: 64px;
    font-weight: 700;
    line-height: 75px;
    letter-spacing: -0.03em;
    text-align: left;
    color: #fff;
    margin-top: 16px;
    margin-bottom: 24px;
}

.about p {
    color: #C4C3CB;
    font-family: Manrope;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -0.02em;
    text-align: left;
}

section#planty-burger {
    min-height: 600px;
}

section#planty-burger h2.text-center {
    font-family: Manrope;
    font-size: 64px;
    font-weight: 800;
    line-height: 75px;
    letter-spacing: -0.03em;
    text-align: center;
    color: #fff;
    margin-bottom: 24px;
}

section#planty-burger p.text-center {
    font-family: Manrope;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff;
    max-width: 700px;
    margin: auto;
}

section#about {
    margin: 120px 0;
}

.row.blog-seciton .blog-wrapper h3.text-center {
    font-family: Manrope;
    font-size: 42px;
    font-weight: 800;
    line-height: 50px;
    letter-spacing: -0.03em;
    text-align: center;
    color: #fff;
}

.row.blog-seciton .blog-wrapper p.text-center {
    color: #fff;
    font-family: Manrope;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.02em;
    text-align: center;
    max-width: 468px;
    margin: 24px auto 32px auto;
}

a.btn.btn-cstm-red {
    background: #E51E1C;
    border-radius: 10px;
    color: #fff;
    padding: 20px 50px;
    font-family: Manrope;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: center;
    margin: auto;
    display: table;
}

section#blog {
    margin-bottom: 120px;
}

section#recipes {
    margin: 120px 0;
}

.row.blog-seciton-title .headline {
}

.row.blog-seciton-title .headline span.lil-title {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 800;
    font-size: 18px;
    line-height: 25px;
    /* identical to box height */
    text-align: center;
    text-transform: capitalize;
    color: #E51E1C;
    text-align: center;
    width: 100%;
    display: block;
}

.row.blog-seciton-title .headline h2.text-center {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 800;
    font-size: 50px;
    line-height: 60px;
    /* or 120% */
    text-align: center;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    max-width: 658px;
    margin: auto;
    margin-top: 8px;
    margin-bottom: 72px;
}

.blog-wrapper {
    background: #0F0F10;
    box-shadow: 0px 141.825px 113.46px rgba(0, 0, 0, 0.03), 0px 91.9235px 66.4476px rgba(0, 0, 0, 0.0227778), 0px 54.6288px 36.1391px rgba(0, 0, 0, 0.0182222), 0px 28.365px 18.4372px rgba(0, 0, 0, 0.015), 0px 11.5561px 9.24488px rgba(0, 0, 0, 0.0117778), 0px 2.62639px 4.46486px rgba(0, 0, 0, 0.00722222);
    border-radius: 20px;
    padding: 40px 36px;
}

.recipes-wrapper .recipe {
    border-radius: 18px;
    background: #0F0F10;
}

.recipes-wrapper .recipe .recipe-content {
    padding: 32px 24px;
}

.recipes-wrapper .recipe .recipe-content .title-sec {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.recipes-wrapper .recipe .recipe-content .title-sec h3.title {
    font-family: Manrope;
    font-size: 24px;
    font-weight: 800;
    line-height: 25px;
    letter-spacing: 0.01em;
    text-align: left;
    color: #fff;
}

.recipes-wrapper .recipe .recipe-content p {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    /* or 179% */
    color: #A3A3A3;
    margin-top: 16px;
    border-radius: 18px;
}

.recipes-wrapper .recipe .recipe-content .details {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.recipes-wrapper .recipe .recipe-content .details .detail {
    color: #fff;
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    /* identical to box height, or 156% */
    color: #FFFFFF;
}

.recipes-wrapper .recipe .recipe-content .btns {
    display: flex;
    flex-direction: row;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.recipe-single .image::after,body.menu-hazirla.menu-inner .get-recipes {
    background: -moz-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,.9) 100%);
    background: -webkit-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,.9) 100%)
}

.recipe-single .image::after {
    display: block;
    position: relative;
    background: linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.9) 100%);
    margin-top: -200px;
    height: 200px;
    width: 100%;
    content: '';
    border-radius: 8px
}

.recipe-single .content {
    padding: 0 24px;
    position: absolute;
    transform: translateY(-100%);
    width: 100%;
    max-width: 100%;
    z-index: 999;
    /* bottom: 0; */
}

.recipe-single,.recipe-single img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
}

.recipe-single {
    display: flex;
    margin-bottom: 30px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-image: url(../../assets/img/loader.svg);
    position: relative;
}

.recipe-single img {
    opacity: 0
}

.recipe-single .content .title {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin: 0 auto;
    line-height: 1.3;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    color: #fff;
}


a.btn.btn-xstm-brdr {
    width: 100%;
    border: 1px solid #fff;
    color: #fff;
    padding: 19px 44px;
    margin-top: 26px;
    font-family: Manrope;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: center;
    border-radius: 10px;
}

.recipe-single a {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    position: relative;
}

.info.recipe-inside .person,.info.recipe-inside .time {
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #232323;
    display: inline-flex;
    margin: 0 auto;
    z-index: 2147483647;
}

.row.inner .info.recipe-inside .person,.row.inner .info.recipe-inside .time {
    color: #232323
}

.recipe-single .content .person,.recipe-single .content .time {
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #fff;
    display: inline-flex;
    margin: 0 auto;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}

.info.recipe-inside .difficult,.recipe-single .content .difficult {
    display: inline-flex;
    width: 88px;
    margin: 0 auto
}

.info.recipe-inside .difficult img,.recipe-single .content .difficult img {
    margin: 0 auto;
    opacity: .6;
    height: 14px;
    width: 17px
}

.info.recipe-inside .difficult img.active,.recipe-single .content .difficult img.active {
    opacity: 1
}

.info.recipe-inside,.recipe-single .content .info {
    display: flex;
    margin-top: 24px;
    margin-bottom: 24px
}


header.site-header.sticky-top.py-1.stickys {
    padding: 16px !important;
}

header.site-header.sticky-top.py-1.stickys img {
    width: 210px;
}

header.site-header.fixed-top.py-1.stickys {
    padding: 16px 0 !important;
}

header.site-header.fixed-top.py-1.stickys img {}

/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
.scroll {
    width: 60px;
    height: 60px;
    border: 2px solid #333;
    border-radius: 50%;
    margin: auto;
    /* position: relative; */
    animation: down 1.5s infinite;
    -webkit-animation: down 1.5s infinite;
  }
  .scroll::before {
    /* content: ''; */
    position: absolute;
    top: 15px;
    left: 18px;
    width: 18px;
    height: 18px;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(-45deg);
  }
  @keyframes down {
    0% {
      transform: translate(0);
    }
    20% {
      transform: translateY(15px);
    }
    40% {
      transform: translate(0);
    }
  }
  @-webkit-keyframes down {
    0% {
      transform: translate(0);
    }
    20% {
      transform: translateY(15px);
    }
    40% { 
      transform: translate(0);
    }
  }
  ul.navbar-nav.mx-auto.footer-nav-left,
  ul.navbar-nav.ml-auto.footer-nav-right {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
}

ul.navbar-nav.mx-auto.footer-nav-left li,
ul.navbar-nav.ml-auto.footer-nav-right li {
    color: #fff;
}

ul.navbar-nav.mx-auto.footer-nav-left li a,
ul.navbar-nav.ml-auto.footer-nav-right li a {
    font-family: Manrope;
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0em;
    text-align: left;
    padding-right: 30px;
}
ul.navbar-nav.ml-auto.footer-nav-right li p { margin-right: 32px; font-family: Manrope; font-size: 12px; font-weight: 600; line-height: 18px; letter-spacing: 0em; text-align: left; padding-right: 30px;}
ul.navbar-nav.ml-auto.footer-nav-right {
    display: flex;
    justify-content: flex-end;
}
@media (min-width: 1281px) {
  
    /* CSS */
    
  }
  
  /* 
    ##Device = Laptops, Desktops
    ##Screen = B/w 1025px to 1280px
  */
  
  @media (min-width: 1025px) and (max-width: 1280px) {
    
    .video.cd-intro-content .svg-wrapper {
        font-size: 60px;
    }
    
  }
  
  /* 
    ##Device = Tablets, Ipads (portrait)
    ##Screen = B/w 768px to 1024px
  */
  
  @media (min-width: 768px) and (max-width: 1024px) {
    .cd-intro.video {
    display: block;
    margin-top: 0;
    padding-top: 0;
}

    .packs{
        margin-top: 56px;
    }
    
    .video.cd-intro-content .svg-wrapper {
    font-size: 50px;
}

    
.navbar-expand-lg .navbar-nav  a.d-none.d-lg-block {
    margin: 0 60px;
}
  }
  
  /* 
    ##Device = Tablets, Ipads (landscape)
    ##Screen = B/w 768px to 1024px
  */
  
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    
    .packs{
        margin-top: 56px;
    }
    
    .video.cd-intro-content .svg-wrapper {
    font-size: 50px;
}

  }
  
  /* 
    ##Device = Low Resolution Tablets, Mobiles (Landscape)
    ##Screen = B/w 481px to 767px
  */
  
  @media (min-width: 481px) and (max-width: 767px) {
    
    /* CSS */
    
  }
  
  /* 
    ##Device = Most of the Smartphones Mobiles (Portrait)
    ##Screen = B/w 320px to 479px
  */
  
  @media (min-width: 320px) and (max-width: 480px) {
    
    header.site-header.fixed-top.py-1,header.site-header.fixed-top.py-1.stickys {
        padding: 8px  !important;
    }
    span.navbar-toggler-icon {filter: invert(1766%);width: 35px;height: 35px;border-color: #8c8c8c;}

button.navbar-toggler {
    border-color: #8c8c8c;
}
    header.site-header.fixed-top.py-1.stickys {}
    .navbar .navbar-nav .nav-link {
        line-height: 50px !important;
        text-align: center !important;
    }
    li.nav-item-mobile.d-lg-none {
        padding-top: 20px;
        display: flex;
        justify-content: space-evenly;
    }
    div#myNavbarToggler7 {
    padding-bottom: 100px;
}
    .navbar .navbar-nav .social .nav-link,.navbar .navbar-nav .social {
        width: 50px;
        display: block;
        /* float: left; */
    }
    section.cd-intro.video {
        margin-top: 0;
        /*padding-top: 100px;*/
        min-height: 612px;
        height: auto;
    }
    
    h1.svg-wrapper.animate__animated.animate__fadeIn.animate__delay-1s {
        font-size: 30px;
        line-height: 46px;
        padding-top: 32px;
    }
    
    .cd-intro-content.video {
        display: flex;
        justify-content: flex-start;
    }
    
    p.animate__animated.animate__slideInDown.animate__delay-1s {
        margin: 16px 0  24px 0;
    }
    
    .burger-specs .spec-single {
        font-size: 14px;
    }
    section#planty-burger h2.text-center {
    font-size: 39px;
    line-height: inherit;
}

.blog-wrapper {
    margin-bottom: 30px;
}

.row.blog-seciton-title .headline h2.text-center {
    font-size: 48px;
}
.about {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    text-align: center;
}

.about h2 {
    text-align: center;
}

.about p {
    text-align: center;
}
ul.navbar-nav.mx-auto.footer-nav-left li a, ul.navbar-nav.ml-auto.footer-nav-right li a {
    padding: 0 8px;  
}

ul.navbar-nav.mx-auto.footer-nav-left, ul.navbar-nav.ml-auto.footer-nav-right {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center; 
    align-items: center;
    margin-bottom: 32px;
}
ul.navbar-nav.ml-auto.footer-nav-right li p {
    width: 100%;
    margin: auto;
    text-align: center;
    padding: 0;
    margin-bottom: 32px;
}

ul.navbar-nav.ml-auto.footer-nav-right {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

ul.navbar-nav.ml-auto.footer-nav-right li:first-child {
    width: 100%;
    padding: 0;
    text-align: center;
}
    
  }