@charset "utf-8";
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');
@import url("icons.css");
@import url("font-awesome-brands.css");
/* ==============================
   Variables
   ============================== */

:root {
    --font-global: 'DM Sans', sans-serif;
    --font-alt: 'DM Sans', sans-serif;
    --font-serif: Georgia, 'Times New Roman', Times, serif;
    --full-wrapper-margin-x: 30px;
    --container-width: 1350px;
    --section-padding-y: 120px;
    --menu-bar-height: 85px;
    --menu-bar-height-scrolled: 65px;
    --color-dark-1: #010101;
    --color-dark-2: #171717;
    --color-dark-3: #272727;
    --color-dark-3a: #333;
    --color-dark-4: #555;
    --color-gray-1: #757575;
    --color-gray-2: #888;
    --color-gray-3: #999;
    --color-gray-light-1: #f1f1f1;
    --color-gray-light-2: #f7f7f7;
    --color-gray-light-3: #e5e5e5;
    --color-gray-light-4: #d5d5d5;
    --color-gray-light-5: #ccc;
    --color-gray-light-6: #bbb;
    --color-dark-mode-gray-1: rgba(255, 255, 255, .7);
    --color-dark-mode-gray-2: rgba(255, 255, 255, .1275);
    --color-primary-1: #4567ed;
    --color-primary-1-a: #375ae3;
    --color-primary-light-1: #e3effe;
    --color-primary-light-1-a: #bcd1f1;
    --color-primary-2: #7752e7;
    --color-primary-light-2: #e7defe;
    --color-primary-3: #b947d9;
    --color-primary-light-3: #f7defe;
    --color-primary-4: #e748b1;
    --color-primary-light-4: #ffe1f5;
    --color-secondary-1: #fbe3a1;
    --gradient-primary-1: linear-gradient(90deg, var(--color-primary-4) 0%, var(--color-primary-3) 33%, var(--color-primary-2) 67%, var(--color-primary-1) 100%);
    --gradient-primary-1-a: linear-gradient(90deg, var(--color-primary-4) 25%, var(--color-primary-3) 40%, var(--color-primary-2) 60%, var(--color-primary-1) 75%);
    --gradient-primary-1-b: linear-gradient(45deg, var(--color-primary-4) 0%, var(--color-primary-3) 33%, var(--color-primary-2) 67%, var(--color-primary-1) 100%);
    --gradient-primary-1-c: linear-gradient(0deg, var(--color-primary-4) 0%, var(--color-primary-3) 33%, var(--color-primary-2) 67%, var(--color-primary-1) 100%);
    --gradient-gray-light-1: linear-gradient(0deg, #f5f5f5 0%, #fff 100%);
    --gradient-gray-light-2: linear-gradient(0deg, #fff 0%, #f5f5f5 100%);
    --gradient-dark-alpha-1: linear-gradient(90deg, var(--color-dark-1) 40%, transparent 87%);
    --gradient-dark-alpha-2: linear-gradient(90deg, transparent 13%, var(--color-dark-1) 60%);
    --gradient-primary-alpha-1: linear-gradient(90deg, var(--color-primary-1) 40%, transparent 87%);
    --gradient-primary-alpha-2: linear-gradient(90deg, transparent 13%, var(--color-primary-1) 60%);
    --border-radius-default: 4px;
    --border-radius-large: 30px;
    --box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05), 0px 1px 1px 0px rgba(0, 0, 0, 0.03), 0px 3px 5px 0px rgba(0, 0, 0, 0.03);
    --box-shadow-strong: 0px 5px 10px 0px rgba(0, 0, 0, 0.08), 0px 1px 1px 0px rgba(0, 0, 0, 0.06), 0px 3px 5px 0px rgba(0, 0, 0, 0.06);
    --box-shadow-block: 0px 3px 50px 0px rgba(0, 0, 0, 0.05);
    --box-shadow-block-strong: 0px 3px 50px 0px rgba(0, 0, 0, 0.15);
    --transition-default: all 0.27s cubic-bezier(0, 0, 0.58, 1);
    --ease-default: cubic-bezier(0, 0, 0.58, 1);
    --ease-out-long: cubic-bezier(0, .5, 0, 1);
    --ease-out-medium: cubic-bezier(0, .57, .55, 1);
    --ease-out-short: cubic-bezier(.15, .7, .78, 1);
    --ease-elastic-1: cubic-bezier(0.68, -0.55, 0.27, 1.55);
    --ease-elastic-2: cubic-bezier(0.68, -3, 0.27, 5);
}


/* ==============================
   Common styles
   ============================== */

:root {
    scroll-behavior: auto;
}

html {
    -ms-overflow-style: scrollbar;
}

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    letter-spacing: 0.3px !important;
}

main {
    overflow: clip;
}

iframe {
    border: none;
}

a,
b,
div,
ul,
li {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    -moz-outline-: none;
}

a:focus:not(.focus-visible),
a:active,
section:focus,
div:active,
div:focus {
    -moz-outline: none;
    outline: none;
}

a:focus.focus-visible,
button:focus.focus-visible,
div:focus.focus-visible {
    -moz-outline: 3px dotted #36a367 !important;
    outline: 3px dotted #36a367 !important;
    outline-offset: 0 !important;
}

img:not([draggable]),
embed,
object,
video {
    max-width: 100%;
    height: auto;
}

.min-height-100vh {
    min-height: 100vh !important;
    min-height: 100svh !important;
}

.align-center {
    text-align: center !important;
}






.stick-fixed {
    position: fixed !important;
    top: 0;
    left: 0;
}

.round {
    border-radius: var(--border-radius-default) !important;
}


::selection {
    color: #fff;
    background: var(--color-primary-1);
}

.animate,
.animate * {
    transition: var(--transition-default);
}

[data-rellax-x] {
    transition: transform 0.25s var(--ease-out-short);
    transition-delay: 0.0025s;
    will-change: transform;
}

[data-rellax-y] {
    transition: transform 0.25s cubic-bezier(0, 0, 0.58, 1);
    transition-delay: 0.0025s;
    will-change: transform;
}

.clearlist,
.clearlist li {
    list-style: none;
    padding: 0;
    margin: 0;
    background: none;
}

.full-wrapper {
    margin: 0 0;
}

.container {
    max-width: var(--container-width);
    padding: 0 30px;
}

.row:not(.g-0, .g-1, .g-2, .g-3, .g-4, .g-5,
    .gx-0, .gx-1, .gx-2, .gx-3, .gx-4, .gx-5,
    .gy-0, .gy-1, .gy-2, .gy-3, .gy-4, .gy-5) {
    --bs-gutter-x: 30px;
}



/* ==============================
   Page loader
   ============================== */

/* .page-loader{
    display:block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #fefefe;
    z-index: 100000; 
}
.loader{
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    font-size: 10px;
    text-indent: -12345px;
    border-top: 1px solid rgba(0,0,0, 0.15);
    border-right: 1px solid rgba(0,0,0, 0.15);
    border-bottom: 1px solid rgba(0,0,0, 0.15);
    border-left: 1px solid rgba(0,0,0, .55);
    border-radius: 50%;
    animation: spinner 700ms infinite linear;
    will-change: transform;  
    z-index: 100001;
}

.page-loader.dark{
    background: var(--color-dark-1);   
}
.page-loader.dark .loader{
    border-top: 1px solid rgba(255,255,255, 0.15);
    border-right: 1px solid rgba(255,255,255, 0.15);
    border-bottom: 1px solid rgba(255,255,255, 0.15);
    border-left: 1px solid rgba(255,255,255, .5);
}

.page-loader.gradient .loader{
    border-color: transparent;
    background:	linear-gradient(to right, white, white), var(--gradient-primary-1); 
	-webkit-background-clip: padding-box, border-box;
	background-origin: padding-box, border-box;
}
.page-loader.gradient.dark .loader{
    border-color: transparent !important;
    background:	linear-gradient(to right, var(--color-dark-1), var(--color-dark-1)), var(--gradient-primary-1); 
    -webkit-background-clip: padding-box, border-box;
	background-origin: padding-box, border-box; 
}

.page-loader.color .loader{
    border-color: var(--color-primary-light-1-a);
    border-left-color: var(--color-primary-1);
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} */


/* ==============================
   Typography
   ============================== */

body {
    color: var(--color-dark-1);
    font-family: var(--font-global);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.67;
}

a {
    color: var(--color-dark-1);
    text-decoration: underline;
    transition: color 0.1s var(--ease-default);
}

a:hover {
    color: var(--color-dark-4);
    text-decoration: underline;
}

b,
strong {
    font-weight: 500;
}

