title

/* Reset Browsers
-------------------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font: inherit;
    vertical-align: baseline;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
main,
nav,
section {
    display: block;
}

html {
    margin-right: 0 !important;
    font-size: 62.5%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    background: var(--main-dark); //change
}

// body::-webkit-scrollbar {
//     display: none;
// }

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption,
th,
td {
    font-weight: normal;
    text-align: left;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

blockquote,
q {
    quotes: none;
}

a img {
    border: 0;
}

img {
    max-width: 100%;
    height: auto;
}

select {
    max-width: 100%;
}

/* General
-------------------------------------------------------------- */

body,
button,
input,
select,
textarea {
    font-family: $font-main;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    overflow-y: auto;
}

img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

p {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
}

strong,
b,
cite {
    font-weight: bold;
}

dfn,
cite,
em,
i,
blockquote {
    font-style: italic;
}

abbr,
acronym {
    border-bottom: 1px dotted #e0e0e0;
    cursor: help;
}

.btn-link:focus,
.btn-link:hover,
mark,
ins {
    text-decoration: none;
}

sup,
sub {
    font-size: 75%;
    height: 0;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

small {
    font-size: 75%;
}

big {
    font-size: 125%;
}

address {
    font-style: italic;
    margin: 0 0 20px;
}

code,
kbd,
tt,
var,
samp,
pre {
    margin: 20px 0;
    padding: 4px 12px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    overflow-x: auto;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    hyphens: none;
    border-radius: 0;
    height: auto;
}

svg,
svg path {
    @include transition3();
}

/* Elements
-------------------------------------------------------------- */

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

hr {
    margin-bottom: 20px;
    border: dashed 1px #ccc;
}

/* List */

ul,
ol {
    padding: 0;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li>ul,
li>ol {
    margin-bottom: 0;
}

li {
    list-style: none;
}

ul li,
ol li {
    padding: 0;
}

dl,
dd {
    margin: 0 0 20px;
}

dt {
    font-weight: bold;
}

del,
.disable {
    text-decoration: line-through;
    filter: alpha(opacity=50);
    opacity: 0.5;
}

/* Table */

table,
th,
td {
    border: 1px solid #343444;
}

table {
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin: 0 0 0;
    table-layout: fixed;
    width: 100%;
}

caption,
th,
td {
    font-weight: normal;
    text-align: left;
}

th {
    border-width: 0 1px 1px 0;
    font-weight: bold;
}

td {
    border-width: 0 1px 1px 0;
}

th,
td {
    padding: 8px 12px;
}

/* Media */

embed,
object,
video {
    margin-bottom: 20px;
    max-width: 100%;
    vertical-align: middle;
}

p>embed,
p>iframe,
p>object,
p>video {
    margin-bottom: 0;
}

/* Forms
-------------------------------------------------------------- */
/* Fixes */
button,
input {
    line-height: normal;
}

button,
input,
select,
textarea {
    font-size: 100%;
    line-height: inherit;
    margin: 0;
    vertical-align: baseline;
}

textarea {
    overflow: auto;
    /* Removes default vertical scrollbar in IE6/7/8/9 */
    vertical-align: top;
    /* Improves readability and alignment in all browsers */
}

input[type="checkbox"] {
    display: inline;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    line-height: 1;
    cursor: pointer;
    -webkit-appearance: button;
    border: 0;
}

input[type="checkbox"],
input[type="radio"] {
    padding: 0;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0);
    cursor: pointer;
    vertical-align: sub;
    /* Addresses excess padding in IE8/9 */
}

input[type="search"] {
    -webkit-appearance: textfield;
    /* Addresses appearance set to searchfield in S5, Chrome */
}

input[type="search"]::-webkit-search-decoration {
    /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
    -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/* Remove chrome yellow autofill */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #f7f7f7 inset;
}

/* Reset search styling */
input[type="search"] {
    outline: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

/* Placeholder color */
::-webkit-input-placeholder {
    color: #171412;
}

::-moz-placeholder {
    color: #171412;
    opacity: 1;
}

/* Since FF19 lowers the opacity of the placeholder by default */
:-ms-input-placeholder {
    color: #171412;
}

/* Typography
-------------------------------------------------------------- */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: $font-main;
    color: var(--on-suface-container);
    margin: 0;
    text-rendering: optimizeLegibility;
}

h1,
.h1 {
    font-size: 65px;
    line-height: 75px;
    font-weight: 700;
    letter-spacing: -0.4px;
}

h2,
.h2 {
    font-size: 48px;
    line-height: 55px;
    font-weight: 700;
    letter-spacing: -1.44px;
}

h3,
.h3 {
    font-size: 30px;
    line-height: 100%;
    font-weight: 700;
    letter-spacing: -0.6px;
}

h4,
.h4 {
    font-size: 24px;
    line-height: 35px;
    font-weight: 700;
}

h5,
.h5 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
}

h6,
.h6 {
    font-size: 20px;
    line-height: 100%;
    font-weight: 700;
    letter-spacing: -0.2px;
}

/* link style
-------------------------------------------------------------- */
a {
    text-decoration: none;
    color: var(--white);
    cursor: pointer;
    @include transition3;

    &:hover,
    &:focus {
        color: var(--primary); //change
        outline: 0;
        @include transition3;
    }
}