mark {
    position: relative;
    padding: 0;
    color: inherit;
    background-color: transparent;
    background-image: linear-gradient(90deg, rgba(17, 17, 17, .1) 0, rgba(17, 17, 17, .1) 100%);
    background-repeat: no-repeat;
    background-size: 100% .3em;
    background-position: 0 110%;
}


h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: 1em;
    font-weight: 500;
    line-height: 1.2;
}

h1,
.h1 {
    margin-bottom: 0.5em;
    font-size: 42px;
    letter-spacing: -0.04em;
}

h2,
.h2 {
    margin-bottom: 0.5em;
    font-size: 36px;
    letter-spacing: -0.03em;
}

h3,
.h3 {
    margin-bottom: 0.7em;
    font-size: 28px;
    letter-spacing: -0.03em;
}

h4,
.h4 {
    font-size: 24px;
}

p {
    margin: 0 0 1.5em 0;
}

ul,
ol {
    margin: 0 0 0 0;
}


hr {
    background-color: #000;
    opacity: .1;
}


.font-alt {
    font-family: var(--font-alt);
}

.normal {
    font-weight: normal;
}

.strong {
    font-weight: 700 !important;
}


/* ==============================
   Links
   ============================== */

.link-hover-anim {
    position: relative;
    display: inline-block;
    padding: 6px 0;
    overflow: hidden;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1;
    text-decoration: none;
    vertical-align: middle;
    color: currentColor;
    background: none;
    border: none;
    cursor: pointer;
}

.link-hover-anim:hover {
    text-decoration: none !important;
}

.main-nav .link-hover-anim {
    top: 1px;
}

.link-strong {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 2px 0;
    transition: transform 0.5s var(--ease-elastic-1), opacity 0.5s var(--ease-elastic-1), color 0.2s var(--ease-default);
}

.link-hover-anim:not(.underline) .link-strong i:not([class^="icon-"]) {
    position: relative;
    top: -0.05em;
    vertical-align: middle;
}

.link-strong svg {
    position: relative;
    top: -0.1em;
    margin-right: 0.2em;
}

.link-strong-hovered {
    display: block;
    position: absolute;
    top: 6px;
    left: 0;
    opacity: 0;
    transform: translateY(150%) translateZ(0.001px) skewY(10deg);
}

.link-hover-anim:hover {
    color: inherit;
}

.link-strong-unhovered {
    display: block;
}

.link-hover-anim:hover .link-strong-unhovered {
    opacity: 0;
    transform: translateY(-150%) translateZ(0.001px) skewY(-10deg);
}

/* .link-hover-anim:hover .link-strong-hovered {
    ;
    opacity: 1;
    transform: translateY(0) translateZ(0.001px) skewY(0);
} */

.light-content .link-strong,
.light-content .link-hover-anim {
    color: #fff;
}



/* ==============================
   Buttons
   ============================== */

.btn-mod,
a.btn-mod {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 3px 13px;
    color: #fff;
    background: var(--color-dark-1);
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: .065em;
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition-default);
    cursor: pointer;
}

.btn-mod:hover,
.btn-mod:focus,
a.btn-mod:hover,
a.btn-mod:focus {
    color: #fff;
    text-decoration: none;
    outline: none;
    border-color: transparent;
    box-shadow: none;
}

.btn-mod:active {
    cursor: pointer !important;
    outline: none !important;
}

.btn-mod i.align-center:before {
    display: block;
    margin: -0.275em 0;
    transform: translateY(0.14em);
}

.btn-mod.btn-medium {
    height: auto;
    padding: 13px 20px 12px;
    font-size: 13px;
    letter-spacing: 0.085em;
}

.btn-mod.btn-large {
    height: auto;
    padding: 16px 32px 15px;
    font-size: 13px;
    letter-spacing: 0.085em;
}


.btn-mod.btn-round {
    border-radius: var(--border-radius-default);
}

.btn-animate-y {
    position: relative;
    display: block;
    overflow: hidden;
}

.btn-animate-y-1 {
    display: block;
    transition: all .37s var(--ease-out-short), opacity .37s linear;
}

.btn-animate-y-2 {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translate(0, 100%);
    transition: all .37s var(--ease-out-short), opacity .37s linear;
}

.btn-mod:hover .btn-animate-y-1,
a:not(.no-hover):hover .btn-animate-y-1 {
    opacity: 0;
    transform: translate(0, -100%);
}

.btn-mod:hover .btn-animate-y-2,
a:not(.no-hover):hover .btn-animate-y-2 {
    opacity: 1;
    transform: translate(0, 0);
}


.btn-mod.btn-grad {
    color: #fff !important;
    background-image: var(--gradient-primary-1);
    background-repeat: no-repeat;
    border: none;
}

/* 
 * Mobile menu button fix 
 */

.mobile-on .link-hover-anim {
    top: 0;
}

.mobile-on .btn-border,
.mobile-on .btn-border:hover {
    color: #fff !important;
    border-color: #fff !important;
}


/* ==============================
   Forms fields
   ============================== */

.form input[type="text"],
.form input[type="email"],
.form input[type="number"],
.form input[type="url"],
.form input[type="search"],
.form input[type="tel"],
.form input[type="password"],
.form input[type="date"],
.form input[type="color"],
.form select {
    display: inline-block;
    height: 27px;
    vertical-align: middle;
    font-size: 13px;
    font-weight: 400;
    color: var(--color-dark-1);
    border: 1px solid rgba(0, 0, 0, .183);
    padding-top: 0;
    padding-bottom: 2px;
    padding-left: 7px;
    padding-right: 7px;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.form select:not([multiple]) {
    padding-right: 24px !important;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="9px" height="5px"><path fill-rule="evenodd" fill="rgb(17, 17, 17)" d="M8.886,0.631 L8.336,0.117 C8.263,0.049 8.178,0.015 8.083,0.015 C7.988,0.015 7.903,0.049 7.830,0.117 L4.506,3.155 L1.183,0.117 C1.109,0.049 1.025,0.015 0.930,0.015 C0.834,0.015 0.750,0.049 0.677,0.117 L0.127,0.631 C0.053,0.699 0.017,0.778 0.017,0.867 C0.017,0.956 0.053,1.035 0.127,1.103 L4.253,4.892 C4.327,4.960 4.411,4.994 4.506,4.994 C4.602,4.994 4.686,4.960 4.759,4.892 L8.886,1.103 C8.959,1.035 8.996,0.956 8.996,0.867 C8.996,0.778 8.959,0.699 8.886,0.631 L8.886,0.631 Z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 9px 5px;
}

.form select[multiple] {
    height: auto;
}

.form input[type="text"]::placeholder,
.form input[type="email"]::placeholder,
.form input[type="number"]::placeholder,
.form input[type="url"]::placeholder,
.form input[type="search"]::placeholder,
.form input[type="tel"]::placeholder,
.form input[type="password"]::placeholder,
.form input[type="date"]::placeholder,
.form input[type="color"]::placeholder,
.form select::placeholder {
    color: var(--color-gray-2);
    transition: var(--transition-default), font-size 0s;
}

.form input[type="text"]:hover::placeholder,
.form input[type="email"]:hover::placeholder,
.form input[type="number"]:hover::placeholder,
.form input[type="url"]:hover::placeholder,
.form input[type="search"]:hover::placeholder,
.form input[type="tel"]:hover::placeholder,
.form input[type="password"]:hover::placeholder,
.form input[type="date"]:hover::placeholder,
.form input[type="color"]:hover::placeholder,
.form select::placeholder {
    color: var(--color-gray-1);
}

.form input[type="text"]:hover,
.form input[type="email"]:hover,
.form input[type="number"]:hover,
.form input[type="url"]:hover,
.form input[type="search"]:hover,
.form input[type="tel"]:hover,
.form input[type="password"]:hover,
.form input[type="date"]:hover,
.form input[type="color"]:hover,
.form select:hover {
    border-color: rgba(0, 0, 0, .38);
}

.form input[type="text"]:focus,
.form input[type="email"]:focus,
.form input[type="number"]:focus,
.form input[type="url"]:focus,
.form input[type="search"]:focus,
.form input[type="tel"]:focus,
.form input[type="password"]:focus,
.form input[type="date"]:focus,
.form input[type="color"]:focus,
.form select:focus {
    color: var(--color-dark-1);
    border-color: rgba(0, 0, 0, .7);
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    outline: none;
}

input[type="text"]:-webkit-autofill,
input[type="email"]:-webkit-autofill,
input[type="number"]:-webkit-autofill,
input[type="url"]:-webkit-autofill,
input[type="search"]:-webkit-autofill,
input[type="tel"]:-webkit-autofill,
input[type="password"]:-webkit-autofill,
input[type="date"]:-webkit-autofill,
input[type="color"]:-webkit-autofill,
textarea:-webkit-autofill,
input[type="text"]:-webkit-autofill:hover,
input[type="email"]:-webkit-autofill:hover,
input[type="number"]:-webkit-autofill:hover,
input[type="url"]:-webkit-autofill:hover,
input[type="search"]:-webkit-autofill:hover,
input[type="tel"]:-webkit-autofill:hover,
input[type="password"]:-webkit-autofill:hover,
input[type="date"]:-webkit-autofill:hover,
input[type="color"]:-webkit-autofill:hover,
textarea:-webkit-autofill:hover,
input[type="text"]:-webkit-autofill:focus,
input[type="email"]:-webkit-autofill:focus,
input[type="number"]:-webkit-autofill:focus,
input[type="url"]:-webkit-autofill:focus,
input[type="search"]:-webkit-autofill:focus,
input[type="tel"]:-webkit-autofill:focus,
input[type="password"]:-webkit-autofill:focus,
input[type="date"]:-webkit-autofill:focus,
input[type="color"]:-webkit-autofill:focus,
textarea:-webkit-autofill:focus {
    transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000), background-color 1s 900000s ease;
    -webkit-text-fill-color: var(--color-dark-1);
}

.form input[type="text"].input-lg,
.form input[type="email"].input-lg,
.form input[type="number"].input-lg,
.form input[type="url"].input-lg,
.form input[type="search"].input-lg,
.form input[type="tel"].input-lg,
.form input[type="password"].input-lg,
.form input[type="date"].input-lg,
.form input[type="color"].input-lg,
.form select.input-lg {
    height: 52.5px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
}

.form input[type="text"].input-md,
.form input[type="email"].input-md,
.form input[type="number"].input-md,
.form input[type="url"].input-md,
.form input[type="search"].input-md,
.form input[type="tel"].input-md,
.form input[type="password"].input-md,
.form input[type="date"].input-md,
.form input[type="color"].input-md,
.form select.input-md {
    height: 46px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 15px;
}

.form input[type="text"].input-sm,
.form input[type="email"].input-sm,
.form input[type="number"].input-sm,
.form input[type="url"].input-sm,
.form input[type="search"].input-sm,
.form input[type="tel"].input-sm,
.form input[type="password"].input-sm,
.form input[type="date"].input-sm,
.form input[type="color"].input-sm,
.form select.input-sm {
    height: 37px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
}

.form input[type=color] {
    padding: 3px !important;
}

.form input.form-check-input {
    border: 1px solid var(--color-gray-1);
}

.form .form-check-label {
    font-weight: 400;
}

.form textarea {
    font-size: 13px;
    font-weight: 400;
    color: var(--color-dark-1);
    border-color: rgba(0, 0, 0, .183);
    padding: 0 7px;
    outline: none;

    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;

    -webkit-appearance: none;
}

.form textarea::placeholder {
    color: var(--color-gray-2);
    transition: var(--transition-default);
}

.form textarea:hover::placeholder {
    color: var(--color-gray-1);
}

.form textarea:hover {
    border-color: rgba(0, 0, 0, .38);
}

.form textarea:focus {
    color: var(--color-dark-1);
    border-color: rgba(0, 0, 0, .7);
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
}

.form textarea.input-lg {
    padding: 12px 20px;
    font-size: 16px;
}

.form textarea.input-md {
    padding: 8px 15px;
    font-size: 15px;

}

.form textarea.input-sm {
    padding: 5px 10px;
    font-size: 14px;
}

.liPhone:before {
    content: '\f095';
    font-family: "FontAwesome";
    font-size: 14px;
}

.liEmail,
.liPhone {
    color: rgba(255, 255, 255, .7);
}

.liEmail:before {
    content: '\f003';
    font-family: "FontAwesome";
    font-size: 14px;
}

.form label {
    display: inline-block;
    margin-bottom: 7px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
}


.form div.error {
    margin-top: 20px;
    padding: 13px 20px;
    text-align: center;
    background: var(--bs-danger);
    color: #fff;
    border-radius: var(--border-radius-default);
}

.form div.error a,
.form div.error a:hover {
    color: #fff;
}

.form div.error label,
.form div.success label {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    text-transform: none;
}

.form div.success {
    margin-top: 20px;
    padding: 13px 20px;
    text-align: center;
    background: rgba(50, 178, 95, .75);
    color: #fff;
    border-radius: var(--border-radius-default);
}

.form-control {
    border-radius: 0;
}

.light-content .fw-menu li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
}

/* ==============================
   Home sections
   ============================== */

/*
 * Header common styles
 */

.home-section {
    width: 100%;
    display: block;
    position: relative;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.home-content {
    width: 100%;
    position: relative;
    text-align: center;
    top: calc(100vh - 4.5rem);
    position: sticky;
}

.home-content .hs-title-1 {
    font-weight: 500;
    cbackground: rgba(0, 0, 0, .4);
    display: inline-block;
    padding: 5px 15px 10px 15px;
    xtext-shadow: rgb(0, 0, 0) 0px 0px 1px;
}

.home-content .hs-title-1 strong {
    font-weight: 600;
    color: var(--color-primary-1) !important;
    font-size: calc(1.108rem + 1.6vw);
    text-shadow: 0 1px black;
}

.home-content .hs-title-1 span {
    display: block;
    font-size: calc(1rem + .2vw);
}

/*
 * Scroll down icon
 */

@keyframes scroll-down-anim {
    0% {
        transform: translateY(-5px);
    }

    50% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(-5px);
    }
}

.scroll-down-wrap {
    position: absolute;
    bottom: 25px;
    left: 50%;
    width: 48px;
    height: 48px;
    margin-left: -24px;
}

.scroll-down {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: var(--color-dark-1) !important;
    font-size: 22px;
    text-decoration: none;
    transition: all 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
    animation: scroll-down-anim 1.15s infinite;
}

.scroll-down:before {
    display: block;
    content: "";
    width: 38px;
    height: 38px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--box-shadow);
    z-index: 1;
    transition: all 0.4s var(--ease-elastic-2);
}

.scroll-down:hover {
    text-decoration: none;
}

.scroll-down:hover:before {
    box-shadow: var(--box-shadow-strong);
    transform: translate(-50%, -50%) scale(1.25);
}

.scroll-down i {
    position: relative;
    top: 1px;
    z-index: 2;
}

/*
 * HTML5 BG Video
 */

.bg-video-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.bg-video-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-video::-webkit-media-controls,
.bg-video::-webkit-media-controls-panel,
.bg-video::-webkit-media-controls-play-button,
.bg-video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}

a.bg-video-button-muted {
    display: block;
    width: 1em;
    height: 1em;
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 24px;
    line-height: 1;
    color: var(--color-dark-1);
    z-index: 1000;
}

a.bg-video-button-pause {
    display: block;
    width: 1em;
    height: 1em;
    position: absolute;
    bottom: 20px;
    left: 60px;
    font-size: 24px;
    line-height: 1;
    color: var(--color-dark-1);
    z-index: 1000;
}

.light-content a.bg-video-button-muted,
.light-content a.bg-video-button-pause {
    color: #fff;
}

/*
 * Section edge figure
 */

.edge-top-figure-1 {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 15%;
    overflow: hidden;
    background: #fff;
}

.edge-top-figure-1:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 160%;
    height: 520%;
    background: var(--color-dark-1);
    border-radius: 100%;
}

.edge-top-figure-2 {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 15%;
    overflow: hidden;
    background: var(--color-dark-1);
}

.edge-top-figure-2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 160%;
    height: 520%;
    background: var(--color-dark-2);
    border-radius: 100%;
}

/*
 * Section BG svg shape
 */

.bg-shape-1 {
    position: absolute;
    bottom: -155px;
    right: 0;
    width: 100%;
}

.bg-shape-1 img {
    width: 100%;
}

.bg-shape-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 90.1875%;
}

.bg-shape-3 img {
    width: 100%;
}

.bg-shape-4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.bg-shape-4 img {
    width: 100%;
}



/* ==============================
   Custom appear animation
   ============================== */

/*
 * Splitting JS chars animation
 */

.appear-animate .charsAnimIn .char {
    opacity: 0;
    transform: translateY(.5em) rotate(7deg);
    transform-origin: 0 50%;
    transition: transform .62s var(--ease-out-short), opacity .62s var(--ease-default);
    transition-delay: calc(0.027s * var(--char-index));
}

html:not(.mobile) .appear-animate .charsAnimIn .char {
    will-change: opacity, transform;
}