/* tf-container
-------------------------------------------------------------- */
.tf-container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px;
    max-width: 1320px;
    width: 100%;

    .row {
        margin-left: -15px !important;
        margin-right: -15px !important;

        >* {
            padding-left: 15px !important;
            padding-right: 15px !important;
        }
    }

    &.w-full {
        max-width: 100%;
    }

    &.w-1810 {
        max-width: 1810px;
    }

    &.w-1680 {
        max-width: 1680px;
    }
    &.w-1650 {
        max-width: 1650px;
    }
}

/* Extra classes
-------------------------------------------------------------- */

.hidden {
    display: none;
}

.block {
    display: block;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed !important;
}

.position-unset {
    position: unset !important;
}

.overflow-x-clip{
    overflow-x: clip;
}

.z-5 {
    z-index: 5;
}

.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.text-medium {
    font-size: 14px;
    line-height: 100%;
}

.fw-3 {
    font-weight: 300;
}

.fw-4 {
    font-weight: 400;
}

.fw-5 {
    font-weight: 500;
}

.fw-6 {
    font-weight: 600;
}

.fw-7 {
    font-weight: 700;
}

.body-2 {
    font-size: 18px;
    line-height: 100%;
}

.ml-11 {
    margin-left: 11px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-70 {
    margin-top: 70px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-17 {
    margin-bottom: 17px;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-21 {
    margin-bottom: 21px;
}

.mb-22 {
    margin-bottom: 22px;
}

.mb-23 {
    margin-bottom: 23px;
}

.mb-25 {
    margin-bottom: 25px !important;
}


.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-37 {
    margin-bottom: 37px;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-43 {
    margin-bottom: 43px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-53 {
    margin-bottom: 53px;
}

.mb-56 {
    margin-bottom: 56px !important;
}

.mb-57 {
    margin-bottom: 57px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}

.lh-30 {
    line-height: 30px;
}

.lh-32 {
    line-height: 32px;
}

.lh-35 {
    line-height: 35px;
}

.lh-40 {
    line-height: 40px;
}

.lh-45 {
    line-height: 45px;
}

.lh-75 {
    line-height: 75px;
}

.lh-85 {
    line-height: 85px;
}

.lh-100 {
    line-height: 100%;
}

.fs-20 {
    font-size: 20px;
}

.fs-22 {
    font-size: 22px;
}

.fs-26 {
    font-size: 26px;
}

.fs-27 {
    font-size: 27px;
}

.fs-32 {
    font-size: 32px;
    line-height: 100%;
}

.fs-65 {
    font-size: 65px;
}

.g-10 {
    gap: 10px !important;
}

.g-15 {
    gap: 15px;
}

.g-16 {
    gap: 16px;
}

.g-20 {
    gap: 20px !important;
}

.g-25 {
    gap: 25px !important;
}

.g-30 {
    gap: 30px;
}

.rg-15 {
    row-gap: 15px !important;
}

.rg-20 {
    row-gap: 20px !important;
}

.rg-30 {
    row-gap: 30px !important;
}

.rg-50 {
    row-gap: 50px !important;
}

.rg-70 {
    row-gap: 70px !important;
}

.rg-75 {
    row-gap: 75px !important;
}

.line-clamp-2 {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box !important;
    overflow: hidden;
}

.line-clamp-3 {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box !important;
    overflow: hidden;
}

.font-family-2 {
    font-family: $font-main2;
}


/* sib-form */
.sib-form {
    padding: 0;
    font-family: "Inter", sans-serif !important;
    box-sizing: border-box !important;
}

.sib-form *, .sib-form ::after, .sib-form ::before {
    box-sizing: border-box !important;
}

#sib-container {
    background-color: unset;
    padding: 0;
}

.sib-form .entry__field {
    background-color: unset;
    border: 0;
    box-shadow: none !important;
    margin: 0;
    position: relative;
    .icon-email {
        position: absolute;
        top: 21px;
        left: 21px;
    }
}

.sib-form .sib-form-container .input {
    background-color: var(--main-dark) !important;
    padding: 21px 23px 17px 53px !important;
    color: var(--surface);
    border: 1px solid var(--stroke-2) !important;
    border-radius: 12px;
    font-size: 14px;
    padding: 21px 23px 17px 53px !important;
    height: unset !important;
    font-size: 14px;
    line-height: 16px;
}


.sib-form .entry__specification,
.sib-form .entry__error,
.entry__specification,
.entry__label {
    margin: 0 !important;
}

.sib-form .entry__error {
    margin-top: 5px !important;
    font-size: 14px;
    line-height: 20px;
}

.sib-form-block {
    padding: 0;
}

.sib-optin {
    display: none;
}

#sib-form {
    position: relative;
    display: flex;
    gap: 30px;
}

#sib-form .sib-form-block__button {
    position: relative;
    top: unset;
    right: unset;
    padding: 20px 40px;
    font-size: 16px;
    line-height: 16px;
    min-height: unset;
    width: max-content;
}

.sib-form .clickable__icon {
    margin: 0 5px 0 0;
    fill :#fff;
}

.sib-form-message-panel {
    border: 0;
    padding: 0;
    border-radius: 0px;
    background: transparent;
}

#success-message .sib-form-message-panel__inner-text {
    color: #6BC044;
}

#success-message svg path {
    fill: #6BC044;
}

.sib-form-message-panel__text {
    padding: 0;
}

#error-message .sib-form-message-panel__text {
    color: #ff4949;
}

@media (max-width: 575px) {
    #sib-form {
        flex-direction: column;
        .sib-form-block__button {
            width: 100%;
            max-width: 100%;
            justify-content: center;
        }
    }
}