@media (prefers-reduced-motion:reduce),
print {
    .appear-animate .charsAnimIn .char {
        opacity: 1 !important;
        transform: none !important;
    }
}

.charsAnimIn.animated .char,
.mobile .charsAnimIn .char {
    opacity: 1;
    transform: none;
}

/*
 * Splitting JS chars animation 1
 */

.appear-animate .charsAnimIn-1 .char {
    opacity: 0;
    transform: translateX(.01em) translateY(.27em) translateZ(0) rotate(0.0003deg);
    transition: transform 1s var(--ease-out-short), opacity 1s var(--ease-default);
    transition-delay: calc(0.037s * var(--char-index));
}

html:not(.mobile) .appear-animate .charsAnimIn-1 .char {
    will-change: opacity, transform;
}

@media (prefers-reduced-motion:reduce),
print {
    .appear-animate .charsAnimIn-1 .char {
        opacity: 1 !important;
        transform: none !important;
    }
}

.charsAnimIn-1.animated .char,
.mobile .charsAnimIn-1 .char {
    opacity: 1;
    transform: none;
}


/*
 * Appearing animation styles
 */

:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.wow,
.wow-menubar,
.wow-p {
    opacity: 0.001;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

html:not(.mobile) .wow,
html:not(.mobile) .wow-menubar,
html:not(.mobile) .wow-p {
    /*will-change: opacity, transform;*/
}

.appear-animate .wow.scaleOutIn {
    opacity: 1;
    transform: scale(1.2);
}

.appear-animate .wow.animated,
.appear-animate .wow.scaleOutIn.animated,
.appear-animate .wow-p.amimated,
.appear-animate .wow-menubar.animated,
.mobile .appear-animate .wow,
.mobile .appear-animate .wow-menubar,
.mobile .appear-animate .wow-p {
    opacity: 1;
    transform: scale(1.0);
}

@media (prefers-reduced-motion:reduce),
print {

    .wow,
    .wow.scaleOutIn,
    .wow-menubar,
    .wow-p {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    animation-name: fadeIn
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -37px, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 37px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(37px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(-37px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInRight {
    animation-name: fadeInRight;
}

@keyframes fadeInDownShort {
    0% {
        opacity: 0;
        transform: translate3d(0, -12px, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInDownShort {
    animation-name: fadeInDownShort
}

@keyframes fadeInUpShort {
    0% {
        opacity: 0;
        transform: translate3d(0, 12px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUpShort {
    animation-name: fadeInUpShort;
}

@keyframes fadeInLeftShort {
    0% {
        opacity: 0;
        transform: translate3d(12px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInLeftShort {
    animation-name: fadeInLeftShort;
}

@keyframes fadeInRightShort {
    0% {
        opacity: 0;
        transform: translate3d(-12px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInRightShort {
    animation-name: fadeInRightShort;
}

@keyframes scalexIn {
    0% {
        opacity: 0;
        transform: scaleX(0);
        transform-origin: left center;
    }

    to {
        opacity: 1;
        transform: scaleX(1);
        transform-origin: left center;
    }
}

.scalexIn {
    animation-name: scalexIn;
}

@keyframes fadeScaleIn {
    0% {
        opacity: 0;
        transform: scale(.95) translateZ(0.1px);
    }

    to {
        opacity: 1;
        transform: scale(1.00);
    }
}

.fadeScaleIn {
    animation-name: fadeScaleIn;
}

@keyframes scaleOutIn {
    0% {
        transform: scale(1.2) translateZ(0.1px);
    }

    to {
        transform: scale(1.0);
    }
}

.scaleOutIn {
    animation-name: scaleOutIn;
    animation-timing-function: var(--ease-out-short);
}

@keyframes fadeScaleOutIn {
    0% {
        opacity: 0;
        transform: translateY(10px) translateZ(0.1px) scale(1.1);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fadeScaleOutIn {
    animation-name: fadeScaleOutIn;
}

@keyframes clipRightIn {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0);
    }
}

.clipRightIn {
    animation-name: clipRightIn;
    animation-timing-function: var(--ease-out-medium);
}

@keyframes fadeRotateIn {
    0% {
        opacity: 0;
        transform: rotateX(60deg) rotateY(10deg) rotateZ(-10deg);
        transform-origin: top;
        animation-timing-function: var(--ease-out-short);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeRotateIn {
    animation-name: fadeRotateIn;
}


/* ==============================
   Classic menu bar
   ============================== */


/*
 * Logo (in navigation panel)
 */

.nav-logo-wrap {
    position: absolute;
    top: 0;
    left: 0;
    flex-shrink: 0;
    z-index: 1;
}

.nav-logo-wrap .logo {
    display: flex;
    align-items: center;
    max-width: 188px;
    height: var(--menu-bar-height);
    transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.nav-logo-wrap .logo img {
    max-height: 100%;
}

.nav-logo-wrap .logo:before,
.nav-logo-wrap .logo:after {
    display: none;
}

.logo,
a.logo:hover {
    font-size: 18px;
    font-weight: 600 !important;
    text-decoration: none;
    color: rgba(0, 0, 0, .9);
}

/*
 * Desktop nav
 */

.main-nav {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    height: var(--menu-bar-height) !important;
    position: relative;
    top: 0;
    left: 0;
    text-align: left;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.025), 0px 1px 1px 0px rgba(0, 0, 0, 0.01), 0px 0px 50px 0px rgba(0, 0, 0, 0.07);
    z-index: 1030;
    transition: all 0.2s var(--ease-default);
}

.main-nav.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.small-height {
    height: var(--menu-bar-height-scrolled) !important;
}

.main-nav-sub {
    flex-grow: 1;
    display: flex;
    position: relative;
}

.inner-nav {
    flex-grow: 1;
    position: relative;
    /*width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0 15px;
    z-index: 100;*/
}

.inner-nav ul {
    margin: auto;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.3;
}

.inner-nav ul i.align-center:before {
    display: block;
    margin-top: -0.15em;
    transform: translateY(13.5%);
}

.inner-nav ul i.mi-mobile:before {
    margin-left: -0.25em;
    margin-right: -0.25em;
}

.inner-nav>ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.inner-nav ul li {
    margin: 0 18px;
    position: relative;
}

.inner-nav ul li:first-child {
    margin-left: 0;
}

.inner-nav ul li:last-child {
    margin-right: 0;
}

.inner-nav>ul.items-end {
    position: absolute;
    top: 0;
    right: 0;
}

.inner-nav ul li a {
    display: inline-block;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.inner-nav>ul>li>a {
    display: table-cell;
    vertical-align: middle;
    height: var(--menu-bar-height);
    opacity: .65;
}

.main-nav:not(.mobile-on).small-height .inner-nav>ul>li>a {
    height: var(--menu-bar-height-scrolled) !important;
}

.inner-nav ul li a:hover,
.inner-nav ul li a.active {
    color: var(--color-dark-1);
    opacity: 1;
    text-decoration: none;
}

.body-scrolled .scrolled-hidden {
    display: none;
}

.scrolled-visible {
    display: none;
}

.body-scrolled .scrolled-visible {
    display: block;
}

.mobile-on .scrolled-hidden,
.mobile-on .body-scrolled .scrolled-hidden {
    display: block;
}

.mobile-on .scrolled-visible {
    display: none;
}


/* Menu sub */

.inner-nav .mi-chevron-down {
    margin-left: -0.19em;
    font-size: 16px;
    transition: all 0.2s var(--ease-default), color 0 var(--ease-default);
}

.mi-chevron-right {
    transition: var(--transition-default);
}

.mn-sub {
    display: none;
    width: 220px;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0;
    background: rgba(35, 35, 35, .9927);
    border-radius: 0 0 3px 3px;
}

.light-content .mn-sub {
    background: rgba(50, 50, 50, .9927);
}

.transparent .mn-sub,
.inner-nav .mn-sub .mn-sub,
.mn-has-multi a {
    border-radius: 3px;
}

.transparent .mn-sub>li:first-child>a,
.transparent .mn-sub>li:first-child>a {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.mn-sub>li:last-child>a {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.main-nav.mobile-on.transparent .mn-sub>li:first-child>a,
.main-nav.mobile-on.transparent .mn-sub>li:first-child>a,
.main-nav.mobile-on .mn-sub>li:last-child>a {
    border-radius: 0;
}

.mn-sub li {
    display: block;
    width: 100%;
    margin: 0 !important;
}

.inner-nav ul li .mn-sub li a,
.mn-group-title {
    display: block;
    width: 100%;
    height: auto !important;
    line-height: 1.3 !important;
    position: relative;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 12px 15px;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    text-transform: none;
    border-left: none;
    border-right: none;
    letter-spacing: 0;
    color: var(--color-gray-light-5) !important;
    outline-offset: -2px !important;
    transition: var(--transition-default);
}

.mobile-on .mn-has-multi>li:last-child>a {
    border-bottom: 1px solid rgba(255, 255, 255, .065) !important;
}

.mn-sub li a:hover,
.inner-nav ul li .mn-sub li a:hover,
.mn-sub li a.active {
    background: rgba(255, 255, 255, .09);
    color: var(--color-gray-light-1) !important;
}

.mn-sub:not(.mn-has-multi) li ul {
    left: 100%;
    right: auto;
    top: 0;
    border-left: 1px solid rgba(255, 255, 255, .07);
}

.inner-nav li .mn-sub.to-left {
    left: auto;
    right: 0;
}

.inner-nav>ul>li:last-child .mn-sub li ul,
.inner-nav>li:last-child .mn-sub li ul,
.inner-nav li .mn-sub li ul.to-left {
    left: auto;
    right: 100%;
    top: 0;
    border-left: none;
    border-right: 1px solid rgba(255, 255, 255, .07);
}

.mobile-on .inner-nav li:last-child .mn-sub li ul {
    left: auto;
    right: auto;
    top: 0;
}

.mn-wrap {
    padding: 8px;
}

/* Menu sub multi */

.mn-has-multi {
    width: auto !important;
    padding: 15px;
    text-align: left;
    white-space: nowrap;
}

.mn-sub-multi {
    width: 200px !important;
    overflow: hidden;
    white-space: normal;
    float: none !important;
    display: inline-block !important;
    vertical-align: top;
}

.mn-sub-multi>ul {
    width: auto;
    margin: 0;
    padding: 0;
    float: none;
}

.mn-group-title {
    font-size: 18px !important;
}

.mn-group-title:hover {
    background: none !important;
}

.mobile-on .mn-sub-multi>ul {
    left: auto;
    right: auto;
    border: none;
}

.mobile-on .mn-sub-multi {
    display: block;
    width: 100% !important;
}

.mobile-on .mn-sub-multi>ul>li:last-child>a {
    border: none !important;
}

.mobile-on .mn-sub:not(.mn-has-multi)>li:last-child>a {
    border: none !important;
}

.mobile-on .mn-sub-multi:last-child>ul {
    border-bottom: none !important;
}

/*
 * Mobile nav
 */

.mobile-on .desktop-nav {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0 15px;
    z-index: 100;
}

.mobile-on .full-wrapper .desktop-nav {
    padding: 0;
}

.mobile-on .desktop-nav ul {
    position: relative;
    width: 100%;
    float: none;
    overflow-x: hidden;
    background: rgba(18, 18, 18, .995);
}

.mobile-on .desktop-nav>ul {
    overflow-y: auto;
    display: block;
}

.mobile-on .desktop-nav ul li {
    display: block;
    float: none !important;
    overflow: hidden;
}

.mobile-on .desktop-nav ul li ul {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.mobile-on .desktop-nav ul li a {
    display: block;
    width: 100%;
    height: auto !important;
    line-height: 1.3 !important;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15px 10px;
    text-align: left;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .065);
    color: var(--color-gray-light-5);
    opacity: 1;
    cursor: pointer;
}

.mobile-on .desktop-nav ul li a:hover,
.mobile-on .desktop-nav ul li a.active {
    background: rgba(255, 255, 255, .025);
    color: #eee;
}

.mobile-on .desktop-nav ul li a:focus {
    outline-offset: -2px !important;
}

.mobile-nav-display {
    display: none;
}

.mobile-on .mobile-nav-display {
    display: block !important;
}

.mobile-nav-display-i {
    display: none;
}

.mobile-on .mobile-nav-display-i {
    display: inline-block !important;
}

.desktop-nav-display {
    display: block;
}

.mobile-on .desktop-nav-display {
    display: none !important;
}

/* Mobile nav menu sub */

.mobile-on .mn-has-sub>.mi-chevron-down {
    display: block;
    width: 24px;
    height: 24px;
    font-size: 14px;
    line-height: 22px;
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
}

.mobile-on .mn-has-sub>.mi-chevron-right {
    display: block;
    width: 24px;
    height: 24px;
    font-size: 14px;
    line-height: 22px;
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .1);
    transform: rotate(90deg);
    border-radius: 50%;
}

.mobile-on .js-opened>.mn-has-sub>.mi-chevron-down {
    border-color: rgba(255, 255, 255, .4);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}

.mobile-on .js-opened>.mn-has-sub>.mi-chevron-right {
    border-color: rgba(255, 255, 255, .4);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    transform: rotate(270deg);
}

.mobile-on .inner-nav li {
    margin: 0 !important;
}

.mobile-on .mn-sub {
    display: none;
    opacity: 0;
    position: relative;
    left: 0 !important;
    right: 0;
    top: 0;
    bottom: 0;
    border-left: none !important;
    border-right: none !important;
    border-top: none;
    z-index: 10;
}

.mobile-on .mn-sub li {
    padding-left: 10px;
}

.inner-nav li.js-opened .mn-sub {
    opacity: 1;
}

.mobile-nav {
    display: none;
    margin-left: auto;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 16px;
    cursor: pointer;
    height: var(--menu-bar-height);
    transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition-property: background, color, height;
    background: rgba(255, 255, 255, .3);
}

.main-nav.small-height .mobile-nav {
    height: var(--menu-bar-height-scrolled);
}

.mobile-nav:active {
    box-shadow: 0 0 35px rgba(0, 0, 0, .05) inset;
}

.mobile-on .mobile-nav {
    display: flex;
}

.mobile-nav-icon {
    position: relative;
    display: block;
    width: 1.8em;
    height: 2px;
    margin: auto;
    background: #000;
}

.mobile-nav-icon:before,
.mobile-nav-icon:after {
    content: "";
    position: absolute;
    top: -0.5em;
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    transition: var(--transition-default);
    will-change: top, transform;
}

.mobile-nav-icon:after {
    top: 0.5em;
}

.mobile-nav.active .mobile-nav-icon {
    background: none;
}

.mobile-nav.active .mobile-nav-icon:before {
    top: -15px;
    transform: rotate(45deg);
    box-sizing: border-box;
    height: 20px;
    width: 20px;
    border-style: solid;
    border-color: #727272;
    border-width: 0px 2px 2px 0px;
    transform: rotate(45deg);
    background: none !important;
}

.mobile-nav.active .mobile-nav-icon:after {
    top: 0;
    transform: rotate(-45deg);
    display: none;
}


/* Mobile nav menu sub multi */

.mobile-on .mn-has-multi {
    width: auto;
    padding: 0;
    text-align: left;
    white-space: normal;

}

.mobile-on .mn-sub {
    width: 100%;
    float: none;
    position: relative;
    overflow-x: hidden;
}

.mobile-on .mn-group-title {
    font-size: 15px !important;
}

/*
 * Dark panel style
 */

.main-nav.light-after-scroll.dark .logo-dark {
    display: none;
}

.main-nav.light-after-scroll.dark .logo-white {
    display: block;
}

.main-nav.light-after-scroll .logo-dark {
    display: block;
}

.main-nav.light-after-scroll .logo-white {
    display: none;
}

.main-nav.dark {
    background-color: rgba(10, 10, 10, .905);
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.main-nav.dark-mode {
    background-color: rgba(27, 27, 27, .905);
}

.main-nav:not(.transparent) {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.main-nav.dark .inner-nav ul>li>a {
    color: #fff;
}

.main-nav.dark .inner-nav ul>li>a:hover,
.main-nav.dark .inner-nav ul>li>a.active {
    color: #fff;
    opacity: 1;
}

.main-nav.dark .mobile-nav.active .mobile-nav-icon:before {
    border-color: #fff;
}

.main-nav.dark .inner-nav ul li .mn-sub li a {
    opacity: 1;
}

.main-nav.dark .main-nav-icon-cart {
    opacity: 1;
}

.main-nav.dark .mobile-nav {
    background-color: transparent;
    border-color: transparent;
}

.main-nav.dark .mobile-nav-icon,
.main-nav.dark .mobile-nav-icon:before,
.main-nav.dark .mobile-nav-icon:after {
    background: #fff;
}

.main-nav.dark .mobile-nav.active .mobile-nav-icon {
    background: transparent;
}

.main-nav.mobile-on.dark .inner-nav {
    border-top: 1px solid rgba(100, 100, 100, .4);
}

.main-nav.dark .logo,
.main-nav.dark a.logo:hover {
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    color: rgba(255, 255, 255, .9);
    height: 100%;
}

.main-nav.dark .mn-sub {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.main-nav.dark .mi-chevron-down,
.main-nav.dark.body-scrolled .inner-nav ul>li>a:hover .mi-chevron-down,
.main-nav.dark.body-scrolled .inner-nav ul>li>a.active .mi-chevron-down {
    opacity: 1;
}

/*
 * Transparent panel style
 */

.main-nav.transparent {
    background: transparent !important;
    box-shadow: none;
}

.main-nav.js-transparent {
    transition: all 0.2s var(--ease-default);
}


/* ==============================
   Sections styles
   ============================== */

/*
 * Common section styles
 */

.page-section,
.small-section,
.bg-image {
    width: 100%;
    display: block;
    position: relative;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
}

.small-section {
    padding: 100px 0;
}

.fixed-height-large {
    min-height: 800px;
}

.fixed-height-medium {
    min-height: 700px;
}

.fixed-height-small {
    min-height: 600px;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-scroll {
    background-attachment: scroll !important;
    background-position: center center !important;
}

.parallax-1,
.parallax-2,
.parallax-3,
.parallax-4,
.parallax-5,
.parallax-6,
.parallax-7,
.parallax-8,
.parallax-9,
.parallax-10 {
    background-position-y: 0;
}

.bg-white {
    background-color: #fff;
}

.bg-gray-light-1 {
    background-color: var(--color-gray-light-1);
}

.bg-gray-light-2 {
    background-color: var(--color-gray-light-2);
}

.bg-dark-1 {
    background-color: var(--color-dark-1) !important;
}

.bg-dark-2 {
    background-color: var(--color-dark-2) !important;
}

.bg-dark-3 {
    background-color: var(--color-dark-3) !important;
}

.bg-primary-1 {
    background-color: var(--color-primary-1) !important;
}

.bg-primary-2 {
    background-color: var(--color-primary-2) !important;
}

.bg-primary-3 {
    background-color: var(--color-primary-3) !important;
}

.bg-primary-4 {
    background-color: var(--color-primary-4) !important;
}

.bg-gradient-gray-light-1 {
    background-image: var(--gradient-gray-light-1);
}

.bg-gradient-gray-light-2 {
    background-image: var(--gradient-gray-light-2);
}

.bg-gradient-gray-dark-1 {
    background-image: linear-gradient(0deg, var(--color-dark-2) 0%, transparent 100%);
}

.bg-gradient-gray-dark-2 {
    background-image: linear-gradient(0deg, transparent 0%, var(--color-dark-2) 100%);
}

.bg-gradient-white {
    background-image: linear-gradient(0deg, #fff 0%, transparent 60%);
}

.bg-gradient-dark {
    background-image: linear-gradient(0deg, var(--color-dark-1) 0%, transparent 60%);
}

.bg-gradient-dark-1 {
    background-image: linear-gradient(0deg, transparent 85%, var(--color-dark-1) 100%);
}

.bg-gradient-primary-light-1 {
    background-image: linear-gradient(-90deg, var(--color-primary-light-3) 0%, var(--color-primary-light-2) 100%);
    ;
}

.bg-gradient-primary-dark-1 {
    background-image: linear-gradient(-90deg, var(--color-primary-3) 0%, var(--color-primary-2) 100%);
    ;
}

.bg-gradient-primary-alpha-1:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-image: var(--gradient-primary-alpha-1);
    opacity: .97;
}

.bg-gradient-primary-alpha-2:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-image: var(--gradient-primary-alpha-2);
    opacity: .97;
}

.bg-gradient-dark-alpha-1:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-image: var(--gradient-dark-alpha-1);
    opacity: .97;
}

.bg-gradient-dark-alpha-2:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-image: var(--gradient-dark-alpha-2);
    opacity: .97;
}

.section-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5vw;
    background: linear-gradient(180deg, var(--color-gray-light-2) 0%, transparent 100%);
}

.section-gradient-top-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5vw;
    background: linear-gradient(180deg, var(--color-dark-2) 0%, transparent 100%);
}

.light-content {
    color: #fff;
}

.light-content a {
    color: rgba(255, 255, 255, .8);
}

.light-content a:hover {
    color: #fff;
}

.light-content .section-text {
    color: #fff;
}

.bg-dark-alpha:before,
.bg-dark-alpha .YTPOverlay:before,
.bg-dark-alpha-30:before,
.bg-dark-alpha-30 .YTPOverlay:before,
.bg-dark-alpha-50:before,
.bg-dark-alpha-50 .YTPOverlay:before,
.bg-dark-alpha-70:before,
.bg-dark-alpha-70 .YTPOverlay:before,
.bg-dark-alpha-60:before,
.bg-dark-alpha-60 .YTPOverlay:before,
.bg-dark-alpha-80:before,
.bg-dark-alpha-80 .YTPOverlay:before,
.bg-dark-alpha-90:before,
.bg-dark-alpha-90 .YTPOverlay:before,
.bg-light-alpha:before,
.bg-light-alpha .YTPOverlay:before,
.bg-light-alpha-30:before,
.bg-light-alpha-30 .YTPOverlay:before,
.bg-light-alpha-50:before,
.bg-light-alpha-50 .YTPOverlay:before,
.bg-light-alpha-60:before,
.bg-light-alpha-60 .YTPOverlay:before,
.bg-light-alpha-70:before,
.bg-light-alpha-70 .YTPOverlay:before,
.bg-light-alpha-80:before,
.bg-light-alpha-80 .YTPOverlay:before,
.bg-light-alpha-90:before,
.bg-light-alpha-90 .YTPOverlay:before,
.bg-color-alpha:before,
.bg-color-alpha .YTPOverlay:before,
.bg-color-alpha-30:before,
.bg-color-alpha-30 .YTPOverlay:before,
.bg-color-alpha-50:before,
.bg-color-alpha-50 .YTPOverlay:before,
.bg-color-alpha-60:before,
.bg-color-alpha-60 .YTPOverlay:before,
.bg-color-alpha-70:before,
.bg-color-alpha-70 .YTPOverlay:before,
.bg-color-alpha-80:before,
.bg-color-alpha-80 .YTPOverlay:before,
.bg-color-alpha-90:before,
.bg-color-alpha-90 .YTPOverlay:before {
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.bg-dark-alpha:before,
.bg-dark-alpha .YTPOverlay:before {
    background: #111;
    opacity: .97;
}

.bg-dark-alpha-30:before,
.bg-dark-alpha-30 .YTPOverlay:before {
    background: #111;
    opacity: .3;
}

.bg-dark-alpha-50:before,
.bg-dark-alpha-50 .YTPOverlay:before {
    background: #111;
    opacity: .5;
}

.bg-dark-alpha-60:before,
.bg-dark-alpha-60 .YTPOverlay:before {
    background: #111;
    opacity: .6;
}

.bg-dark-alpha-70:before,
.bg-dark-alpha-70 .YTPOverlay:before {
    background: #111;
    opacity: .7;
}

.bg-dark-alpha-80:before,
.bg-dark-alpha-80 .YTPOverlay:before {
    background: #111;
    opacity: .8;
}

.bg-dark-alpha-90:before,
.bg-dark-alpha-90 .YTPOverlay:before {
    background: #111;
    opacity: .9;
}

.bg-light-alpha:before,
.bg-light-alpha .YTPOverlay:before {
    background: rgba(252, 252, 252, .97);
}

.bg-light-alpha-30:before,
.bg-light-alpha-30 .YTPOverlay:before {
    background: rgba(252, 252, 252, .30);
}

.bg-light-alpha-50:before,
.bg-light-alpha-50 .YTPOverlay:before {
    background: rgba(252, 252, 252, .50);
}

.bg-light-alpha-60:before,
.bg-light-alpha-60 .YTPOverlay:before {
    background: rgba(252, 252, 252, .60);
}

.bg-light-alpha-70:before,
.bg-light-alpha-70 .YTPOverlay:before {
    background: rgba(252, 252, 252, .7);
}

.bg-light-alpha-80:before,
.bg-light-alpha-80 .YTPOverlay:before {
    background: rgba(252, 252, 252, .8);
}

.bg-light-alpha-90:before,
.bg-light-alpha-90 .YTPOverlay:before {
    background: rgba(252, 252, 252, .9);
}

.bg-color-primary-1 {
    background-color: var(--color-primary-1);
}

.bg-color-primary-2 {
    background-color: var(--color-primary-2);
}

.bg-color-primary-3 {
    background-color: var(--color-primary-3);
}

.bg-color-primary-4 {
    background-color: var(--color-primary-4);
}

.bg-color-alpha:before,
.bg-color-alpha .YTPOverlay:before {
    background: var(--color-primary-1);
    opacity: .97;
}

.bg-color-alpha-30:before,
.bg-color-alpha-30 .YTPOverlay:before {
    background: var(--color-primary-1);
    opacity: .3;
}

.bg-color-alpha-50:before,
.bg-color-alpha-50 .YTPOverlay:before {
    background: var(--color-primary-1);
    opacity: .5;
}

.bg-color-alpha-60:before,
.bg-color-alpha-60 .YTPOverlay:before {
    background: var(--color-primary-1);
    opacity: .6;
}

.bg-color-alpha-70:before,
.bg-color-alpha-70 .YTPOverlay:before {
    background: var(--color-primary-1);
    opacity: .7;
}

.bg-color-alpha-80:before,
.bg-color-alpha-80 .YTPOverlay:before {
    background: var(--color-primary-1);
    opacity: .8;
}

.bg-color-alpha-90:before,
.bg-color-alpha-90 .YTPOverlay:before {
    background: var(--color-primary-1);
    opacity: .9;
}

.bg-gradient-light-1 {
    position: relative;
    isolation: isolate;
}

.bg-gradient-light-1:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary-1);
    opacity: .15;
    z-index: -1;
    display: none;
}

.light-content .bg-gradient-light-1:before {
    opacity: .25;
}

.bg-gradient-light-2 {
    position: relative;
}

.bg-gradient-light-2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary-1-b);
    opacity: .15;
    z-index: -1;
}

.light-content .bg-gradient-light-2:before {
    opacity: .25;
}

.bg-gradient-primary-1 {
    background: var(--gradient-primary-1) !important;
}

.bg-gradient-primary-2 {
    background: var(--gradient-primary-1-b) !important;
}

.section-caption {
    margin-bottom: 25px;
    color: var(--color-gray-1);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.075em;
}

.light-content .section-caption {
    color: #fff;
}

.section-caption-border {
    display: inline-block;
    padding: 0.45em 0.7em;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.0095em;
    border: 1px solid currentColor;
    border-radius: 70px;
    z-index: 2;
}

.section-caption-fancy {
    display: inline-block;
    padding: 7px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary-1);
    text-transform: uppercase;
    letter-spacing: 0.037em;
    background-image: linear-gradient(15deg, var(--color-primary-light-1) 0%, transparent 100%);
    border-radius: 100px;
}

.section-caption-fancy.large {
    font-size: 16px;
}

.light-content .section-caption-fancy {
    color: #fff;
    background-image: linear-gradient(15deg, rgba(0, 0, 0, .5) 0%, transparent 100%);
}

.section-caption-slick {
    display: inline-block;
    padding: 7px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary-1);
    text-transform: uppercase;
    letter-spacing: 0.037em;
    background-image: linear-gradient(45deg, var(--color-primary-light-1) 0%, transparent 100%);
    border-radius: 100px;
}

.light-content .section-caption-slick {
    color: #fff;
    background-image: linear-gradient(45deg, rgba(0, 0, 0, .5) 0%, transparent 100%);
}

.section-caption-gradient {
    display: inline-block;
    font-family: var(--font-alt);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: normal;
    background: var(--gradient-primary-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-size: 56px;
    font-weight: 500;
    line-height: 1.107;
    letter-spacing: -0.03em;
}

.gray-section .section-title {
    color: #fff;
}

.fnote {
    position: relative;
    padding: 20px;
    background: #fff;
    _border-radius: var(--border-radius-default);
    _box-shadow: var(--box-shadow-block);
}

.section-title-strong {
    font-size: 80px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.033em;
}

.section-title-descr {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-gray-1);
}

.light-content .section-title-descr {
    color: var(--color-gray-light-6);
}


.section-line {
    width: 80px;
    height: 1px;
    margin: 0 auto 0 0;
    background: var(--color-dark-1);
}

.light-content .section-line {
    background: #fff;
}

.section-line-gradient {
    width: 70px;
    height: 1px;
    margin: 0 auto 0 0;
    background: var(--gradient-primary-1);
}

.light-content .text-gray a:hover {
    color: #fff;
}

.text-gradient {
    background: var(--gradient-primary-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ==============================
   Features
   ============================== */

.features-item {
    padding: 0 15px;
    text-align: center;
}

.features-img {
    position: relative;
}

._features-img::after {
    position: absolute;
    content: "";
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    height: 110px;
    justify-content: center;
    margin-top: -30px;
    overflow: hidden;
    width: 110px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.features-icon {
    font-size: 72px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.features-icon svg {
    width: 1em;
    height: 1em;
}

.features-title {
    margin-bottom: 5px;
    font-size: 22px;
    font-weight: 400;
    z-index: 1;
    position: relative;
}

.features-descr {
    font-size: 16px;
    font-weight: 400;
    z-index: 1;
    position: relative;
}

/* ==============================
   Features 2
   ============================== */

.features-2-item {
    position: relative;
    padding: 0;
    text-align: center;
}

.features-2-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-default);
    border: 1px solid transparent;
    background: linear-gradient(to right, white, white), var(--gradient-primary-1-b);
    -webkit-background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    opacity: .3;
    transition: opacity .27s var(--ease-default);
    z-index: -1;
    display: none;
}

.product-page .features-2-item {
    padding: 40px 10px 20px 10px;
}

.product-page .features-2-item:before {
    display: block;
}

.product-page .features-2-title {
    text-align: center;
}

.features-2-item:hover:before {
    opacity: .57;
}

.features-2-item img {
    border-radius: var(--border-radius-default);
}

.features-2-label {
    position: absolute;
    top: 18px;
    left: 20px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    background: var(--gradient-primary-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-2-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 94px;
    height: 94px;
    margin: 0 auto 30px;
    overflow: hidden;
    font-size: 48px;
    line-height: 1;
    color: var(--color-primary-3);
    border-radius: 100%;
    isolation: isolate;
    transform: translateZ(0);
}

.features-2-icon:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary-1-b);
    opacity: .15;
    z-index: -1;
}

.features-2-icon i:before {
    background: var(--gradient-primary-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-2-icon svg {
    width: 1em;
    height: 1em;
    fill: url(#gradient-horizontal) var(--color-primary-3);
}

.features-2-title {
    margin-bottom: 10px;
    font-family: var(--font-alt);
    font-size: 18px;
    font-weight: 600;
    padding: 5px 15px 0 15px;
    z-index: 1;
    position: relative;
    text-align: left;
}

.features-2-descr {
    font-size: 15px;
    color: var(--color-gray-1);
    padding: 0 15px 15px 15px;
    line-height: 22px;
    z-index: 1;
    position: relative;
}

.light-content .features-2-item:before {
    background: linear-gradient(to right, var(--color-dark-1), var(--color-dark-1)), var(--gradient-primary-1-b);
    -webkit-background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    opacity: .5;
}

.light-content .features-2-item:hover:before {
    opacity: .75;
}

.light-content .features-2-descr {
    color: var(--color-dark-mode-gray-1);
}


/* ==============================
   Call action 2 section
   ============================== */

.call-action-2-images {
    position: relative;
    margin: 15px 33px 0 0;
    border: 1px solid transparent;
}

.call-action-2-image-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 36.85%;
    overflow: hidden;
    transform: translateZ(0) rotate(0.0001deg);
}

.call-action-2-image-2 {
    position: relative;
    width: 77.145%;
    margin: 120px auto;
    overflow: hidden;
    transform: translateZ(0) rotate(0.0001deg);
}

.call-action-2-image-3 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36.85%;
    overflow: hidden;
    transform: translateZ(0) rotate(0.0001deg);
}

.call-action-2-text dt {
    margin-bottom: 0.5em;
    font-size: 20px;
    font-weight: 500;
}

.call-action-2-text dd {
    margin-bottom: 2em;
    font-size: 17px;
    line-height: 1.625;
    color: var(--color-gray-1);
}

.light-content .call-action-2-text dd {
    color: var(--color-gray-light-6);
}


/* ==============================
   Call action 3 section
   ============================== */

.call-action-3-images {
    position: relative;
    width: 100%;
    margin-top: 15px;
}

.call-action-3-image-1 {
    width: 67.38%;
    margin-left: auto;
    overflow: hidden;
    -webkit-transform: translateZ(0) rotate(0.0001deg);
    transform: translateZ(0) rotate(0.0001deg);
}

.call-action-3-image-2-wrap {
    position: absolute;
    top: 0;
    left: 54px;
    width: 41.5%;
    height: 100%;
    -webkit-transform: translateZ(0) rotate(0.0001deg);
    transform: translateZ(0) rotate(0.0001deg);
}

.call-action-3-image-2 {
    overflow: hidden;
    -webkit-transform: translateZ(0) rotate(0.0001deg);
    transform: translateZ(0) rotate(0.0001deg);
}



/*
 * Images composition 5
 */

.composition-5 {
    position: relative;
}

.composition-5 img {
    width: 100%;
}

.composition-5-image-1 {
    position: relative;
    width: 91.0683%;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--color-gray-light-3);
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
    isolation: isolate;
    transform: translateZ(0);
}

.composition-5-image-1-inner {
    overflow: hidden;
    border: 10px solid #fff;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
    isolation: isolate;
    transform: translateZ(0);
}

.composition-5-image-2 {
    position: relative;
    width: 49.387%;
    margin-top: -24.3432%;
    margin-left: auto;
    overflow: hidden;
    border: 1px solid var(--color-gray-light-3);
    border-bottom-right-radius: 75%;
    isolation: isolate;
    transform: translateZ(0);
}

.composition-5-image-2-inner {
    overflow: hidden;
    border: 10px solid #fff;
    border-bottom-right-radius: 75%;
    isolation: isolate;
    transform: translateZ(0);
}

.composition-5-decoration {
    position: absolute;
    bottom: 9.25%;
    left: -6.8%;
    width: 39.9299%;
    opacity: .95;
    z-index: -1;
}

.light-content .composition-5-image-1 {
    background: var(--color-dark-1);
    border-color: rgba(255, 255, 255, .2);
}

.light-content .composition-5-image-1-inner {
    border-color: var(--color-dark-1);
}

.light-content .composition-5-image-2 {
    background: var(--color-dark-1);
    border-color: rgba(255, 255, 255, .2);
}

.light-content .composition-5-image-2-inner {
    border-color: var(--color-dark-1);
}

.bg-gradient-light-1 {
    position: relative;
    isolation: isolate;
}

.bg-gradient-light-1:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary-1);
    opacity: .15;
    z-index: -1;
    display: none;
}

.subscribe h2 {
    color: #fff;
}

.subscribe::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: -1;
}

.form input.newsletter-field,
.form .newsletter-field-wrap {
    margin-right: 10px;
    flex-grow: 1.5;
}

/* ==============================
   Footer
   ============================== */

.footer {
    font-size: 16px;
}

.footer a {
    transition: all 0.17s var(--ease-default);
}

.footer:not(.light-content) a:hover {
    text-decoration: none;
    color: var(--color-dark-3a) !important;
}

.footer-text a {
    text-decoration: none;
}

footer:not(.light-content) .text-gray a {
    color: var(--color-gray-1);
    transition: all 0.17s var(--ease-default);
}

footer:not(.light-content) .text-gray a:hover {
    color: var(--color-dark-1);
}

.light-content .footer-text {
    color: var(--color-gray-light-3);
}

.footer.light-content a:hover {
    color: #fff !important;
    text-decoration: none;
}

.footer-made {
    font-size: 14px;
    opacity: .5;
}

.footer-social-links {
    font-size: 16px;
}

.footer-social-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 3px 10px;
    overflow: hidden;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: all .27s var(--ease-out-medium);
}

.footer-social-links a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    transform: scale(.3);
    transition: all .27s var(--ease-out-medium);
}

.footer-social-links a svg {
    position: relative;
    display: block;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.footer-social-links a i {
    position: relative;
}

.footer-social-links a:hover,
.footer.light-content .footer-social-links a:hover,
.light-content .footer-social-links a:hover {
    color: var(--color-dark-1) !important;
}

.footer-social-links a:hover:before {
    opacity: 1;
    transform: none;
}

.fw-title {
    margin-bottom: 16px;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.fw-menu li:not(:last-child) {
    margin-bottom: 3px;
}

.fw-menu li a {
    text-decoration: none;
    color: var(--color-gray-1);
}

.fw-menu svg {
    position: relative;
    top: -0.05em;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.fw-menu-large {
    font-size: 28px;
    line-height: 1.3;
}

.fw-menu-large li:not(:last-child) {
    margin-bottom: 10px;
}

.fw-menu-large li a {
    text-decoration: none;
    color: var(--color-dark-1);
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size .5s var(--ease-out-medium);
    will-change: background-size;
}

.fw-menu-large li a:hover {
    text-decoration: none;
    color: var(--color-dark-1);
    background-size: 100% 1px;
}

.fw-menu-large svg {
    position: relative;
    top: -0.05em;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

/* Link to top */
a.link-to-top,
footer .text-gray a.link-to-top {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    color: var(--color-dark-1);
    font-size: 24px;
    text-decoration: none;
    transition: all 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
}

.link-to-top:before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--box-shadow);
    z-index: 1;
    transition: all 0.4s var(--ease-elastic-2);
}

.link-to-top svg {
    position: relative;
    width: 1em;
    height: 1em;
    z-index: 1;
}

.link-to-top i,
.link-to-top span {
    position: relative;
    transform: rotate(0.001deg) translateZ(0);
    z-index: 1;
}

.link-to-top:hover {
    text-decoration: none;
}

.link-to-top:hover:before {
    transform: scale(1.25);
}

.light-content a.link-to-top,
.light-content a.link-to-top:hover {
    color: var(--color-dark-1) !important;
}

a.link-to-top.gradient,
a.link-to-top.gradient:hover {
    color: #fff !important;
}

a.link-to-top.gradient:before {
    background: var(--gradient-primary-1-b);
    box-shadow: none;
}

a.link-to-top.color-light,
a.link-to-top.color-light:hover {
    color: var(--color-primary-1) !important;
}

a.link-to-top.color-light:before {
    background: var(--color-primary-light-1);
    box-shadow: none;
}

a.link-to-top.color,
a.link-to-top.color:hover {
    color: #fff !important;
}

a.link-to-top.color:before {
    background: var(--color-primary-1);
    box-shadow: none;
}


/*
 * Owl carousel
 */

.owl-buttons {
    position: static;
}

.owl-prev,
.owl-next {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 27px;
    height: 57px;
    padding: 11px;
    box-sizing: content-box;
    font-size: 57px;
    text-align: center;
    color: var(--color-dark-1);
    opacity: .8;
    z-index: 6;
    transition: var(--transition-default);
}

.owl-prev:hover,
.owl-next:hover {
    opacity: 1;
}

.owl-prev {
    left: 20px;
}

.owl-next {
    right: 20px;
}

.owl-prev svg,
.owl-next svg {
    display: block;
    height: 1em;
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, .35));
}

.owl-pagination {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 30px;
    left: 0;
    text-align: center;
    line-height: 1;
}

.owl-page {
    display: inline-block;
    padding: 7px;
    position: relative;
    z-index: 1000 !important;
}

.owl-page span {
    width: 8px;
    height: 8px;
    display: block;
    background: none;
    border: 1px solid var(--color-dark-1);
    position: relative;
    border-radius: 50%;
    transition: var(--transition-default);
}

.owl-page.active span {
    background: var(--color-dark-1);
    border: 1px solid var(--color-dark-1);
}



/* ==============================
   Skip to content link
   ============================== */

.skip-to-content {
    position: absolute;
    top: 3px;
    left: 3px;
    padding: 20px 40px;
    color: #ffffff;
    background: var(--color-dark-1);
    -webkit-transform: translateY(-150%);
    -moz-transform: translateY(-150%);
    transform: translateY(-150%);
    z-index: 100000;
}

.skip-to-content:hover,
.skip-to-content:focus,
.skip-to-content.focus-visible {
    color: #ffffff;
    opacity: 1;
    background: #000;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
}




.product-box {
    background-image: url(../images/demo-gradient/frame-grey.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 30px 0 30px 0;
    font-family: var(--font-alt);
}

.product-box h4 {
    font-family: var(--font-alt);
    font-weight: 600;
    color: #5b5b5b;
}

.product-box .alt-features-descr {
    font-family: var(--font-alt);
    font-size: 14px;
    color: #5b5b5b;
    text-transform: uppercase;
}

.product-box a.no-bg-button {
    background: none !important;
    border: 1px solid #5b5b5b !important;
    font-size: 14px;
    color: #5b5b5b !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
}

.product-box a.no-bg-button i {
    color: #5b5b5b !important;
}

.size-16 {
    font-size: 16px !important;
}

.size-24 {
    font-size: 24px !important;
}

.signature {
    font-size: 16px;
    text-align: right;
    display: block;
    padding: 0 0 0 0;
}


#about .col-lg-6 .w-100 {
    padding-right: 20px;
}