/* ----------------------- ROW & ROW_COLUMN STYLES -------------- */

/* Grid container */
[data-gjs-type="row"] {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
}

/* Base styling for all columns */
[data-gjs-type='row-col'] {
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
}

/* Desktop Column: using data-col attribute */
[data-desktop-cols="1"]  { grid-column: span 1; }
[data-desktop-cols="2"]  { grid-column: span 2; }
[data-desktop-cols="3"]  { grid-column: span 3; }
[data-desktop-cols="4"]  { grid-column: span 4; }
[data-desktop-cols="5"]  { grid-column: span 5; }
[data-desktop-cols="6"]  { grid-column: span 6; }
[data-desktop-cols="7"]  { grid-column: span 7; }
[data-desktop-cols="8"]  { grid-column: span 8; }
[data-desktop-cols="9"]  { grid-column: span 9; }
[data-desktop-cols="10"] { grid-column: span 10; }
[data-desktop-cols="11"] { grid-column: span 11; }
[data-desktop-cols="12"] { grid-column: span 12; }

/* Tablet Column: using data-tablet-col attribute (max-width: 992px) */
@media (max-width: 992px) {
    [data-tablet-cols="1"]  { grid-column: span 1; }
    [data-tablet-cols="2"]  { grid-column: span 2; }
    [data-tablet-cols="3"]  { grid-column: span 3; }
    [data-tablet-cols="4"]  { grid-column: span 4; }
    [data-tablet-cols="5"]  { grid-column: span 5; }
    [data-tablet-cols="6"]  { grid-column: span 6; }
    [data-tablet-cols="7"]  { grid-column: span 7; }
    [data-tablet-cols="8"]  { grid-column: span 8; }
    [data-tablet-cols="9"]  { grid-column: span 9; }
    [data-tablet-cols="10"] { grid-column: span 10; }
    [data-tablet-cols="11"] { grid-column: span 11; }
    [data-tablet-cols="12"] { grid-column: span 12; }
}

/* Mobile Column: using data-mobile-col attribute (max-width: 576px) */
@media (max-width: 576px) {
    [data-mobile-cols="1"]  { grid-column: span 1; }
    [data-mobile-cols="2"]  { grid-column: span 2; }
    [data-mobile-cols="3"]  { grid-column: span 3; }
    [data-mobile-cols="4"]  { grid-column: span 4; }
    [data-mobile-cols="5"]  { grid-column: span 5; }
    [data-mobile-cols="6"]  { grid-column: span 6; }
    [data-mobile-cols="7"]  { grid-column: span 7; }
    [data-mobile-cols="8"]  { grid-column: span 8; }
    [data-mobile-cols="9"]  { grid-column: span 9; }
    [data-mobile-cols="10"] { grid-column: span 10; }
    [data-mobile-cols="11"] { grid-column: span 11; }
    [data-mobile-cols="12"] { grid-column: span 12; }
}

/* ------------------------ BASIC STYLES ------------------------ */
.ll-section {
    padding: 0;
    padding-inline: 2% !important;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50px !important;
    height: auto !important;
    background-repeat: no-repeat;
}

.ll-section .ll-container:not(:first-child) {
    margin-top: 20px;
}

.ll-section img {
    max-width: 100%;
    object-fit: cover;
    object-position: center center;
}

.ll-gallery-image {
    height: 300px;
    width: auto;
}

.ll-container {
    max-width: 1240px;
    margin: 0 auto;
    min-height: 50px !important;
    width: 100%;
    background-repeat: no-repeat;
}

.ll-container > * {
    max-width: 100%;
}

.ll-container p,
.ll-container h1,
.ll-container h2,
.ll-container h3,
.ll-container h4,
.ll-container h5,
.ll-container h6 {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    max-width: 100%;
}

.ll-container [data-gjs-type='ll-form'],
.ll-container [data-gjs-type='button'] {
    max-width: 100%;
}

p b,
p strong,
h1 b,
h1 strong,
h2 b,
h2 strong,
h3 b,
h3 strong,
h4 b,
h4 strong,
h5 b,
h5 strong,
h6 b ,
h6 strong,
span b,
span strong {
    font-weight: bold !important;
}

.rte-text-left {
    text-align: left !important;
}
.rte-text-right {
    text-align: right !important;
}
.rte-text-center {
    text-align: center !important;
}

/* hidden */
@media screen and (min-width: 993px) {
    [data-ll-hidden-device*='d'] {
        display: none !important;
    }
}

@media screen and (min-width: 577px) and (max-width: 993px) {
    [data-ll-hidden-device*='t'] {
        display: none !important;
    }
}

@media screen and (max-width: 576px) {
    [data-ll-hidden-device*='m'] {
        display: none !important;
    }
}

/* hidden */
@media screen and (min-width: 993px) {
    .ll-container--big {
        width: 90%;
        max-width: 90%;
    }
}

@media screen and (max-width: 992px) {
    .ll-section {
        padding-inline: 2%;
    }
}

@media screen and (max-width: 576px) {
    .ll-section {
        padding-inline: 4%;
    }
}

/* ------------------------ TEXT BLOCK ------------------------ */
.ll-text-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 10px;
}
/* ------------------------ EMPTY BLOCK ------------------------ */
/* ------------------------ EMPTY BLOCK ------------------------ */
.ll-empty-block[empty='true'] {
    padding: 20px;
    height: max-content;
    width: 100%;
}

.ll-empty-block {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
}

/* ------------------------ BACKGOUND IMAGE OVERLAY ------------------------ */
/* LEGACY: NOT SUPPORTED NOW */
div.bg-overlay,
section.bg-overlay,
footer.bg-overlay {
    position: relative;
}

[ll-navbar-position='fixed'].bg-overlay {
    position: fixed;
}

div.bg-overlay::before,
section.bg-overlay::before,
footer.bg-overlay::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: inherit;
}

div.bg-overlay > *,
section.bg-overlay > *,
footer.bg-overlay > * {
    z-index: 2;
    position: relative;
}

/* ------------------------ Images Dropped From Gallery && Image Dropped from elements ------------------------ */
.ll-gallery__images__image,
.ll-image {
    display: inline-block;
    width: 100%;
    object-fit: cover;
    height: auto;
}


/* ------------------------ ICON ------------------------ */
/* ------------------------ ICON ------------------------ */
/* ------------------------ ICON ------------------------ */
/* ------------------------ ICON ------------------------ */
div[data-gjs-type='icon']{
    width: 30px;
    height: 30px;
}

div[data-gjs-type='icon'] svg {
    height: 100%;
    width: 100%;
}


/* ------------------------ SOCIALS ------------------------ */
/* ------------------------ SOCIALS ------------------------ */
/* ------------------------ SOCIALS ------------------------ */
/* ------------------------ SOCIALS ------------------------ */
[data-gjs-type='socials'] {
    width: min-content;
    height: auto;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    padding: 3px;
}

[data-gjs-type='socials'] a img {
    display: block;
    height: 40px;
    width: 40px;
}

/* Social Icon Visiblity */
[data-gjs-type='socials'] a {
    display: none;
}

[data-gjs-type='socials'] a[visible='true'] {
    display: block;
}

/* Wrapper Size */
[data-gjs-type='socials'][size='s'] {
    height: 30px;
}

[data-gjs-type='socials'][size='m'] {
    height: 40px;
}

[data-gjs-type='socials'][size='l'] {
    height: 60px;
}

/* Links Size */
[data-gjs-type='socials'][size='s'] a {
    height: 30px;
    width: 30px;
}

[data-gjs-type='socials'][size='m'] a {
    height: 40px;
    width: 40px;
}

[data-gjs-type='socials'][size='l'] a {
    height: 60px;
    width: 60px;
}

/* Img Size */
[data-gjs-type='socials'][size='s'] a img {
    height: 30px;
    width: 30px;
}

[data-gjs-type='socials'][size='m'] a img {
    height: 40px;
    width: 40px;
}

[data-gjs-type='socials'][size='l'] a img {
    height: 60px;
    width: 60px;
}

/* ------------------------ EMOJI  ------------------------ */
[data-gjs-type='emoji'] {
    height: 44px;
    width: min-content;
    padding-top: 3px;
    padding-right: 3px;
    padding-bottom: 3px;
    padding-left: 3px;
    display: inline-block;
}

[data-gjs-type='emoji'] svg {
    display: inline-block;
    width: auto;
    height: 100%;
}

/* ------------------------ POPUP  ------------------------ */
/* ------------------------ POPUP  ------------------------ */
/* ------------------------ POPUP  ------------------------ */
/* ------------------------ POPUP  ------------------------ */
/* reseter */
[ll-modal-wrapper] * {
    box-sizing: border-box;
}

[ll-modal-wrapper] h6,
[ll-modal-wrapper] h5,
[ll-modal-wrapper] h4,
[ll-modal-wrapper] h3,
[ll-modal-wrapper] h2,
[ll-modal-wrapper] h1,
[ll-modal-wrapper] p {
    margin: 0;
}

/* popup wrapper */
body:has([ll-modal-wrapper].visible) {
    overflow: hidden;
}

[ll-modal-wrapper] {
    height: 0px;
    width: 0px;
}

/* popup close */
[ll-modal-close] {
    position: fixed;
    z-index: 1002;
    right: 20px;
    top: 20px;
    height: 27px;
    width: 27px;
    display: none;
    cursor: pointer;
}

[ll-modal-close] svg {
    height: 100%;
    width: auto;
}

[ll-modal-wrapper].visible [ll-modal-close] {
    display: block;
}

/* popup backdrop */
[ll-modal-wrapper] [ll-modal-backdrop] {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: none;
    background-color: rgba(0, 0, 0, 0.45);
}

[ll-modal-wrapper].visible [ll-modal-backdrop] {
    display: block;
}

/* popup content */
[ll-modal-content].bg-overlay {
    position: absolute !important;
}

[ll-modal-content] {
    position: fixed !important;
    z-index: 10001;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);

    max-height: calc(100vh - 70px) !important;
    max-width: calc(100vw - 100px) !important;
    min-height: 100px !important;
    min-width: 250px !important;

    height: max-content;

    overflow-x: auto;
    overflow-y: auto;

    background-color: white;
    color: black;

    box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 12px;
    box-sizing: border-box;

    display: flex;
    flex-direction: row;

    padding: 10px;

    opacity: 0;
    visibility: hidden;

    transition: all 0.1s ease-in-out;
}

[ll-modal-content]  * {
    max-width: 100%
}



[ll-modal-wrapper].visible [ll-modal-content] {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

@media screen and (max-width: 992px) {
    [ll-modal-content] {
        max-width: calc(100vw - 70px) !important;
    }
}

@media screen and (max-width: 576px) {
    [ll-modal-content] {
        max-width: calc(100vw - 20px) !important;
        width: 100% !important;
    }
}

/* ------------------------ OLD FORM  ------------------------ */
/* ------------------------ OLD FORM  ------------------------ */
/* ------------------------ OLD FORM  ------------------------ */
/* ------------------------ OLD FORM  ------------------------ */
.landerlab-form * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.landerlab-form {
    background-color: transparent;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: inherit, sans-serif;
    color: blue;
    max-width: 100%;
    min-width: min-content;
    font-size: 14px;
    text-align: start;

    width: 100%;
}

.landerlab-form [form-wrapper] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.landerlab-form [form-input-wrapper] {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 100%;
}

.landerlab-form [form-input] {
    width: 100%;
}

.landerlab-form [form-input]::placeholder {
    color: lightgray;
}

/* LABEL */
.landerlab-form [form-input-label] {
    color: currentColor;
    text-align: inherit;
}

.landerlab-form [form-input-label][required]::after {
    content: '*';
}

/* CHECKBOX */
.landerlab-form [form-input-checkbox] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px !important;
    color: rgb(30, 30, 30);
}

.landerlab-form [form-input-checkbox] input {
    transform: scale(1.1);
    margin-left: 3px;
    width: auto;
}

.landerlab-form [form-input-checkbox] [form-input-label] {
    color: currentColor;
    text-align: start;
}

/* RADIO */
.landerlab-form [form-input-radio] {
    display: flex;
    flex-direction: column;
}

.landerlab-form [form-input-radio] input {
    transform: scale(1.1);
    width: auto;
}

.landerlab-form [form-input-radio-title] {
    margin: 0;
    margin-bottom: 6px;
}

.landerlab-form [form-input-radio-wrapper] {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-left: 3px;
    color: currentColor;
}

.landerlab-form [form-input-radio-inline] {
    display: flex;
    gap: 5px;
    color: rgb(30, 30, 30);
}

/* FORM INPUT */
.landerlab-form [form-input] {
    padding-inline: 16px !important;
    padding-block: 10px !important;
    border-radius: 4px;
    font-size: inherit;
    border: 1px solid #dcdcdc;
    color: rgb(30, 30, 30);
}

.landerlab-form [form-input]:focus-visible {
    outline: none;
}

.landerlab-form select option {
    color: rgb(30, 30, 30);
}

/* FORM LABELS */
.landerlab-form [form-input-label] {
    display: none;
    max-width: 100%;
    width: 100%;
    text-align: left;
}

.landerlab-form [form-input-radio] [form-input-label],
.landerlab-form [form-input-checkbox] [form-input-label] {
    display: inline-block;
}

.landerlab-form[form-labels] [form-input-label] {
    display: block;
}

.left-labels [form-input-label] {
    width: 25%;
    min-width: 25%;
}

.left-labels [form-input-radio] [form-input-label] {
    width: auto;
    max-width: auto;
    min-width: auto;
}

.left-labels [form-input-wrapper][form-input-radio] {
    flex-direction: column;
    gap: 0 !important;
}

.left-labels [form-input-wrapper] {
    display: flex;
    flex-direction: row;
}

.landerlab-form[form-size='s'].left-labels [form-input-wrapper] {
    gap: 10px !important;
}

.landerlab-form[form-size='m'].left-labels [form-input-wrapper] {
    gap: 10px !important;
}

.landerlab-form[form-size='l'].left-labels [form-input-wrapper] {
    gap: 10px !important;
}

/* FORM SIZE S */
.landerlab-form[form-size='s'] [form-wrapper] {
    gap: 10px;
}

.landerlab-form[form-size='s'] [form-input-wrapper] {
    gap: 3px !important;
}

.landerlab-form[form-size='s'] [form-input],
.landerlab-form[form-size='s'] [form-input-label] {
    font-size: inherit;
}

/* FORM SIZE M */
.landerlab-form[form-size='m'] [form-wrapper] {
    gap: 20px;
}

.landerlab-form[form-size='m'] [form-input-wrapper] {
    gap: 5px !important;
}

/* .landerlab-form[form-size='m'] [form-input],
.landerlab-form[form-size='m'] [form-input-label] {
  font-size: 16px;
} */
/* FORM SIZE L */
.landerlab-form[form-size='l'] [form-wrapper] {
    gap: 24px;
}

.landerlab-form[form-size='l'] [form-input-wrapper] {
    gap: 7px !important;
}

/* .landerlab-form[form-size='l'] [form-input],
.landerlab-form[form-size='l'] [form-input-label] {
  font-size: 18px;
} */

/* ------------------------ NEW FORM ------------------------ */
/* ------------------------ NEW FORM ------------------------ */
/* ------------------------ NEW FORM ------------------------ */
/* ------------------------ NEW FORM ------------------------ */
.ll-form * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ll-form {
    width: 100%;
    padding: 0;
    max-width: 100%;
    font-family: inherit;
    min-width: min-content;
    text-align: start;
    font-size: 16px;
    display: grid;
    grid-template-columns: 1fr;
    color: rgb(30, 30, 30);
    background-color: transparent;
    gap: 14px;
    font-weight: 400;
    box-sizing: border-box;
}

.ll-form .ll-btn {
    padding: 13px 32px;
    font-size: 16px;
    background-color: rgb(30, 30, 30);
}

/* input wrapper */
.ll-form__input-w {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

/* input checkbox wrapper */
.ll-form__input-w--ch {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.ll-form__input-w--ch .ll-form__input-l,
.ll-form__input-w--ch-g .ll-form__input-l-ch .ll-form__input-l {
    margin: 0;
    margin-left: 10px;
    font-family: inherit;
}

/* input radio wrapper */
.ll-form__input-w--r {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0 20px;
}

/* input checkbox group wrapper */
.ll-form__input-w--ch-g {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0 20px;
}

.ll-form__input-l-ch {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 5px;
}

.ll-form__input-l-ch input {
    transform: scale(1.2);
}

.ll-form__input-l-ch:last-of-type {
    margin-bottom: 0;
}

/* Label styling */
.ll-form__input-l {
    color: currentColor;
    width: 100% !important;
    margin-bottom: 4px;
    font-size: 16px;
    font-family: inherit;
}

/* Input styling */
.ll-form__input-i,
.ll-form__input-textarea,
.ll-form__input-date {
    display: block;
    width: 100%;
    padding: 10px 16px;
    border-radius: 4px;
    border: 1px solid #dcdcdc;
    color: rgb(30, 30, 30);
    font-family: inherit;
    font-size: 16px;
}

.ll-form__input-i::placeholder,
.ll-form__input-textarea::placeholder {
    color: lightgray;
    font-weight: 300;
}

.ll-form__input-textarea {
    resize: none;
    height: 80px;
}

.ll-form__input-i:focus,
.ll-form__input-i:focus-visible,
.ll-form__input-i:active,
.ll-form__input-textarea:focus,
.ll-form__input-textarea:focus-visible,
.ll-form__input-textarea:active,
.ll-form__input-date:focus,
.ll-form__input-date:focus-visible,
.ll-form__input-date:active {
    outline: none;
    border-color: blue !important;
}

/* Input styling checkbox */
.ll-form__input-ch {
    transform: scale(1.2);
}

/* Input styling radio */
.ll-form__input-l-r {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    font-family: inherit;
}

.ll-form__input-l-r input {
    transform: scale(1.2);
}

.ll-form__input-w--r > * :not(first-child),
.ll-form__input-w--ch > .ll-form__input-l {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

[data-input-wrapper='hidden'] {
    display: none !important;
}

/* horizontal form */
.ll-form[data-form-layout='horizontal'] {
    grid-template-columns: 1fr 1fr;
}

.ll-form[data-form-layout='horizontal'] .ll-form__input-w--r,
.ll-form[data-form-layout='horizontal'] .ll-form__input-w--ch {
    grid-column: span 2;
}

.ll-form[data-form-layout='horizontal'] button,
.ll-form[data-form-layout='horizontal'] [data-input-wrapper='html'] {
    grid-column: span 2;
}

@media screen and (max-width: 576px) {
    .ll-form[data-form-layout='horizontal'] {
        grid-template-columns: 1fr !important;
    }
    .ll-form[data-form-layout='horizontal'] .ll-form__input-w--r,
    .ll-form[data-form-layout='horizontal'] .ll-form__input-w--ch {
        grid-column: 1 !important;
    }

    .ll-form[data-form-layout='horizontal'] button,
    .ll-form[data-form-layout='horizontal'] [data-input-wrapper='html'] {
        grid-column: 1 !important;
    }
}

/* NO LABEL */
.ll-form[data-form-label='false'] .ll-form__input-w .ll-form__input-l {
    display: none;
}

/* SIZES FORM */
.ll-form[data-form-size='s'] {
    gap: 13px;
}

.ll-form[data-form-size='s'] .ll-form__input-l {
    font-size: 14px;
    font-weight: normal;
}

.ll-form[data-form-size='s'] .ll-form__input-i,
.ll-form[data-form-size='s'] .ll-form__input-date,
.ll-form[data-form-size='s'] .ll-form__input-textarea {
    font-size: 14px;
    font-weight: normal;
    padding: 8px;
}

.ll-form[data-form-size='s'] .ll-btn {
    padding: 10px 32px;
    font-size: 14px;
}

.ll-form[data-form-size='s'] .ll-form__input-textarea {
    height: 60px;
}

.ll-form[data-form-size='l'] {
    gap: 22px;
}

.ll-form[data-form-size='l'] .ll-btn {
    padding: 15px 32px;
    font-size: 18px;
}

.ll-form[data-form-size='l'] .ll-form__input-l {
    font-size: 18px;
}

.ll-form[data-form-size='l'] .ll-form__input-i,
.ll-form[data-form-size='l'] .ll-form__input-date,
.ll-form[data-form-size='l'] .ll-form__input-textarea {
    font-size: 16px;
    padding: 12px;
}

.ll-form[data-form-size='l'] .ll-form__input-textarea {
    height: 100px;
}

/* Theme Bordered */
.ll-form[data-from-theme='bordered'] .ll-form__input-i,
.ll-form[data-from-theme='bordered'] .ll-form__input-date,
.ll-form[data-from-theme='bordered'] .ll-form__input-textarea {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #b6b6b6;
    padding-inline: 0;
}

/* FORM SUBMIT STYLES */
[ll-submit-popup] {
    position: fixed;
    top: 0;
    left: 0;

    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);

    display: grid;
    place-content: center;

    z-index: 1000;
    opacity: 0;
    transition: all 0.1s ease-in-out;
}

[ll-submit-popup].visible {
    opacity: 1;
}

[ll-submit-popup] * {
    margin: 0;
}

[ll-submit-popup] svg {
    height: 60px;
    width: auto;
    margin-bottom: 10px;
}

[ll-submit-popup] > div {
    padding: 35px 50px;
    background-color: white;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;

    min-width: 300px;
    min-height: 180px;

    text-align: center;
    margin: 0 15px;
    transform: scale(0);
    transition: all 0.1s ease-in-out;
}

[ll-submit-popup].visible > div {
    transform: scale(1);
}

[ll-submit-popup] h3 {
    font-size: 23px;
    color: #222222;
}

[ll-submit-popup] p {
    font-size: 16px;
    color: #555555;
}

/* Tel Input styling */
.iti {
    width: 100%;
}

.iti .iti__flag-box {
    margin-left: 10px;
}

.iti.iti--fullscreen-popup {
    z-index: 99999 !important;
}

.iti--inline-dropdown .iti__country-list {
    max-height: 250px !important;
}

.iti__dropdown-content {
    border: none !important;
    min-width: 263px;
}

.iti__dropdown-content .iti__search-input {
    padding: 16px 20px !important;
    border-bottom: 1px solid #d7d7ec;
}

.iti__dropdown-content li {
    font-family: inherit;
    padding: 10.5px 20px;
    font-size: 14px;
    height: unset !important;
    overflow: hidden;
    color: black !important;
    transition: none;
}

.iti__dropdown-content li:hover {
    background: rgb(236, 236, 236);
}


/* ------------------------ RATING ------------------------ */
/* ------------------------ RATING ------------------------ */
/* ------------------------ RATING ------------------------ */
/* ------------------------ RATING ------------------------ */
[ll-rating-wrapper='true'] {
    padding: 0px;
    box-sizing: unset;
    color: #d1b000;
    height: auto;
    display: inline-block;
    width: min-content;
}

[data-ll-rating] {
    position: relative;
    display: inline-block;
    width: min-content;
    padding: 0;
    color: inherit;
    height: min-content;
}

[data-ll-rating] [ll-rating-filled] {
    width: 92%;
}

[data-ll-rating] > div {
    display: flex;
    gap: 10px;
}

[data-ll-rating] [ll-rating-filled] {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* DEFAULT STAR STYLING */
[data-ll-rating] [ll-rating-default] > div,
[data-ll-rating] [ll-rating-filled] > div {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    background: currentColor;
    clip-path: polygon(
            50% 0%,
            61% 35%,
            98% 35%,
            68% 57%,
            79% 91%,
            50% 70%,
            21% 91%,
            32% 57%,
            2% 35%,
            39% 35%
    );
}

[data-ll-rating] [ll-rating-default] > div {
    opacity: 0.3;
}

/* -------------- NAVBAR -------------- */
/* -------------- NAVBAR -------------- */
/* -------------- NAVBAR -------------- */
/* -------------- NAVBAR -------------- */
[ll-navbar='true'] {
    width: 100%;
    padding: 0;
    position: relative;
    background-color: white;
    color: black;
    font-size: 16px;
}

/* LOGO */
[ll-navbar] [ll-navbar-logo-wrapper] {
    height: 44px;
    width: auto;
}

[ll-navbar-logo] {
    height: 44px;
    max-height: 44px;
    width: auto;
}

[ll-navbar-nologo='true'] [ll-navbar-logo] {
    display: none;
}

[ll-navbar-nologo='true'] [ll-navbar-logo-wrapper] {
    height: 44px;
    width: 44px;
}

/* Shadow */
[ll-navbar-shadow='true'] {
    box-shadow: 0 1px 25px 1px rgba(69, 65, 78, 0.15);
}

/* Position */
[ll-navbar-position='fixed'] {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

[ll-navbar-position='overlay'] {
    position: absolute;
    background-color: transparent;
    top: 0;
    left: 0;
    z-index: 1000;
}

[ll-navbar='true'] [ll-navbar-container] {
    max-width: 1240px;
    margin: 0 auto;
    padding: 10px 20px;
}

/* Size */
[ll-navbar-size='s'] [ll-navbar-container] {
    padding: 5px 20px !important;
}

[ll-navbar-size='m'] [ll-navbar-container] {
    padding: 15px 20px !important;
}

[ll-navbar-size='l'] [ll-navbar-container] {
    padding: 25px 20px !important;
}

/* FULL WIDTH */
[ll-navbar-full='true'] [ll-navbar-container] {
    max-width: 100%;
}

[ll-navbar='true'] [ll-navbar-wrapper] {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

[ll-navbar='true'] [ll-navbar-header] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

[ll-navbar='true'] [ll-navbar-header] a {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LIST */
[ll-navbar-links-wrapper] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
}

[ll-navbar-link] {
    color: currentColor;
    text-decoration: none;
    font-size: inherit;
    cursor: pointer;
    padding: 5px;
}

/* Fixed Div In The back when navbar is posiiton fixed */
[ll-navbar-fixed-div='s'] {
    height: 54px;
    background-color: transparent;
}

[ll-navbar-fixed-div='m'] {
    height: 74px;
    background-color: transparent;
}

[ll-navbar-fixed-div='l'] {
    height: 94px;
    background-color: transparent;
}

/* TOGGLER */
[ll-navbar='true'] [ll-navbar-toggler] {
    display: none;
    cursor: pointer;
    padding: 8px 0;
    color: currentColor;
}

[ll-navbar='true'] [ll-navbar-toggler] > div {
    width: 28px;
    height: 2px;
    background: currentColor;
    margin: 5px 0;
    transition: 0.4s;
    color: currentColor;
    pointer-events: none;
}

[ll-navbar='true'] [expanded='true'] [ll-navbar-toggler] .bar1 {
    transform: rotate(45deg);
    margin-bottom: -15px;
}

[ll-navbar='true'] [expanded='true'] [ll-navbar-toggler] .bar2 {
    display: none;
}

[ll-navbar='true'] [expanded='true'] [ll-navbar-toggler] .bar3 {
    transform: rotate(-45deg);
    margin-top: 13px;
}

/* LAYOUT */
[ll-navbar-layout='left'] [ll-navbar-wrapper] {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 992px) {
    /* TOGGLER */
    [ll-navbar='true'] [ll-navbar-toggler] {
        display: inline-block;
    }

    [ll-navbar='true'] [data-gjs-type='llbutton'] {
        max-width: min-content !important;
    }

    [ll-navbar='true'] [ll-navbar-container] {
        max-width: 100%;
    }

    [ll-navbar='true'] [ll-navbar-container][expanded='true'] {
        height: 100%;
    }

    [ll-navbar-size='s'] [ll-navbar-container][expanded='true'] {
        height: calc(100vh - 10px);
    }

    [ll-navbar-size='m'] [ll-navbar-container][expanded='true'] {
        height: calc(100vh - 30px);
    }

    [ll-navbar-size='l'] [ll-navbar-container][expanded='true'] {
        height: calc(100vh - 50px);
    }

    [ll-navbar='true'] [ll-navbar-header] {
        width: 100%;
    }

    [ll-navbar='true'] [ll-navbar-links] {
        display: none;
    }

    [ll-navbar='true'] [expanded='true'] [ll-navbar-links] {
        display: block;
    }

    [ll-navbar-links] {
        height: calc(100vh - 88px);
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }

    [ll-navbar] [ll-navbar-wrapper] {
        flex-direction: column;
    }

    [ll-navbar-links-wrapper] {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 50px 0px;
    }

    [ll-navbar-link] {
        font-size: 22px;
        padding: 0;
    }

    /* LAYOUT */
    [ll-navbar-layout='left'] [ll-navbar-wrapper] {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    [ll-navbar-layout='left'] [ll-navbar-header] {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between;
    }
}

/* ------------------------ OLD BUTTON  ------------------------ */
/* ------------------------ OLD BUTTON  ------------------------ */
/* ------------------------ OLD BUTTON  ------------------------ */
/* ------------------------ OLD BUTTON  ------------------------ */
[data-gjs-type='llbutton'] {
    width: max-content;
    min-width: max-content;
    position: relative;
    max-width: 100%;
    background-color: transparent;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
    border: 1px solid transparent;
    transition: box-shadow 0.15s ease-in-out;
    display: grid;
    place-items: center;
    font-size: 16px;
    padding: 8px 20px;
    min-height: min-content;
}

[data-gjs-type='llbutton'][ll-btn-type='fill'] {
    background-color: #007aff;
    color: white;
}

[data-gjs-type='llbutton'][ll-btn-type='outline'] {
    background-color: transparent;
    color: #007aff;
    border: 1px solid #007aff;
}

[data-gjs-type='llbutton']:hover {
    box-shadow: inset 0 0 10000px rgba(105, 75, 75, 0.1);
}

[data-gjs-type='llbutton'][ll-btn-type='link'] {
    color: #007aff;
}

[data-gjs-type='llbutton'][ll-btn-fullwidth='true'] {
    min-width: 100%;
}
/* ------------------------ NEW BUTTON ------------------------ */
/* ------------------------ NEW BUTTON ------------------------ */
/* ------------------------ NEW BUTTON ------------------------ */
/* ------------------------ NEW BUTTON ------------------------ */
.ll-btn {
    min-width: min-content;
    max-width: 100%;
    width: max-content;
    min-height: min-content;
    text-decoration: none !important;
    background-color: blue;
    color: white;

    cursor: pointer;
    border-radius: 5px;
    text-align: center;

    border: none;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    font-size: 16px;
    padding: 12px 40px;

    transition: box-shadow 0.15s ease-in-out;
}

@media screen and (max-width: 576px) {
    .ll-btn{
        gap: 5px;
    }
}

.ll-btn.ll-btn--full {
    width: 100% !important;
}

.ll-btn:hover,
.ll-btn:focus {
    color: white;
    box-shadow: inset 0 0 10000px rgba(0, 0, 0, 0.1);
}

.ll-btn div[data-gjs-type='icon'] {
    height: 28px;
    width: 28px;
    flex-shrink: 0;
}

/* ------------------------ NEWSLETTER ------------------------ */
/* ------------------------ NEWSLETTER ------------------------ */
/* ------------------------ NEWSLETTER ------------------------ */
/* ------------------------ NEWSLETTER ------------------------ */
.landerlab-newsletter * {
    box-sizing: border-box;
    margin: 0;
}

.landerlab-newsletter {
    padding: 10px;
    box-sizing: border-box;
    font-family: inherit;

    display: flex;
    align-items: center;
    gap: 10px;

    width: 100%;
    min-width: min-content;
    min-height: min-content;
    max-width: 100% !important;

    background-color: transparent;
}

.landerlab-newsletter__input {
    flex-grow: 1;
    flex-shrink: 1;
    background-color: #ffffff;
    transition: all 0.1s ease;
    height: 100%;
    width: 100%;

    padding: 10px 16px;
    border-radius: 4px;
    border: 1px solid #dcdcdc;
    color: rgb(30, 30, 30);
    font-family: inherit;
    font-size: 16px;
    height: 40px !important;
    margin:0 !important;
}

.landerlab-newsletter__input::placeholder {
    color: lightgray;
}

.landerlab-newsletter__input:focus,
.landerlab-newsletter__input:focus-visible,
.landerlab-newsletter__input:active {
    outline: none;
    border-color: blue !important;
}

.landerlab-newsletter__btn {
    padding: 10px 22px;
    font-size: 16px;
    background-color: rgb(30, 30, 30);
    height: 40px !important;
    margin:0 !important;
}

/* SIZES NEWSLETTER */
.landerlab-newsletter[ll-newsletter-size='s'] {
    gap: 6px;
}

.landerlab-newsletter[ll-newsletter-size='s'] .landerlab-newsletter__input {
    font-size: 14px;
    font-weight: normal;
    padding: 8px;
    height: 35px !important;
}

.landerlab-newsletter[ll-newsletter-size='s'] .landerlab-newsletter__btn {
    padding: 8px 20px;
    font-size: 14px;
    height: 35px !important;
}

.landerlab-newsletter[ll-newsletter-size='l'] {
    gap: 20px;
}

.landerlab-newsletter[ll-newsletter-size='l'] .landerlab-newsletter__input {
    font-size: 18px;
    font-weight: normal;
    padding: 12px;
    height: 45px !important;
}

.landerlab-newsletter[ll-newsletter-size='l'] .landerlab-newsletter__btn {
    padding: 12px 28px;
    font-size: 18px;
    height: 45px !important;
}

/* BORDERED */
.landerlab-newsletter[data-from-theme='bordered'] .landerlab-newsletter__input {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #b6b6b6;
    padding-inline: 0;
}

/* new newsletter styles */
.ll-newsletter * {
    box-sizing: border-box;
    margin: 0;
}

.ll-newsletter {
    padding: 12px;
    border-radius: 0;
    box-sizing: border-box;
    font-family: inherit;

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;

    width: 100%;
    min-width: min-content;
    min-height: min-content;
    max-width: 100% !important;
}

.ll-newsletter-input {
    flex-grow: 1;
    flex-shrink: 1;
    /* box-sizing: content-box; */
    border: 1px solid lightgray;
    background-color: #fff;
    padding: 9px 25px;
    font-size: 16px;
    transition: all 0.1s ease;
    border-radius: 0;
    height: 100%;
    width: 100%;
}

.ll-newsletter-input:hover,
.ll-newsletter-input:focus,
.ll-newsletter-input:focus-visible {
    outline: 1px solid rgb(149, 213, 255);
}

.ll-newsletter button {
    border-radius: 0;
    height: 100%;
    background-color: #e06a8a;
    padding: 9px 25px;
    font-size: 16px;
    font-weight: normal;
    width: 100px;
}

/* ------------------------ COLLAPSE ------------------------ */
/* ------------------------ COLLAPSE ------------------------ */
/* ------------------------ COLLAPSE ------------------------ */
/* ------------------------ COLLAPSE ------------------------ */
.ll-collapse * {
    box-sizing: border-box;
    font-family: sans-serif;
}

.ll-collapse {
    overflow: hidden;
    height: min-content;
    width: 100%;
    margin-block: 10px;
}

.ll-collapse-header {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    background-color: #f3f3f3;
    cursor: pointer;
    width: 100%;
    position: relative;
    z-index: 5;
    outline-offset: -2px !important;
}

.ll-collapse-header > * {
    max-width: calc(100% - 40px);
}

.ll-collapse-heading {
    padding: 0;
    margin: 0;
    font-size: 17px;
    font-weight: 500;
}

.ll-collapse .ll-collapse-close-icon[data-gjs-type='icon'] {
    position: absolute;
    right: 20px;
    height: 20px;
    width: 20px;
    max-height: 35px !important;
    max-width: 35px !important;
    transition: all 0.2s ease;
}

.ll-collapse .ll-collapse-close-icon[data-gjs-type='icon'] svg {
    height: 100% !important;
    width: auto !important;
}

.ll-collapse-body {
    flex-direction: column;
    margin: 0;
    border: 1px solid #f3f3f3;
    padding: 14px;
    display: none;
    transition: all 0.2s ease;
    outline-offset: -2px !important;
}

.ll-collapse-body * {
    max-width: 100%;
}

.ll-collapse.expanded > .ll-collapse-body {
    display: block;
}

.ll-collapse.expanded
> .ll-collapse-header
> .ll-collapse-close-icon[data-gjs-type='icon'] {
    transform: rotate(-90deg);
}

.ll-collapse-body-text {
    margin: 0;
    padding: 0;
}

/* STICKY BAR */
/* STICKY BAR */
/* STICKY BAR */
[data-gjs-type='sticky-bar'] {
    position: fixed !important;
    min-height: max-content !important;
    z-index: 999 !important;

    margin: 0 !important;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    font-size: inherit;
    font-family: inherit;
}

[data-gjs-type='sticky-bar'][data-sticky-bar-full] {
    width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
}
[data-gjs-type='sticky-bar'][data-sticky-bar-vertical='top'] {
    top: 0 !important;
}
[data-gjs-type='sticky-bar'][data-sticky-bar-vertical='bottom'] {
    bottom: 0 !important;
}
[data-gjs-type='sticky-bar'][data-sticky-bar-horizontal='left'] {
    left: 0 !important;
}
[data-gjs-type='sticky-bar'][data-sticky-bar-horizontal='center'] {
    left: 50% !important;
    transform: translateX(-50%);
}
[data-gjs-type='sticky-bar'][data-sticky-bar-horizontal='right'] {
    right: 0 !important;
}
[data-sticky-bar-container='true'] {
    max-width: 100%;
    width: 96% !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 992px) {
    [data-gjs-type='sticky-bar'] {
        width: 100vw !important;
    }
}

@media screen and (max-width: 576px) {
    [data-sticky-bar-container='true'] {
        width: 94% !important;
    }
}

/* Animation on scroll */
[data-sticky-bar-scroll] {
    transition: all 0.25s ease-in-out;
}
/* bottom animation */
[data-sticky-bar-scroll][data-sticky-bar-vertical='bottom'][data-sticky-bar-horizontal='center'] {
    transform: translateY(100%) translateX(-50%);
}
[data-sticky-bar-scroll][data-sticky-bar-vertical='bottom'][data-sticky-bar-horizontal='center'].visible {
    transform: translateY(0) translateX(-50%);
}

[data-sticky-bar-scroll][data-sticky-bar-vertical='bottom'][data-sticky-bar-horizontal='left'],
[data-sticky-bar-scroll][data-sticky-bar-vertical='bottom'][data-sticky-bar-horizontal='right'] {
    transform: translateY(100%);
}
[data-sticky-bar-scroll][data-sticky-bar-vertical='bottom'][data-sticky-bar-horizontal='left'].visible,
[data-sticky-bar-scroll][data-sticky-bar-vertical='bottom'][data-sticky-bar-horizontal='right'].visible {
    transform: translateY(0);
}
/* top animation */
[data-sticky-bar-scroll][data-sticky-bar-vertical='top'][data-sticky-bar-horizontal='center'] {
    transform: translateY(-100%) translateX(-50%);
}
[data-sticky-bar-scroll][data-sticky-bar-vertical='top'][data-sticky-bar-horizontal='center'].visible {
    transform: translateY(0) translateX(-50%);
}

[data-sticky-bar-scroll][data-sticky-bar-vertical='top'][data-sticky-bar-horizontal='left'],
[data-sticky-bar-scroll][data-sticky-bar-vertical='top'][data-sticky-bar-horizontal='right'] {
    transform: translateY(-100%);
}
[data-sticky-bar-scroll][data-sticky-bar-vertical='top'][data-sticky-bar-horizontal='left'].visible,
[data-sticky-bar-scroll][data-sticky-bar-vertical='top'][data-sticky-bar-horizontal='right'].visible {
    transform: translateY(0);
}

.ll-sticky-bar--1 {
    background-color: #fce801;
    padding-top: 17px;
    padding-bottom: 17px;
    width: 700px;
    text-align: center;
}

.ll-sticky-bar--1 p,
.ll-sticky-bar--1 h6,
.ll-sticky-bar--1 h5,
.ll-sticky-bar--1 h4,
.ll-sticky-bar--1 h3,
.ll-sticky-bar--1 h2,
.ll-sticky-bar--1 h1 {
    margin: 0;
}

.ll-sticky-bar--1-container {
    gap: 17px;
}

.ll-sticky-bar--1-btn {
    padding: 10px 25px;
    background-color: rgb(30, 30, 30);
    color: white;
    border-radius: 5px;
    width: max-content;
}

[data-sticky-bar-scroll] {
    opacity: 0;
    pointer-events: none;
}

[data-sticky-bar-scroll].visible {
    opacity: 1 !important;
    pointer-events: all;
}

@media screen and (max-width: 576px) {
    .ll-sticky-bar--1-container {
        flex-direction: column;
    }
}

/* GRID */
/* GRID */
/* GRID */
/* GRID */
[data-gjs-type='grid'] {
    width: 100%;
    display: grid;
    grid-template-columns: 6fr 6fr;
    height: auto;
    padding: 15px;
    gap: 12px;
    align-items: center;
    box-sizing: border-box;
}

[data-gjs-type='grid'] [data-gjs-type='grid-cell'] {
    min-height: 20px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    box-sizing: border-box;
}

[data-gjs-type='grid'] [data-gjs-type='grid-cell'] > *{
    max-width: 100%;
}

[data-gjs-type='grid'][data-columns='12'] {
    grid-template-columns: minmax(0, 12fr);
}
[data-gjs-type='grid'][data-columns='6-6'] {
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
}
[data-gjs-type='grid'][data-columns='4-4-4'] {
    grid-template-columns: minmax(0, 4fr) minmax(0, 4fr) minmax(0, 4fr);
}
[data-gjs-type='grid'][data-columns='3-3-3-3'] {
    grid-template-columns: minmax(0, 3fr) minmax(0, 3fr) minmax(0, 3fr) minmax(
        0,
        3fr
      );
}
[data-gjs-type='grid'][data-columns='2-2-2-2-2-2'] {
    grid-template-columns:
      minmax(0, 2fr) minmax(0, 2fr) minmax(0, 2fr) minmax(0, 2fr)
      minmax(0, 2fr) minmax(0, 2fr);
}
[data-gjs-type='grid'][data-columns='3-9'] {
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
}
[data-gjs-type='grid'][data-columns='9-3'] {
    grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
}

@media screen and (max-width: 992px) {
    [data-gjs-type='grid'][data-columns-t='12'] {
        grid-template-columns: minmax(0, 12fr);
    }
    [data-gjs-type='grid'][data-columns-t='6-6'] {
        grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    }
    [data-gjs-type='grid'][data-columns-t='4-4-4'] {
        grid-template-columns: minmax(0, 4fr) minmax(0, 4fr) minmax(0, 4fr);
    }
    [data-gjs-type='grid'][data-columns-t='6-6'] {
        grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    }
    [data-gjs-type='grid'][data-columns-t='4-4-4'] {
        grid-template-columns: minmax(0, 4fr) minmax(0, 4fr) minmax(0, 4fr);
    }
    [data-gjs-type='grid'][data-columns-t='3-3-3-3'] {
        grid-template-columns: minmax(0, 3fr) minmax(0, 3fr) minmax(0, 3fr) minmax(
          0,
          3fr
        );
    }
    [data-gjs-type='grid'][data-columns-t='2-2-2-2-2-2'] {
        grid-template-columns:
        minmax(0, 2fr) minmax(0, 2fr) minmax(0, 2fr) minmax(0, 2fr)
        minmax(0, 2fr) minmax(0, 2fr);
    }
    [data-gjs-type='grid'][data-columns-t='3-9'] {
        grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    }
    [data-gjs-type='grid'][data-columns-t='9-3'] {
        grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
    }
}

@media screen and (max-width: 576px) {
    [data-gjs-type='grid'][data-columns-m='12'] {
        grid-template-columns: minmax(0, 12fr);
    }
    [data-gjs-type='grid'][data-columns-m='6-6'] {
        grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    }
    [data-gjs-type='grid'][data-columns-m='4-4-4'] {
        grid-template-columns: minmax(0, 4fr) minmax(0, 4fr) minmax(0, 4fr);
    }
    [data-gjs-type='grid'][data-columns-m='6-6'] {
        grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    }
    [data-gjs-type='grid'][data-columns-m='4-4-4'] {
        grid-template-columns: minmax(0, 4fr) minmax(0, 4fr) minmax(0, 4fr);
    }
    [data-gjs-type='grid'][data-columns-m='3-3-3-3'] {
        grid-template-columns: minmax(0, 3fr) minmax(0, 3fr) minmax(0, 3fr) minmax(
          0,
          3fr
        );
    }
    [data-gjs-type='grid'][data-columns-m='2-2-2-2-2-2'] {
        grid-template-columns:
        minmax(0, 2fr) minmax(0, 2fr) minmax(0, 2fr) minmax(0, 2fr)
        minmax(0, 2fr) minmax(0, 2fr);
    }
    [data-gjs-type='grid'][data-columns-m='3-9'] {
        grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    }
    [data-gjs-type='grid'][data-columns-m='9-3'] {
        grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
    }
}

.ll-section.ll-section__grid {
    padding-top: 20px;
    padding-bottom: 20px;
}

.ll-container.ll-container__grid {
    padding-top: 25px;
    padding-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* DATE PICKER */
/* DATE PICKER */
/* DATE PICKER */
/* DATE PICKER */
[data-gjs-type="date-picker"]{
    font-size: 16px;
    max-width: 100%;
    min-width: min-content;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    gap: .5em;
}

/* COUNTDOWN */
/* COUNTDOWN */
/* COUNTDOWN */
/* COUNTDOWN */
/* COUNTDOWN */
.ll-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    min-width: min-content;
    min-height: max-content;
    width: max-content;
}

.ll-countdown * {
    box-sizing: border-box;
}

.ll-countdown[data-countdown-no-label] [data-countdown-label] {
    display: none;
}

.ll-countdown [data-countdown-label] {
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 100%;
}

.ll-countdown [data-countdown-group-hidden] {
    display: none;
}

.ll-countdown [data-countdown-value] {
    display: grid;
    place-content: center;
}

.ll-countdown>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: min-content;
    flex: 1;
    opacity: 0;
}

.ll-countdown p {
    margin: 0;
    padding: 0;
}

.ll-countdown.ll-countdown-visible>div {
    opacity: 1;
}


/* SIZES */
[data-countdown-size="s"] {
    gap: 0px;
    padding: 5px;
}

[data-countdown-size="s"] [data-countdown-label] {
    font-size: 12px;
    font-weight: normal;
}

[data-countdown-size="s"] [data-countdown-value] {
    font-size: 25px;
    font-weight: bold;
    padding: 5px;

    width: 50px;
    height: 50px;
}

[data-countdown-size="s"] [data-countdown-group] {
    gap: 3px;
    width: 55px;
}

/* SIZES M*/
[data-countdown-size="m"] {
    gap: 10px;
    padding: 10px;
}

[data-countdown-size="m"] [data-countdown-label] {
    font-size: 15px;
    font-weight: normal;
}

[data-countdown-size="m"] [data-countdown-value] {
    font-size: 35px;
    font-weight: bold;
    padding: 10px;

    width: 70px;
    height: 70px;
}

[data-countdown-size="m"] [data-countdown-group] {
    gap: 3px;
    width: 70px;
}


/* SIZES L*/
[data-countdown-size="l"] {
    gap: 10px;
    padding: 10px;
}

[data-countdown-size="l"] [data-countdown-label] {
    font-size: 16px;
    font-weight: normal;

}

[data-countdown-size="l"] [data-countdown-value] {
    font-size: 55px;
    font-weight: bold;
    padding: 12px;

    width: 100px;
    height: 100px;

}

[data-countdown-size="l"] [data-countdown-group] {
    gap: 3px;
    width: 100px;
}


/* THEME 1 */
.ll-countdown[data-countdown-theme="border-round"] {
    color: #181823;
}

.ll-countdown[data-countdown-theme="border-round"] [data-countdown-value] {
    border: 2px solid #181823;
    background-color: transparent;
    border-radius: 7px;
}

/* THEME 2 */
.ll-countdown[data-countdown-theme="border-square"] {
    color: #181823;
}

.ll-countdown[data-countdown-theme="border-square"] [data-countdown-value] {
    border: 2px solid #181823;
    background-color: transparent;
    border-radius: 0px;
}

/* THEME 3 */
.ll-countdown[data-countdown-theme="border-circle"] {
    color: #181823;
}

.ll-countdown[data-countdown-theme="border-circle"] [data-countdown-value] {
    border: 2px solid #181823;
    background-color: transparent;
    border-radius: 50%;
}


/* THEME 4 */
.ll-countdown[data-countdown-theme="fill-round"] {
    color: #181823;
}

.ll-countdown[data-countdown-theme="fill-round"] [data-countdown-value] {
    border: none;
    color: white;
    background-color: #181823;
    border-radius: 7px;
}

/* theme 5 */
.ll-countdown[data-countdown-theme="fill-square"] {
    color: #181823;
}

.ll-countdown[data-countdown-theme="fill-square"] [data-countdown-value] {
    border: none;
    color: white;
    background-color: #181823;
    border-radius: 0px;
}

/* theme 6 */
.ll-countdown[data-countdown-theme="fill-circle"] {
    color: #181823;
}

.ll-countdown[data-countdown-theme="fill-circle"] [data-countdown-value] {
    border: none;
    color: white;
    background-color: #181823;
    border-radius: 50%;
}

@media screen and (max-width: 576px) {
    [data-countdown-size="m"],
    [data-countdown-size="l"] {
        gap: 10px;
        padding: 10px;
    }

    [data-countdown-size="m"] [data-countdown-label],
    [data-countdown-size="l"] [data-countdown-label] {
        font-size: 15px;
        font-weight: normal;
    }

    [data-countdown-size="m"] [data-countdown-value],
    [data-countdown-size="l"] [data-countdown-value] {
        font-size: 35px;
        font-weight: bold;
        padding: 10px;
        width: 70px;
        height: 70px;
    }

    [data-countdown-size="l"] [data-countdown-group],
    [data-countdown-size="m"] [data-countdown-group] {
        gap: 3px;
    }
}


/* -------- Horizontal Line DEVIDER ------------ */
/* -------- Horizontal Line DEVIDER ------------ */
/* -------- Horizontal Line DEVIDER ------------ */
/* -------- Horizontal Line DEVIDER ------------ */
.ll-horizontal-line{
    border: 1px solid #444444;
    min-width: 20px;
    max-width: 100%;
    margin: 0;
}


/* -------- Full Width Class ------------ */
/* -------- Full Width Class ------------ */
/* -------- Full Width Class ------------ */
/* -------- Full Width Class ------------ */
.ll-full-width{
    width: 100% !important;
}


/* -------- SPINING WHEEL ------------ */
/* -------- SPINING WHEEL ------------ */
/* -------- SPINING WHEEL ------------ */
/* -------- SPINING WHEEL ------------ */
.ll-spinner {
    height: 450px;
    width: 450px;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    cursor: pointer;
    color: black;
}

.ll-spinner > img {
    height: auto;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ll-spinner--spin > img {
    transform-origin: center;
    transition: all 5s cubic-bezier(0.44, -0.205, 0, 1.13);
}

.ll-spinner__arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 23%;
    width: auto;
    aspect-ratio: 1;
    background-color: currentColor;
    border-radius: 50%;
}

.ll-spinner__arrow::after {
    position: absolute;
    content: '';
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 20%;
    rotate: 45deg;
    background-color: currentColor;
}

.ll-spinner__arrow i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 50%;
    width: 50%;
}

.ll-spinner__arrow i svg {
    height: 100%;
    width: auto;
}

[data-spinner-target] {
    display: none;
}


/* ------ Video ------ */
/* ------ Video ------ */
/* ------ Video ------ */
/* ------ Video ------ */
[data-gjs-type='ll-video'] {
    height: auto;
    width: 100%;
    max-width: 100%;
}

[data-gjs-type='ll-video'] iframe,
[data-gjs-type='ll-video'] video{
    width: 100%;
    height: 100%;
    min-width: 100%;
    height: 100%;
    padding:0;
    margin: 0;
    border: 0 !important;
    outline: 0 !important;
}


/* ------- CLICK EVENT -------- */
/* ------- CLICK EVENT -------- */
/* ------- CLICK EVENT -------- */
[data-ll-event] {
    cursor: pointer;
}

/* -------- CUSTOM CODE ------- */
/* -------- CUSTOM CODE ------- */
/* -------- CUSTOM CODE ------- */
div[data-gjs-type="custom-code"]{
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* -------- LINK ------- */
/* -------- LINK ------- */
/* -------- LINK ------- */
/* -------- LINK ------- */
*[data-ll-link] {
    text-decoration: none;
    color: unset;
    width: 100%;
}

/* ------------------------ TEXT CONTENT ------------------------ */
/* ------------------------ TEXT CONTENT ------------------------ */
/* ------------------------ TEXT CONTENT ------------------------ */
/* ------------------------ TEXT CONTENT ------------------------ */
[data-gjs-type="text"].text-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ------------------------ RSOC COLUMNS ------------------------ */
/* ------------------------ RSOC COLUMNS ------------------------ */
/* ------------------------ RSOC COLUMNS ------------------------ */
/* ------------------------ RSOC COLUMNS ------------------------ */
[data-gjs-type="rsoc-cols"] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-block: 10px;
    width: 100%;
}

[data-gjs-type="rsoc-cols"] > div {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media screen and (max-width: 993px) {
    [data-gjs-type="rsoc-cols"] {
        display: grid;
        grid-template-columns: 1fr;
    }
}
@font-face {
    font-family: 'webflow-icons';
    src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==") format('truetype');
    font-weight: normal;
    font-style: normal;
}
[class^="w-icon-"],
[class*=" w-icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'webflow-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.w-icon-slider-right:before {
    content: "\e600";
}
.w-icon-slider-left:before {
    content: "\e601";
}
.w-icon-nav-menu:before {
    content: "\e602";
}
.w-icon-arrow-down:before,
.w-icon-dropdown-toggle:before {
    content: "\e603";
}
.w-icon-file-upload-remove:before {
    content: "\e900";
}
.w-icon-file-upload-icon:before {
    content: "\e903";
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    height: 100%;
}
body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333;
}
img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
}
html.w-mod-touch * {
    background-attachment: scroll !important;
}
.w-block {
    display: block;
}
.w-inline-block {
    max-width: 100%;
    display: inline-block;
}
.w-clearfix:before,
.w-clearfix:after {
    content: " ";
    display: table;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2;
}
.w-clearfix:after {
    clear: both;
}
.w-hidden {
    display: none;
}
.w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0;
}
input.w-button {
    -webkit-appearance: button;
}
html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important;
}
.w-code-block {
    margin: unset;
}
pre.w-code-block code {
    all: inherit;
}
.w-optimization {
    display: contents;
}
.w-webflow-badge,
.w-webflow-badge > img {
    box-sizing: unset;
    width: unset;
    height: unset;
    max-height: unset;
    max-width: unset;
    min-height: unset;
    min-width: unset;
    margin: unset;
    padding: unset;
    float: unset;
    clear: unset;
    border: unset;
    border-radius: unset;
    background: unset;
    background-image: unset;
    background-position: unset;
    background-size: unset;
    background-repeat: unset;
    background-origin: unset;
    background-clip: unset;
    background-attachment: unset;
    background-color: unset;
    box-shadow: unset;
    transform: unset;
    transition: unset;
    direction: unset;
    font-family: unset;
    font-weight: unset;
    color: unset;
    font-size: unset;
    line-height: unset;
    font-style: unset;
    font-variant: unset;
    text-align: unset;
    letter-spacing: unset;
    text-decoration: unset;
    text-indent: unset;
    text-transform: unset;
    list-style-type: unset;
    text-shadow: unset;
    vertical-align: unset;
    cursor: unset;
    white-space: unset;
    word-break: unset;
    word-spacing: unset;
    word-wrap: unset;
}
.w-webflow-badge {
    position: fixed !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    color: #aaadb0 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    padding: 6px !important;
    font-size: 12px !important;
    line-height: 14px !important;
    text-decoration: none !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: unset !important;
    white-space: nowrap;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
.w-webflow-badge > img {
    position: unset;
    display: inline-block !important;
    visibility: unset !important;
    opacity: 1 !important;
    vertical-align: middle !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    margin-bottom: 10px;
}
h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px;
}
h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px;
}
h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px;
}
h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px;
}
h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
}
h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px;
}
p {
    margin-top: 0;
    margin-bottom: 10px;
}
blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px;
}
figure {
    margin: 0;
    margin-bottom: 10px;
}
figcaption {
    margin-top: 5px;
    text-align: center;
}
ul,
ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px;
}
.w-list-unstyled {
    padding-left: 0;
    list-style: none;
}
.w-embed:before,
.w-embed:after {
    content: " ";
    display: table;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2;
}
.w-embed:after {
    clear: both;
}
.w-video {
    width: 100%;
    position: relative;
    padding: 0;
}
.w-video iframe,
.w-video object,
.w-video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
fieldset {
    padding: 0;
    margin: 0;
    border: 0;
}
button,
[type='button'],
[type='reset'] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button;
}
.w-form {
    margin: 0 0 15px;
}
.w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd;
}
.w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede;
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.w-input,
.w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc;
}
.w-input::placeholder,
.w-select::placeholder {
    color: #999;
}
.w-input:focus,
.w-select:focus {
    border-color: #3898EC;
    outline: 0;
}
.w-input[disabled],
.w-select[disabled],
.w-input[readonly],
.w-select[readonly],
fieldset[disabled] .w-input,
fieldset[disabled] .w-select {
    cursor: not-allowed;
}
.w-input[disabled]:not(.w-input-disabled),
.w-select[disabled]:not(.w-input-disabled),
.w-input[readonly],
.w-select[readonly],
fieldset[disabled]:not(.w-input-disabled) .w-input,
fieldset[disabled]:not(.w-input-disabled) .w-select {
    background-color: #eeeeee;
}
textarea.w-input,
textarea.w-select {
    height: auto;
}
.w-select {
    background-color: #f3f3f3;
}
.w-select[multiple] {
    height: auto;
}
.w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px;
}
.w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px;
}
.w-radio:before,
.w-radio:after {
    content: " ";
    display: table;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2;
}
.w-radio:after {
    clear: both;
}
.w-radio-input {
    margin: 4px 0 0;
    line-height: normal;
    float: left;
    margin-left: -20px;
}
.w-radio-input {
    margin-top: 3px;
}
.w-file-upload {
    display: block;
    margin-bottom: 10px;
}
.w-file-upload-input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -100;
}
.w-file-upload-default,
.w-file-upload-uploading,
.w-file-upload-success {
    display: inline-block;
    color: #333333;
}
.w-file-upload-error {
    display: block;
    margin-top: 10px;
}
.w-file-upload-default.w-hidden,
.w-file-upload-uploading.w-hidden,
.w-file-upload-error.w-hidden,
.w-file-upload-success.w-hidden {
    display: none;
}
.w-file-upload-uploading-btn {
    display: flex;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    margin: 0;
    padding: 8px 12px;
    border: 1px solid #cccccc;
    background-color: #fafafa;
}
.w-file-upload-file {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    margin: 0;
    padding: 8px 9px 8px 11px;
    border: 1px solid #cccccc;
    background-color: #fafafa;
}
.w-file-upload-file-name {
    font-size: 14px;
    font-weight: normal;
    display: block;
}
.w-file-remove-link {
    margin-top: 3px;
    margin-left: 10px;
    width: auto;
    height: auto;
    padding: 3px;
    display: block;
    cursor: pointer;
}
.w-icon-file-upload-remove {
    margin: auto;
    font-size: 10px;
}
.w-file-upload-error-msg {
    display: inline-block;
    color: #ea384c;
    padding: 2px 0;
}
.w-file-upload-info {
    display: inline-block;
    line-height: 38px;
    padding: 0 12px;
}
.w-file-upload-label {
    display: inline-block;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    margin: 0;
    padding: 8px 12px;
    border: 1px solid #cccccc;
    background-color: #fafafa;
}
.w-icon-file-upload-icon,
.w-icon-file-upload-uploading {
    display: inline-block;
    margin-right: 8px;
    width: 20px;
}
.w-icon-file-upload-uploading {
    height: 20px;
}
.w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px;
}
.w-container:before,
.w-container:after {
    content: " ";
    display: table;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2;
}
.w-container:after {
    clear: both;
}
.w-container .w-row {
    margin-left: -10px;
    margin-right: -10px;
}
.w-row:before,
.w-row:after {
    content: " ";
    display: table;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2;
}
.w-row:after {
    clear: both;
}
.w-row .w-row {
    margin-left: 0;
    margin-right: 0;
}
.w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
}
.w-col .w-col {
    padding-left: 0;
    padding-right: 0;
}
.w-col-1 {
    width: 8.33333333%;
}
.w-col-2 {
    width: 16.66666667%;
}
.w-col-3 {
    width: 25%;
}
.w-col-4 {
    width: 33.33333333%;
}
.w-col-5 {
    width: 41.66666667%;
}
.w-col-6 {
    width: 50%;
}
.w-col-7 {
    width: 58.33333333%;
}
.w-col-8 {
    width: 66.66666667%;
}
.w-col-9 {
    width: 75%;
}
.w-col-10 {
    width: 83.33333333%;
}
.w-col-11 {
    width: 91.66666667%;
}
.w-col-12 {
    width: 100%;
}
.w-hidden-main {
    display: none !important;
}
@media screen and (max-width: 991px) {
    .w-container {
        max-width: 728px;
    }
    .w-hidden-main {
        display: inherit !important;
    }
    .w-hidden-medium {
        display: none !important;
    }
    .w-col-medium-1 {
        width: 8.33333333%;
    }
    .w-col-medium-2 {
        width: 16.66666667%;
    }
    .w-col-medium-3 {
        width: 25%;
    }
    .w-col-medium-4 {
        width: 33.33333333%;
    }
    .w-col-medium-5 {
        width: 41.66666667%;
    }
    .w-col-medium-6 {
        width: 50%;
    }
    .w-col-medium-7 {
        width: 58.33333333%;
    }
    .w-col-medium-8 {
        width: 66.66666667%;
    }
    .w-col-medium-9 {
        width: 75%;
    }
    .w-col-medium-10 {
        width: 83.33333333%;
    }
    .w-col-medium-11 {
        width: 91.66666667%;
    }
    .w-col-medium-12 {
        width: 100%;
    }
    .w-col-stack {
        width: 100%;
        left: auto;
        right: auto;
    }
}
@media screen and (max-width: 767px) {
    .w-hidden-main {
        display: inherit !important;
    }
    .w-hidden-medium {
        display: inherit !important;
    }
    .w-hidden-small {
        display: none !important;
    }
    .w-row,
    .w-container .w-row {
        margin-left: 0;
        margin-right: 0;
    }
    .w-col {
        width: 100%;
        left: auto;
        right: auto;
    }
    .w-col-small-1 {
        width: 8.33333333%;
    }
    .w-col-small-2 {
        width: 16.66666667%;
    }
    .w-col-small-3 {
        width: 25%;
    }
    .w-col-small-4 {
        width: 33.33333333%;
    }
    .w-col-small-5 {
        width: 41.66666667%;
    }
    .w-col-small-6 {
        width: 50%;
    }
    .w-col-small-7 {
        width: 58.33333333%;
    }
    .w-col-small-8 {
        width: 66.66666667%;
    }
    .w-col-small-9 {
        width: 75%;
    }
    .w-col-small-10 {
        width: 83.33333333%;
    }
    .w-col-small-11 {
        width: 91.66666667%;
    }
    .w-col-small-12 {
        width: 100%;
    }
}
@media screen and (max-width: 479px) {
    .w-container {
        max-width: none;
    }
    .w-hidden-main {
        display: inherit !important;
    }
    .w-hidden-medium {
        display: inherit !important;
    }
    .w-hidden-small {
        display: inherit !important;
    }
    .w-hidden-tiny {
        display: none !important;
    }
    .w-col {
        width: 100%;
    }
    .w-col-tiny-1 {
        width: 8.33333333%;
    }
    .w-col-tiny-2 {
        width: 16.66666667%;
    }
    .w-col-tiny-3 {
        width: 25%;
    }
    .w-col-tiny-4 {
        width: 33.33333333%;
    }
    .w-col-tiny-5 {
        width: 41.66666667%;
    }
    .w-col-tiny-6 {
        width: 50%;
    }
    .w-col-tiny-7 {
        width: 58.33333333%;
    }
    .w-col-tiny-8 {
        width: 66.66666667%;
    }
    .w-col-tiny-9 {
        width: 75%;
    }
    .w-col-tiny-10 {
        width: 83.33333333%;
    }
    .w-col-tiny-11 {
        width: 91.66666667%;
    }
    .w-col-tiny-12 {
        width: 100%;
    }
}
.w-widget {
    position: relative;
}
.w-widget-map {
    width: 100%;
    height: 400px;
}
.w-widget-map label {
    width: auto;
    display: inline;
}
.w-widget-map img {
    max-width: inherit;
}
.w-widget-map .gm-style-iw {
    text-align: center;
}
.w-widget-map .gm-style-iw > button {
    display: none !important;
}
.w-widget-twitter {
    overflow: hidden;
}
.w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: white;
    border: #758696 solid 1px;
    border-radius: 3px;
}
.w-widget-twitter-count-shim * {
    pointer-events: none;
    user-select: none;
}
.w-widget-twitter-count-shim .w-widget-twitter-count-inner {
    position: relative;
    font-size: 15px;
    line-height: 12px;
    text-align: center;
    color: #999;
    font-family: serif;
}
.w-widget-twitter-count-shim .w-widget-twitter-count-clear {
    position: relative;
    display: block;
}
.w-widget-twitter-count-shim.w--large {
    width: 36px;
    height: 28px;
}
.w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
    font-size: 18px;
    line-height: 18px;
}
.w-widget-twitter-count-shim:not(.w--vertical) {
    margin-left: 5px;
    margin-right: 8px;
}
.w-widget-twitter-count-shim:not(.w--vertical).w--large {
    margin-left: 6px;
}
.w-widget-twitter-count-shim:not(.w--vertical):before,
.w-widget-twitter-count-shim:not(.w--vertical):after {
    top: 50%;
    left: 0;
    border: solid transparent;
    content: ' ';
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}
.w-widget-twitter-count-shim:not(.w--vertical):before {
    border-color: rgba(117, 134, 150, 0);
    border-right-color: #5d6c7b;
    border-width: 4px;
    margin-left: -9px;
    margin-top: -4px;
}
.w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
    border-width: 5px;
    margin-left: -10px;
    margin-top: -5px;
}
.w-widget-twitter-count-shim:not(.w--vertical):after {
    border-color: rgba(255, 255, 255, 0);
    border-right-color: white;
    border-width: 4px;
    margin-left: -8px;
    margin-top: -4px;
}
.w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
    border-width: 5px;
    margin-left: -9px;
    margin-top: -5px;
}
.w-widget-twitter-count-shim.w--vertical {
    width: 61px;
    height: 33px;
    margin-bottom: 8px;
}
.w-widget-twitter-count-shim.w--vertical:before,
.w-widget-twitter-count-shim.w--vertical:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: ' ';
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}
.w-widget-twitter-count-shim.w--vertical:before {
    border-color: rgba(117, 134, 150, 0);
    border-top-color: #5d6c7b;
    border-width: 5px;
    margin-left: -5px;
}
.w-widget-twitter-count-shim.w--vertical:after {
    border-color: rgba(255, 255, 255, 0);
    border-top-color: white;
    border-width: 4px;
    margin-left: -4px;
}
.w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
    font-size: 18px;
    line-height: 22px;
}
.w-widget-twitter-count-shim.w--vertical.w--large {
    width: 76px;
}
.w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white;
}
.w-background-video > video {
    background-size: cover;
    background-position: 50% 50%;
    position: absolute;
    margin: auto;
    width: 100%;
    height: 100%;
    right: -100%;
    bottom: -100%;
    top: -100%;
    left: -100%;
    object-fit: cover;
    z-index: -100;
}
.w-background-video > video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}
.w-background-video--control {
    position: absolute;
    bottom: 1em;
    right: 1em;
    background-color: transparent;
    padding: 0;
}
.w-background-video--control > [hidden] {
    display: none !important;
}
.w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #dddddd;
    clear: both;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
}
.w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap;
}
.w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left;
}
.w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
}
.w-slider-nav.w-round > div {
    border-radius: 100%;
}
.w-slider-nav.w-num > div {
    width: auto;
    height: auto;
    padding: 0.2em 0.5em;
    font-size: inherit;
    line-height: inherit;
}
.w-slider-nav.w-shadow > div {
    box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
}
.w-slider-nav-invert {
    color: #fff;
}
.w-slider-nav-invert > div {
    background-color: rgba(34, 34, 34, 0.4);
}
.w-slider-nav-invert > div.w-active {
    background-color: #222;
}
.w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    transition: background-color 100ms, color 100ms;
}
.w-slider-dot.w-active {
    background-color: #fff;
}
.w-slider-dot:focus {
    outline: none;
    box-shadow: 0px 0px 0px 2px #fff;
}
.w-slider-dot:focus.w-active {
    box-shadow: none;
}
.w-slider-arrow-left,
.w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: white;
    font-size: 40px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
    user-select: none;
}
.w-slider-arrow-left [class^='w-icon-'],
.w-slider-arrow-right [class^='w-icon-'],
.w-slider-arrow-left [class*=' w-icon-'],
.w-slider-arrow-right [class*=' w-icon-'] {
    position: absolute;
}
.w-slider-arrow-left:focus,
.w-slider-arrow-right:focus {
    outline: 0;
}
.w-slider-arrow-left {
    z-index: 3;
    right: auto;
}
.w-slider-arrow-right {
    z-index: 4;
    left: auto;
}
.w-icon-slider-left,
.w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em;
}
.w-slider-aria-label {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.w-slider-force-show {
    display: block !important;
}
.w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900;
}
.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
}
.w-dropdown-toggle {
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px;
}
.w-dropdown-toggle:focus {
    outline: 0;
}
.w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em;
}
.w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%;
}
.w-dropdown-list.w--open {
    display: block;
}
.w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222;
}
.w-dropdown-link.w--current {
    color: #0082f3;
}
.w-dropdown-link:focus {
    outline: 0;
}
@media screen and (max-width: 767px) {
    .w-nav-brand {
        padding-left: 10px;
    }
}
/**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`.
 */
/**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox.
 */
.w-lightbox-backdrop {
    cursor: auto;
    font-style: normal;
    letter-spacing: normal;
    list-style: disc;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    /* 1 */
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0);
    /* 2 */
}
/**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll.
 */
.w-lightbox-backdrop,
.w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0;
}
.w-lightbox-view:before {
    content: "";
    height: 100vh;
}
/* .w-lightbox-content */
.w-lightbox-group,
.w-lightbox-group .w-lightbox-view,
.w-lightbox-group .w-lightbox-view:before {
    height: 86vh;
}
.w-lightbox-frame,
.w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle;
}
/*
 * 1. Remove default margin set by user-agent on the <figure> element.
 */
.w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */
}
.w-lightbox-group .w-lightbox-figure {
    cursor: pointer;
}
/**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling.
 */
.w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none;
}
/**
 * 1. Reset if style is set by user on "All Images"
 */
.w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh;
}
.w-lightbox-group .w-lightbox-image {
    max-height: 86vh;
}
.w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0.5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==");
}
.w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+");
}
/*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer)
 */
.w-lightbox-close {
    right: 0;
    height: 2.6em;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px;
}
/**
 * 1. All IE versions add extra space at the bottom without this.
 */
.w-lightbox-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}
/*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior.
 */
.w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    box-sizing: content-box;
    /* 1 */
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    /* 2 */
}
.w-lightbox-active {
    opacity: 0.3;
}
.w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden;
}
.w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0;
}
.w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
/*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track.
 */
.w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin 0.8s infinite linear;
    animation: spin 0.8s infinite linear;
}
.w-lightbox-spinner:after {
    content: "";
    position: absolute;
    top: -4px;
    right: -4px;
    bottom: -4px;
    left: -4px;
    border: 3px solid transparent;
    border-bottom-color: #fff;
    border-radius: 50%;
}
/*
 * Utility classes
 */
.w-lightbox-hide {
    display: none;
}
.w-lightbox-noscroll {
    overflow: hidden;
}
@media (min-width: 768px) {
    .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh;
    }
    .w-lightbox-view,
    .w-lightbox-view:before {
        height: 96vh;
    }
    /* .w-lightbox-content */
    .w-lightbox-group,
    .w-lightbox-group .w-lightbox-view,
    .w-lightbox-group .w-lightbox-view:before {
        height: 84vh;
    }
    .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh;
    }
    .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh;
    }
    .w-lightbox-left,
    .w-lightbox-right {
        display: block;
        opacity: 0.5;
    }
    .w-lightbox-close {
        opacity: 0.8;
    }
    .w-lightbox-control:hover {
        opacity: 1;
    }
}
.w-lightbox-inactive,
.w-lightbox-inactive:hover {
    opacity: 0;
}
.w-richtext:before,
.w-richtext:after {
    content: " ";
    display: table;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2;
}
.w-richtext:after {
    clear: both;
}
.w-richtext[contenteditable="true"]:before,
.w-richtext[contenteditable="true"]:after {
    white-space: initial;
}
.w-richtext ol,
.w-richtext ul {
    overflow: hidden;
}
.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after,
.w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:after {
    outline: 2px solid #2895f7;
}
.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div,
.w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7;
}
.w-richtext figure.w-richtext-figure-type-video > div:after,
.w-richtext figure[data-rt-type="video"] > div:after {
    content: '';
    position: absolute;
    display: none;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.w-richtext figure {
    position: relative;
    max-width: 60%;
}
.w-richtext figure > div:before {
    cursor: default!important;
}
.w-richtext figure img {
    width: 100%;
}
.w-richtext figure figcaption.w-richtext-figcaption-placeholder {
    opacity: 0.6;
}
.w-richtext figure div {
    /* fix incorrectly sized selection border in the data manager */
    font-size: 0px;
    color: transparent;
}
.w-richtext figure.w-richtext-figure-type-image,
.w-richtext figure[data-rt-type="image"] {
    display: table;
}
.w-richtext figure.w-richtext-figure-type-image > div,
.w-richtext figure[data-rt-type="image"] > div {
    display: inline-block;
}
.w-richtext figure.w-richtext-figure-type-image > figcaption,
.w-richtext figure[data-rt-type="image"] > figcaption {
    display: table-caption;
    caption-side: bottom;
}
.w-richtext figure.w-richtext-figure-type-video,
.w-richtext figure[data-rt-type="video"] {
    width: 60%;
    height: 0;
}
.w-richtext figure.w-richtext-figure-type-video iframe,
.w-richtext figure[data-rt-type="video"] iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.w-richtext figure.w-richtext-figure-type-video > div,
.w-richtext figure[data-rt-type="video"] > div {
    width: 100%;
}
.w-richtext figure.w-richtext-align-center {
    margin-right: auto;
    margin-left: auto;
    clear: both;
}
.w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div,
.w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
    max-width: 100%;
}
.w-richtext figure.w-richtext-align-normal {
    clear: both;
}
.w-richtext figure.w-richtext-align-fullwidth {
    width: 100%;
    max-width: 100%;
    text-align: center;
    clear: both;
    display: block;
    margin-right: auto;
    margin-left: auto;
}
.w-richtext figure.w-richtext-align-fullwidth > div {
    display: inline-block;
    /* padding-bottom is used for aspect ratios in video figures
        we want the div to inherit that so hover/selection borders in the designer-canvas
        fit right*/
    padding-bottom: inherit;
}
.w-richtext figure.w-richtext-align-fullwidth > figcaption {
    display: block;
}
.w-richtext figure.w-richtext-align-floatleft {
    float: left;
    margin-right: 15px;
    clear: none;
}
.w-richtext figure.w-richtext-align-floatright {
    float: right;
    margin-left: 15px;
    clear: none;
}
.w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000;
}
.w-nav:before,
.w-nav:after {
    content: " ";
    display: table;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2;
}
.w-nav:after {
    clear: both;
}
.w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333;
}
.w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}
.w-nav-link.w--current {
    color: #0082f3;
}
.w-nav-menu {
    position: relative;
    float: right;
}
[data-nav-menu-open] {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #C8C8C8;
    text-align: center;
    overflow: visible;
    min-width: 200px;
}
.w--nav-link-open {
    display: block;
    position: relative;
}
.w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
}
.w-nav-overlay [data-nav-menu-open] {
    top: 0;
}
.w-nav[data-animation='over-left'] .w-nav-overlay {
    width: auto;
}
.w-nav[data-animation='over-left'] .w-nav-overlay,
.w-nav[data-animation='over-left'] [data-nav-menu-open] {
    right: auto;
    z-index: 1;
    top: 0;
}
.w-nav[data-animation='over-right'] .w-nav-overlay {
    width: auto;
}
.w-nav[data-animation='over-right'] .w-nav-overlay,
.w-nav[data-animation='over-right'] [data-nav-menu-open] {
    left: auto;
    z-index: 1;
    top: 0;
}
.w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
    user-select: none;
}
.w-nav-button:focus {
    outline: 0;
}
.w-nav-button.w--open {
    background-color: #C8C8C8;
    color: white;
}
.w-nav[data-collapse='all'] .w-nav-menu {
    display: none;
}
.w-nav[data-collapse='all'] .w-nav-button {
    display: block;
}
.w--nav-dropdown-open {
    display: block;
}
.w--nav-dropdown-toggle-open {
    display: block;
}
.w--nav-dropdown-list-open {
    position: static;
}
@media screen and (max-width: 991px) {
    .w-nav[data-collapse='medium'] .w-nav-menu {
        display: none;
    }
    .w-nav[data-collapse='medium'] .w-nav-button {
        display: block;
    }
}
@media screen and (max-width: 767px) {
    .w-nav[data-collapse='small'] .w-nav-menu {
        display: none;
    }
    .w-nav[data-collapse='small'] .w-nav-button {
        display: block;
    }
    .w-nav-brand {
        padding-left: 10px;
    }
}
@media screen and (max-width: 479px) {
    .w-nav[data-collapse='tiny'] .w-nav-menu {
        display: none;
    }
    .w-nav[data-collapse='tiny'] .w-nav-button {
        display: block;
    }
}
.w-tabs {
    position: relative;
}
.w-tabs:before,
.w-tabs:after {
    content: " ";
    display: table;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2;
}
.w-tabs:after {
    clear: both;
}
.w-tab-menu {
    position: relative;
}
.w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222222;
    background-color: #dddddd;
}
.w-tab-link.w--current {
    background-color: #C8C8C8;
}
.w-tab-link:focus {
    outline: 0;
}
.w-tab-content {
    position: relative;
    display: block;
    overflow: hidden;
}
.w-tab-pane {
    position: relative;
    display: none;
}
.w--tab-active {
    display: block;
}
@media screen and (max-width: 479px) {
    .w-tab-link {
        display: block;
    }
}
.w-ix-emptyfix:after {
    content: "";
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.w-dyn-empty {
    padding: 10px;
    background-color: #dddddd;
}
.w-dyn-hide {
    display: none !important;
}
.w-dyn-bind-empty {
    display: none !important;
}
.w-condition-invisible {
    display: none !important;
}
.wf-layout-layout {
    display: grid;
}

@font-face {
    font-family: Inria Sans;
    src: url('../fonts/inriasans-bold-webfont.woff2') format("woff2"), url('../fonts/inriasans-bold-webfont.woff') format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Inria Sans;
    src: url('../fonts/inriasans-lightitalic-webfont.woff2') format("woff2"), url('../fonts/inriasans-lightitalic-webfont.woff') format("woff");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: Inria Sans;
    src: url('../fonts/inriasans-regular-webfont.woff2') format("woff2"), url('../fonts/inriasans-regular-webfont.woff') format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Inria Sans;
    src: url('../fonts/inriasans-bolditalic-webfont.woff2') format("woff2"), url('../fonts/inriasans-bolditalic-webfont.woff') format("woff");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: Inria Sans;
    src: url('../fonts/inriasans-italic-webfont.woff2') format("woff2"), url('../fonts/inriasans-italic-webfont.woff') format("woff");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: Inria Sans;
    src: url('../fonts/inriasans-light-webfont.woff2') format("woff2"), url('../fonts/inriasans-light-webfont.woff') format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Inria Serif;
    src: url('../fonts/inriaserif-bold-webfont.woff2') format("woff2"), url('../fonts/inriaserif-bold-webfont.woff') format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Inter;
    src: url('../fonts/Inter-Bold.woff2') format("woff2"), url('../fonts/Inter-Bold.woff') format("woff"), url('../fonts/Inter-Bold.ttf') format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Niramit;
    src: url('../fonts/Niramit-BoldItalic.woff2') format("woff2"), url('../fonts/Niramit-BoldItalic.woff') format("woff"), url('../fonts/Niramit-BoldItalic.ttf') format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: Niramit;
    src: url('../fonts/Niramit-Italic.woff2') format("woff2"), url('../fonts/Niramit-Italic.woff') format("woff"), url('../fonts/Niramit-Italic.ttf') format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: Niramit;
    src: url('../fonts/Niramit-Regular.woff2') format("woff2"), url('../fonts/Niramit-Regular.woff') format("woff"), url('../fonts/Niramit-Regular.ttf') format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Niramit;
    src: url('../fonts/Niramit-Bold.woff2') format("woff2"), url('../fonts/Niramit-Bold.woff') format("woff"), url('../fonts/Niramit-Bold.ttf') format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Nobile;
    src: url('../fonts/Nobile-Regular.woff2') format("woff2"), url('../fonts/Nobile-Regular.woff') format("woff"), url('../fonts/Nobile-Regular.ttf') format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Nobile;
    src: url('../fonts/Nobile-BoldItalic.woff2') format("woff2"), url('../fonts/Nobile-BoldItalic.woff') format("woff"), url('../fonts/Nobile-BoldItalic.ttf') format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: Nobile;
    src: url('../fonts/Nobile-Italic.woff2') format("woff2"), url('../fonts/Nobile-Italic.woff') format("woff"), url('../fonts/Nobile-Italic.ttf') format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: Nobile;
    src: url('../fonts/Nobile-Bold.woff2') format("woff2"), url('../fonts/Nobile-Bold.woff') format("woff"), url('../fonts/Nobile-Bold.ttf') format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Nobile;
    src: url('../fonts/Nobile-MediumItalic.woff2') format("woff2"), url('../fonts/Nobile-MediumItalic.woff') format("woff"), url('../fonts/Nobile-MediumItalic.ttf') format("truetype");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: Nobile;
    src: url('../fonts/Nobile-Medium.woff2') format("woff2"), url('../fonts/Nobile-Medium.woff') format("woff"), url('../fonts/Nobile-Medium.ttf') format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --white: white;
    --black: black;
}

.w-layout-layout {
    grid-row-gap: 20px;
    grid-column-gap: 20px;
    grid-auto-columns: 1fr;
    justify-content: center;
    padding: 20px;
}

.w-layout-cell {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.w-layout-blockcontainer {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

@media screen and (max-width: 991px) {
    .w-layout-blockcontainer {
        max-width: 728px;
    }
}

@media screen and (max-width: 767px) {
    .w-layout-blockcontainer {
        max-width: none;
    }
}

.tgl-header {
    background-color: #fff;
    justify-content: center;
    align-items: center;
    display: flex;
}

.tgl-header.white-header {
    background-color: #fff;
    border-bottom: 1px solid #0000001a;
}

.tgl-content {
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    display: flex;
}

.tgl-content-wrapper {
    justify-content: center;
    align-items: flex-start;
    width: auto;
    margin-top: 2em;
    display: flex;
    position: relative;
}

.tgl-footer {
    background-color: #220036;
    justify-content: center;
    align-items: center;
    margin-top: 3em;
    display: flex;
}

.tgl-footer.footer-white {
    background-color: #fff;
    border-top: 1px solid #0000001a;
}

.tgl-header-wrapper {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding-top: 1em;
    padding-bottom: 1em;
    display: flex;
}

.tgl-header-wrapper.white-header {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
}

.logo {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-right: 30px;
    font-family: Montserrat, sans-serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 900;
    line-height: 100%;
}

.tgl-advertorial {
    color: #000;
    margin-bottom: 0;
    font-family: Montserrat, sans-serif;
}

.tgl-advertorial.black {
    color: #000;
}

.tgl-content-main {
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    max-width: 70%;
    display: flex;
}

.tgl-content-sidebar {
    width: 25%;
    position: relative;
    top: 0;
}

.tgl-main-head {
    color: #000;
    margin-top: 0;
    font-family: Open Sans, sans-serif;
    line-height: 110%;
}

.tgl-main-head.new-size {
    line-height: 45%;
}

.tgl-p {
    color: #000;
    margin-top: 10px;
    margin-bottom: 20px;
    font-family: Open Sans, sans-serif;
    font-size: 18px;
    line-height: 150%;
}

.tgl-p.update-msg {
    margin-bottom: 0;
}

.tgl-p.sources {
    font-size: 11px;
}

.tgl-p.mb-0 {
    margin-bottom: 0;
}

.tgl-p.mb-0 {
    color: #000;
    margin-top: 1em;
    margin-bottom: 0;
}

.tgl-p.mb-0.doc-review-p {
    color: #045485;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    line-height: 130%;
}

.tgl-p.mb-0.doc-review-p.mb-10 {
    margin-bottom: 10px;
}

.tgl-p.mb-0.fw-b {
    font-weight: 600;
}

.tgl-p.mb-0.fw-b.c-black {
    color: #000;
}

.tgl-p.highlight-red {
    color: #e52e00;
    font-weight: 700;
}

.tgl-p.highlight-red.mb-10 {
    margin-bottom: 10px;
}

.tgl-hero-img {
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0;
}

.tgl-h {
    color: #000;
    margin-top: 30px;
    margin-bottom: 20px;
    font-family: Open Sans, sans-serif;
    font-size: 26px;
    line-height: 120%;
}

.bold-text {
    color: #000;
    font-family: Open Sans, sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 100%;
}

.bold-text-2 {
    font-family: Open Sans, sans-serif;
}

.tgl-update-section {
    color: #000;
    background-color: #feffb6;
    border: 1px dashed #0000004d;
    border-radius: 5px;
    padding: 1em 2em;
}

.tgl-update-section.new-color {
    background-color: #e3e3f1;
}

.tgl-update-section.new-color.yelloe-color {
    background-color: #fff7df;
    border-style: none;
    margin-bottom: 1em;
    padding-top: 2em;
    padding-bottom: 2em;
}

.tgl-update-section.new-color.yelloe-color.new-color-bk {
    background-color: #f5ffa5;
}

.tgl-update-section.new-color.yelloe-color.new-color-bk.new-yellow-bk.new-yel-chn {
    background-color: #feffdb;
}

.tgl-update-section.new-color.green-color {
    background-color: #ffe6f0;
    padding-top: 2em;
    padding-bottom: 2em;
}

.tgl-update-section.new-color.green-color.new-yellow {
    background-color: #feffdb;
}

.image {
    margin-bottom: 20px;
}

.tgl-cta-btn {
    color: #fff;
    text-align: center;
    cursor: pointer;
    background-color: #00b403;
    border: 2px solid #00b403;
    border-radius: 5px;
    width: 100%;
    margin-top: 1em;
    margin-bottom: 2em;
    padding-top: .7em;
    padding-bottom: .7em;
    font-family: Open Sans, sans-serif;
    font-size: 21px;
    line-height: 100%;
    transition: all .4s cubic-bezier(.86, 0, .07, 1);
}

.tgl-cta-btn:hover {
    color: #00b403;
    background-color: #0000;
    border: 2px solid #00b403;
}

.tgl-cta-btn.sidebar-cta-btn {
    width: 90%;
    margin-bottom: 1em;
    padding: .5em;
}

.tgl-footer-wrapper {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    padding-top: 3em;
    padding-bottom: 3em;
    font-family: Open Sans, sans-serif;
    display: flex;
}

.tgl-footer-wrapper.footer-white {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
}

.tgl-logo-links {
    align-items: center;
    display: flex;
}

.tgl-footer-link {
    color: #b9b9b9;
    text-transform: uppercase;
    margin-left: 5px;
    margin-right: 5px;
    font-family: Open Sans, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
}

.paragraph {
    color: gray;
    margin-top: 1em;
    margin-bottom: 0;
    font-family: Open Sans, sans-serif;
    font-size: 16px;
    line-height: 120%;
}

.sidebar-inner {
    border: 1px solid #0000001a;
    flex-direction: column;
    align-items: center;
    width: 300px;
    margin-top: 0;
    display: flex;
    position: sticky;
    top: 30px;
    overflow: hidden;
}

.sidebar-inner.new-color {
    background-color: #fff;
}

.heading {
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
    font-family: Open Sans, sans-serif;
    font-size: 28px;
    line-height: 100%;
}

.tgl-express-shipping {
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    padding: 10px;
    display: flex;
    position: absolute;
    inset: 0% 0 auto auto;
}

.tgl-express-shipping.new-color {
    background-color: #5931f4;
    border-width: 0;
    border-color: #fff;
    border-radius: 0;
    width: 100%;
}

.tgl-es-country-flag {
    display: none;
}

.paragraph-2 {
    color: #000;
    margin-bottom: 0;
    margin-left: 15px;
    font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
    display: none;
}

.image-2 {
    max-height: 25px;
}

.tgl-banner-img-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 1.5em;
    display: flex;
    position: relative;
}

.tgl-sidebar-p {
    margin-left: 15px;
    margin-right: 15px;
    font-family: Open Sans, sans-serif;
    font-size: 18px;
    line-height: 130%;
}

.bold-text-3 {
    font-size: 16px;
}

.tgl-tag {
    background-color: #000;
    border-radius: 100px;
    align-items: center;
    margin-bottom: 1.5em;
    padding: .5em 1em;
    display: flex;
}

.image-3 {
    max-height: 25px;
}

.paragraph-3 {
    color: #fff;
    margin-bottom: 0;
    margin-left: .5em;
    font-family: Oswald, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
}

.bold-text-4 {
    font-size: 44px;
    font-weight: 700;
    line-height: 110%;
}

.tgl-author-box {
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
    display: flex;
}

.tgl-author-box.mar-pad-new {
    justify-content: flex-start;
    align-items: center;
}

.tgl-author-box.pad-mar-left, .tgl-author-box.spacing-adjust-left {
    margin-left: -10px;
}

.tgl-author-img {
    max-height: 50px;
}

.paragraph-4 {
    color: #7c7c7c;
    margin-bottom: 0;
    margin-left: 10px;
    font-family: Open Sans, sans-serif;
    font-size: 18px;
}

.tgl-social-links {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 1em;
    margin-bottom: 1em;
    display: flex;
}

.tgl-social-link {
    background-color: #157dc3;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    width: 32%;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
}

.tgl-social-link.twitter {
    background-color: #1d9bf0;
}

.tgl-social-link.url-link {
    background-color: #8a8f92;
}

.image-4 {
    max-height: 20px;
}

.image-5 {
    width: 100%;
}

.tgl-mobile-cta-section {
    display: none;
}

.image-6 {
    margin-bottom: 2em;
}

.image-6.mobile {
    display: none;
}

.hg-v2-header {
    border-bottom: 1px solid #0000001a;
    justify-content: center;
    align-items: center;
    display: flex;
}

.eq-v2-header-wrapper {
    padding-top: 1em;
    padding-bottom: 1em;
}

.hg-logo {
    max-height: 50px;
}

.eq-v2-author-name {
    color: #929292;
    margin-bottom: 0;
    font-family: Lato, sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.eq-v2-author-img {
    max-height: 40px;
}

.cta-claim-box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
}

.cta-claim-box.new-ver {
    grid-column-gap: 11px;
    grid-row-gap: 11px;
    background-color: #7eac4f;
    padding-left: 20px;
    padding-right: 20px;
}

.cta-claim-box.new-ver.green {
    background-color: #daf6e3;
    padding: 3em;
}

.cta-claim-box.new-ver.no-clor-new {
    background-color: #ddd0;
}

.text-span-5 {
    background-color: #eeff85;
}

.button {
    color: #feffe4;
    text-align: center;
    letter-spacing: 2.148px;
    text-transform: uppercase;
    background-color: #04c100;
    border: 2px solid #04c100;
    border-radius: 10px;
    padding: 15px 2em;
    font-family: Lato, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    transition: all .4s;
}

.button:hover {
    color: #000;
    background-color: #04c10000;
    border-width: 2px;
}

.button.mid-article-button {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 14px;
}

.button.mid-article-button.mb-0 {
    letter-spacing: 0;
    margin-top: 0;
    font-size: 16px;
}

.progress-bar {
    width: 100%;
}

.eq-v2-hashtag {
    color: #000;
    margin-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
}

.eq-v2-preamble {
    color: #000;
    text-align: center;
    font-family: Lato, sans-serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 130%;
}

.swiper-wrapper {
    align-items: center;
    width: 100%;
    height: auto;
    display: flex;
    overflow: hidden;
}

.swiper-slide {
    flex: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
}

.swiper-slide.swiper-custom {
    position: relative;
}

.slider-substrate {
    z-index: 0;
    position: absolute;
    inset: 0%;
}

.eq-v2-hashtags {
    background-color: #eeff85;
    border-radius: 100px;
    align-items: center;
    margin-top: 1em;
    margin-bottom: 1em;
    padding: .5em 2em;
    display: flex;
}

.eq-v2-heading {
    color: #000;
    text-align: center;
    margin-top: 1em;
    margin-bottom: .5em;
    font-family: Lato, sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 120%;
}

.eq-v2-heading.custom-spacing {
    margin-top: 0;
}

.claim-p {
    text-align: center;
    width: 80%;
    margin-bottom: 25px;
    font-family: Lato, sans-serif;
    font-size: 18px;
    line-height: 130%;
}

.bold-text-5 {
    font-weight: 900;
}

.t-author-name {
    color: #000;
    margin-bottom: 0;
    font-family: Lato, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
}

.hg-v2-main {
    justify-content: center;
    align-items: center;
    display: flex;
}

.link-3 {
    font-weight: 700;
}

.cta-box-inner {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
    justify-content: space-between;
    display: flex;
}

.swiper-button-next {
    position: absolute;
    inset: 0% 0% 0% auto;
}

.t-info {
    color: #b9b9b9;
    margin-bottom: 0;
    font-family: Lato, sans-serif;
}

.paragraph-5 {
    color: #929292;
    margin-bottom: 0;
    font-family: Lato, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
}

.text-span-4 {
    font-weight: 900;
}

.eq-v2-author {
    align-items: center;
    margin-top: 1em;
    margin-bottom: 1em;
    display: flex;
}

.image-7 {
    max-width: 45%;
}

.stars-rating {
    min-height: 20px;
}

.eq-v2-hero-img {
    width: 100%;
    margin-top: 1em;
    margin-bottom: 2em;
}

.hg-slider-box {
    width: 100%;
    margin-bottom: 2em;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.eq-v2-p {
    color: #000;
    margin-bottom: 10px;
    font-family: Lato, sans-serif;
    font-size: 18px;
    line-height: 150%;
}

.eq-v2-p.sources {
    margin-top: 20px;
    font-size: 9px;
}

.eq-v2-p.new-font {
    font-family: Montserrat, sans-serif;
    font-size: 18px;
}

.testimonial {
    color: #000;
    background-color: #f2faf3;
    border: 1px solid #0000001a;
    border-radius: 5px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 50%;
    max-height: 500px;
    padding: 2em 1.5em;
    display: flex;
}

.testimonial.testimonial-v2 {
    flex-direction: column;
    align-items: flex-start;
    max-width: 49%;
}

.testimonial.new-align-v {
    flex-flow: column;
    justify-content: flex-start;
    max-width: 100%;
}

.testimonial-author-img {
    max-height: 70px;
    margin-bottom: 0;
}

.testimonial-author-img.t-a-off {
    display: none;
}

.t-content {
    text-align: left;
    flex-flow: column;
    margin-top: 20px;
    font-family: Lato, sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 130%;
    display: flex;
}

.t-content.t-content-v2 {
    text-align: left;
}

.claim-h {
    color: #fff;
    text-align: center;
    font-family: Lato, sans-serif;
    font-size: 28px;
    line-height: 120%;
}

.swiper-button-prev {
    position: absolute;
    inset: 0% auto 0% 0%;
}

.eq-v2-h2 {
    color: #000;
    margin-bottom: 30px;
    font-family: Lato, sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 100%;
}

.testimonials-box {
    grid-column-gap: 0px;
    grid-row-gap: 14px;
    flex-wrap: wrap;
    place-content: stretch space-between;
    display: flex;
}

.swiper {
    width: 100%;
    position: absolute;
    inset: 0%;
}

.swiper.swiper-custom {
    z-index: 1;
    position: relative;
}

.eq-author-info {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 15px;
    display: flex;
}

.cta-box {
    background-color: #feffe4;
    width: 100%;
    margin-top: 20px;
    padding: 5em 2em;
    position: relative;
}

.eq-v2-content {
    flex-direction: column;
    align-items: center;
    width: 80%;
    display: flex;
}

.eq-v2-content.align-left {
    text-align: center;
    justify-content: flex-start;
    align-items: flex-start;
}

.eq-v2-main-wrapper {
    border-bottom: 1px solid #0000001a;
    border-left: 1px solid #0000001a;
    border-right: 1px solid #0000001a;
    flex-direction: column;
    align-items: center;
    width: 60%;
    padding-bottom: 5em;
    display: flex;
}

.slider-img {
    object-fit: contain;
    width: 100%;
    max-width: none;
}

.slider-img.nlc-img {
    width: 35%;
}

.slider-img.last-img {
    width: 50%;
}

.slider-img.substrate {
    opacity: 0;
    height: 100%;
    position: relative;
}

.hg-v2-footer {
    justify-content: center;
    align-items: center;
    display: flex;
}

.eq-v2-footer-wrapper {
    border-left: 1px solid #0000001a;
    border-right: 1px solid #0000001a;
    justify-content: space-between;
    align-items: center;
    width: 60%;
    padding: 2em 3em;
    display: flex;
}

.eq-v2-footer-logo {
    max-height: 30px;
}

.eq-v2-footer-links {
    color: #000;
    display: flex;
}

.eq-v2-footer-link {
    color: #000;
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    text-decoration: none;
}

.eq-v2-footer-divider {
    margin-bottom: 0;
    padding-left: 1em;
    padding-right: 1em;
    font-family: Montserrat, sans-serif;
    font-size: 12px;
}

.text-span-6 {
    background-color: #eeff85;
}

.image-8 {
    max-height: 70px;
}

.image-8.header-logo-fi {
    max-height: 35px;
}

.image-9 {
    max-height: 30px;
    margin-right: 30px;
}

.image-10 {
    margin-bottom: 1em;
}

.image-11 {
    margin-bottom: 2em;
}

.s-video {
    z-index: 0;
    min-width: 100%;
    position: absolute;
}

.background-video, .background-video-2 {
    width: 100%;
}

.text-span-7 {
    background-color: #eeff85;
}

.text-span-8 {
    color: #fff;
    background-color: #000;
    padding: 2px 5px 3px;
    font-size: 21px;
    display: inline-block;
}

.button-2 {
    color: #fff;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    background-color: #000;
    border: 2px solid #000;
    margin-top: 2em;
    margin-left: auto;
    margin-right: auto;
    padding: 1em 3em;
    font-family: Lato, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    transition: all .4s;
}

.button-2:hover {
    color: #000;
    background-color: #0000;
}

.red-bold-price {
    color: #f50707;
}

.bold-red {
    color: #ec0b0b;
}

.as-seen-on-box {
    flex-direction: column;
    align-items: center;
    margin-top: -10px;
    margin-bottom: 20px;
    display: flex;
}

.as-seen-on-tag {
    background-color: #000;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding-top: 5px;
    padding-left: 1em;
    padding-right: 1em;
    display: flex;
}

.paragraph-6 {
    color: #fff;
    letter-spacing: 5px;
    margin-bottom: 3px;
    font-family: Lato, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
}

.aso-img-box {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    border: 1px solid #0000001a;
    border-radius: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 1.25em 1em;
    display: flex;
}

.aso-img-item {
    max-height: 30px;
}

.trustpilot-rating {
    max-height: 75px;
    margin-top: 2em;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.advertorial {
    color: #8d8d8d;
    margin-top: 2em;
    margin-bottom: 5px;
}

.red-bold {
    color: red;
}

.background-video-3 {
    width: 100%;
    height: 100%;
}

.mid-article-img.mobile {
    display: none;
}

.red-text {
    color: red;
}

.hs-layout-header-wrapper {
    border-bottom: 1px solid #0000001a;
    justify-content: center;
    align-items: center;
    padding-top: 1em;
    padding-bottom: 1em;
    display: flex;
}

.image-16 {
    max-height: 40px;
}

.hs-layout-content {
    justify-content: center;
    align-items: center;
    display: flex;
}

.hs-layout-main-content {
    width: 50%;
    margin-top: 3em;
}

.heading-10 {
    font-family: Lato, sans-serif;
}

.paragraph-9 {
    font-family: Lato, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

.heading-7 {
    margin-top: 20px;
    font-family: Lato, sans-serif;
}

.hs-layout-footer {
    border-top: 1px solid #0000001a;
    justify-content: center;
    margin-top: 3em;
    display: flex;
}

.hs-layout-footer-wrapper {
    padding-top: 3em;
    padding-bottom: 3em;
}

.image-17 {
    text-align: center;
    max-height: 30px;
    display: inline-block;
}

.hs-footer-links {
    margin-top: 1em;
}

.hs-footer-link {
    color: #000;
    margin-left: 5px;
    margin-right: 5px;
    font-family: Lato, sans-serif;
    text-decoration: none;
}

.paragraph-10 {
    font-family: Lato, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

.image-18 {
    max-height: 30px;
    margin-right: 30px;
}

.image-18.de-logo.fi-footer-logo {
    max-height: 20px;
}

.eq-v2-testimonial-inside-article {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    border-top: 1px solid #0000001a;
    border-bottom: 1px #0000001a;
    flex-flow: row;
    width: 100%;
    margin-bottom: 1.5em;
    padding: 2em .5em;
    display: flex;
}

.eq-v2-testimonial-inside-article.new-style {
    flex-flow: column;
}

.eq-v2-testimonial-inside-article.top-mar-adj {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    background-color: #e0ffe7;
    margin-top: 2em;
    padding-left: 2em;
    padding-right: 2em;
}

.t-author-img {
    max-height: 75px;
}

.t-body.new-alignment {
    text-align: left;
}

.t-body-author-name {
    color: #000;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Open Sans, sans-serif;
    font-size: 24px;
    line-height: 90%;
}

.t-body-author-name.new-alignment {
    text-align: left;
}

.t-body-author-name.top-space {
    margin-top: 10px;
}

.t-body-stars-rating {
    min-height: 20px;
}

.t-body-testimonial {
    color: #000;
    margin-top: 10px;
    margin-bottom: 0;
    font-family: Inria Sans, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 150%;
}

.foot-size {
    color: #b0b0b0;
    font-size: 18px;
    font-weight: 400;
}

.bold-text-6, .bold-text-7 {
    color: #393939;
    font-size: 15px;
    font-weight: 400;
}

.article-inner-testimonials-wrapper {
    margin-top: 40px;
}

.nl-header-wrapper {
    justify-content: center;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
}

.nl-body {
    align-items: center;
    display: flex;
}

.nl-body-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
}

.nl-logo {
    max-height: 35px;
}

.nl-content-piece {
    max-width: 60%;
}

.nl-content-piece.cta-section.nl-2-content-piece.new-grey-bk {
    background-color: #e0ffe9;
}

.nl-content-piece.cta-section.socks-content-piece {
    background-color: #fdb;
}

.nl-content-piece.cta-section.nl-2-content-piece {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    background-color: #fff9be;
    justify-content: flex-start;
    align-items: center;
    max-width: none;
    margin-top: 3em;
    margin-bottom: 0;
    padding: 3em;
}

.nl-content-piece.cta-section {
    background-color: #e6f3ff;
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    margin-top: 7em;
    margin-bottom: 7em;
    padding: 5em;
    display: flex;
}

.nl-content-piece.cta-section.lpi-cta-section {
    background-color: #e6f3ff;
    width: 100%;
    max-width: none;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    padding: 2em 3em;
}

.nl-headline {
    font-family: Inria Serif, sans-serif;
}

.nl-article-info {
    font-family: Inria Sans, sans-serif;
    font-style: italic;
}

.nl-hero-section {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    width: 85%;
    margin-top: 2em;
    margin-bottom: 2em;
    margin-right: auto;
    display: flex;
}

.nl-hero-img {
    width: 70%;
}

.nl-hero-description {
    background-color: #e6f3ff;
    border-radius: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 30%;
    padding: 2em 1.5em;
    display: flex;
}

.nl-hero-description.socks-hero-description {
    background-color: #fdb;
}

.heading-11 {
    color: #000;
    margin-top: 10px;
    margin-bottom: 0;
    font-family: Inria Serif, sans-serif;
    font-size: 28px;
    font-weight: 700;
}

.nl-rating {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.image-19 {
    max-height: 15px;
}

.rating-p {
    color: #000;
    margin-bottom: 0;
    font-family: Inria Sans, sans-serif;
    font-size: 16px;
    line-height: 100%;
}

.image-20 {
    max-height: 30px;
}

.nl-li {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 15px;
    font-family: Inria Sans, sans-serif;
}

.nl-li-item {
    margin-bottom: 1em;
    font-size: 16px;
}

.hero-section-cta-btn {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    background-color: #000;
    border-radius: 100px;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: Inria Sans, sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.nl-p {
    color: #000;
    font-family: Inria Sans, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}

.nl-p.features-list-item-text-p {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 300;
    line-height: 150%;
}

.nl-p.features-list-item-text-p.p-testimonial-inside {
    background-color: #fdb;
    border-radius: 10px;
    padding: 15px;
}

.nl-p.features-list-item-text-p.new-size-p {
    font-size: 16px;
}

.nl-p.cta-nl-p {
    text-align: center;
}

.nl-p.cta-nl-p.p-mt {
    margin-bottom: 0;
}

.nl-p.cta-nl-p.p-mt.new-font-adj {
    font-family: Montserrat, sans-serif;
}

.nl-p.features-list-item-text-p {
    margin-bottom: 20px;
    font-family: Lato, sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 150%;
}

.features-list {
    grid-column-gap: 7.5em;
    grid-row-gap: 7.5em;
    flex-direction: column;
    margin-top: 5em;
    display: flex;
}

.features-list-item {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    display: flex;
}

.features-list-item-info {
    max-width: 60%;
}

.features-img {
    border-radius: 30px;
    max-height: 300px;
}

.features-list-item-text-h {
    color: #000;
    margin-top: 0;
    margin-bottom: 20px;
    font-family: Inria Serif, sans-serif;
}

.features-list-item-text-h.new-size {
    font-size: 32px;
    line-height: 36px;
}

.expert-says {
    margin-top: 30px;
    position: relative;
}

.image-21 {
    z-index: -1;
    max-height: 50px;
    position: absolute;
    inset: -20px auto auto 0%;
}

.nl-cta-section-h1 {
    color: #000;
    text-align: center;
    margin-bottom: 0;
    font-family: Inria Sans, sans-serif;
    font-size: 36px;
    line-height: 120%;
}

.nl-cta-section-h1.new-style-font {
    font-family: Montserrat, sans-serif;
}

.cta-section-steps {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    flex-direction: column;
    margin-top: 3em;
    margin-bottom: 3em;
    display: flex;
}

.cta-section-step {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
}

.cta-section-step.d-f-row {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: row;
}

.cta-section-item-step {
    color: #000;
    text-align: left;
    flex: none;
    font-family: Inria Sans, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
    display: block;
}

.cta-section-item-step-description {
    margin-bottom: 0;
    font-family: Inria Sans, sans-serif;
}

.cta-section-btn {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    background-color: #000;
    border-radius: 10px;
    margin-top: 2em;
    padding: 15px 3em;
    font-family: Inria Sans, sans-serif;
    font-size: 21px;
    line-height: 100%;
    text-decoration: none;
}

.cta-section-btn.mid-text-cta.cta-green {
    background-color: #1cbe00;
    border: 1px solid #1cbe00;
    width: 100%;
    margin-top: 0;
}

.cta-section-btn.mid-text-cta.cta-green:hover {
    color: #1cbe00;
    background-color: #0000;
}

.paragraph-11 {
    margin-bottom: 0;
    text-decoration: none;
}

.html-embed {
    width: 50px;
    margin-left: auto;
    margin-right: auto;
}

.nl-footer {
    background-color: #eef0f4;
    justify-content: center;
    align-items: center;
    display: flex;
}

.nl-footer-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    padding: 3em;
    display: flex;
}

.paragraph-12 {
    text-align: center;
    font-family: Inria Sans, sans-serif;
}

.footer-links {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    display: flex;
}

.footer-link {
    font-family: Inria Sans, sans-serif;
}

.hero-img {
    object-fit: cover;
    border-radius: 0 20px 20px 0;
    height: 100%;
}

.mobile-fixed-cta {
    display: none;
}

.scroll-into-view-trigger-container {
    grid-column-gap: 7.5em;
    grid-row-gap: 7.5em;
    flex-direction: column;
    display: flex;
}

.nl-2-header-wrapper {
    grid-column-gap: 700px;
    grid-row-gap: 700px;
    background-color: #f7f7f7;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 1.5em 0;
    display: flex;
}

.content-wrapper-main {
    flex-direction: column;
    align-items: center;
    display: flex;
}

.nl-2-body-wrapper {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    display: flex;
}

.nl-2-main-section {
    width: 65%;
    margin-top: 0;
}

.nl-2-main-section.padding-adjust, .nl-2-main-section.padding-adjust.new-smal-srn-mar-top.only-mob-margin-top {
    margin-top: -30px;
}

.nl-2-sidebar {
    width: 33%;
    height: 33%;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
}

.body-2 {
    background-color: #eef0f4;
}

.nl-2-logo {
    max-height: 30px;
}

.nl-2-heading {
    color: #000;
    font-family: Inria Sans, sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 100%;
}

.nl-2-heading.h-df.new-size-small {
    font-size: 44px;
    line-height: 50px;
}

.nl-2-heading.h-df {
    margin-top: 0;
    font-family: Lato, sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 117%;
}

.nl-2-heading.h-df.new-font-height {
    font-weight: 700;
}

.nl-2-heading.h-df.new-font-height.line-height-new {
    font-weight: 500;
    line-height: 122%;
}

.paragraph-13 {
    color: #000;
    font-family: Inria Sans, sans-serif;
    font-style: italic;
}

.nl-2-article-section {
    text-align: left;
    background-color: #fff;
    border-radius: 20px;
    padding: 3em 1em;
}

.nl-2-article-section.new-padding {
    text-align: left;
    padding: 5px 20px;
}

.nl-2-article-section.new-adjustment-padding-sec {
    padding-top: 0;
}

.nl-2-article-section.new-margin-adjust {
    margin-top: -30px;
    padding-top: 0;
}

.nl-2-article-section.mar-pad-adjust {
    margin-top: -30px;
    padding-top: 0;
    padding-left: 1em;
}

.nl-2-p {
    color: #000;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-style: normal;
    line-height: 150%;
}

.nl-2-p.testimonial-inside-p {
    background-color: #fff9be;
    border-radius: 15px;
    padding: 30px 20px;
}

.nl-2-p.testimonial-inside-p.new-color {
    background-color: #feffe4;
}

.nl-2-p.ta-c {
    text-align: center;
    margin-bottom: 0;
}

.nl-2-p.ta-c.fs-i {
    font-style: italic;
}

.nl-2-p.new-font-style {
    font-family: Montserrat, sans-serif;
}

.nl-2-p.new-space {
    background-color: #0000;
    margin-top: 25px;
    margin-bottom: 20px;
    font-family: Montserrat, sans-serif;
}

.nl-2-p.new-space.mar-top-new-adj9 {
    margin-top: 18px;
}

.nl-2-p.space-pad-adj {
    margin-top: -15px;
}

.nl-2-p.space-pad-adj.margin-top-adj, .nl-2-p.space-pad-adj.new-mar-top-1, .nl-2-p.space-pad-adj.new-mar-top-2 {
    margin-top: 10px;
}

.nl-2-p.space-pad-adj.new-mar-top-3 {
    margin-top: 10px;
    margin-bottom: 50px;
}

.nl-2-p.adj-pad {
    margin-top: -23px;
}

.nl-2-p.adj-pad.margin-top-new {
    margin-top: 10px;
}

.nl-2-p.pace-pad {
    margin-top: -36px;
}

.nl-2-p.new-font-adjust {
    margin-top: 20px;
    margin-bottom: 20px;
}

.nl-2-p.new-font {
    margin-top: 26px;
    font-family: Lato, sans-serif;
}

.nl-2-p.font-space {
    margin-top: -15px;
    margin-bottom: -36px;
}

.nl-2-p.pace {
    margin-top: -18px;
}

.nl-2-p.new-adjust-pad {
    margin-top: -9px;
}

.nl-2-p.adjust-font-new {
    margin-top: -12px;
}

.nl-2-p.ajus-font-pace, .nl-2-p.new-adjust-font {
    margin-top: 30px;
}

.nl-2-p.adjust-padding-new {
    margin-top: -6px;
}

.nl-2-p.new-space-adjust {
    margin-top: 20px;
}

.nl-2-advantages-section {
    grid-column-gap: 4em;
    grid-row-gap: 4em;
    flex-direction: column;
    margin-top: 5em;
    display: flex;
}

.nl-2-advantages-section.gap-space-new-adj {
    grid-column-gap: .4em;
    grid-row-gap: .4em;
}

.nl-2-advantages-section.space-gap-new-5 {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
}

.nl-2-advantages-item {
    display: block;
}

.nl-2-advantages-item.new-space-adj {
    margin-top: -51px;
}

.nl-2-adv-item-img {
    border-radius: 0;
}

.nl-2-adv-item-img.mb-1 {
    margin-bottom: 1em;
}

.nl-2-adv-item-img.new-size {
    margin-top: 20px;
}

.nl-2-adv-item-img.new-space {
    margin-top: -30px;
}

.nl-2-adv-item-img.new-space.margin-top-6 {
    margin-top: 0;
}

.nl-2-adv-item-img.space-pad-new {
    margin-top: 30px;
}

.nl-2-adv-item-img.pad-adj {
    margin-bottom: 20px;
}

.nl-2-adv-item-img.space-new-pad, .nl-2-adv-item-img.new-space-pad {
    margin-top: 30px;
}

.nl-2-adv-item-img.adjust-space {
    margin-top: 40px;
}

.nl-2-adv-item-description {
    text-align: left;
}

.nl-2-adv-item-description.new-align-ver {
    flex-flow: row;
    display: block;
}

.nl-2-h1 {
    color: #000;
    margin-top: 1em;
    margin-bottom: .5em;
    font-family: Inria Sans, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
}

.nl-2-h1.sidebar-heading {
    margin-top: .5em;
    font-size: 24px;
    font-weight: 400;
}

.nl-2-h1.new-color {
    color: #333;
    text-align: left;
    margin-top: 2em;
    font-family: Montserrat, sans-serif;
    font-size: 27px;
    font-weight: 700;
}

.nl-2-h1.new-color.align {
    text-align: left;
}

.nl-2-h1.new-color.align.no-space {
    margin-top: 0;
    margin-bottom: 0;
}

.nl-2-h1.new-fontstyle-1 {
    font-family: Montserrat, sans-serif;
    font-size: 28px;
}

.italic-text {
    font-weight: 400;
}

.nl-2-quote-block {
    background-color: #fff9be;
    border-radius: 15px;
    padding: 3em;
    position: relative;
}

.blockquote-img {
    max-height: 70px;
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
}

.nl-2-cta-section {
    margin-top: 1em;
}

.nl-sidebar-inner {
    color: #000;
    background-color: #fff;
    border-radius: 15px;
    width: 100%;
    padding: 3em 1.5em;
    font-family: Inria Sans, sans-serif;
    position: sticky;
    top: 20px;
}

.nl-sidebar-inner.color-new {
    background-color: #fff;
    padding-left: 1em;
    padding-right: 1em;
}

.nl-sidebar-inner.color-new.border-new {
    border: 1px solid #969696;
    border-radius: 2px;
    padding-left: 1em;
    padding-right: 1em;
}

.hike-logo {
    max-height: 30px;
}

.sidebar-reviews {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    padding-top: 0;
    display: flex;
}

.star-rating {
    max-height: 15px;
}

.paragraph-14 {
    margin-bottom: 0;
}

.nl-2-sidebar-image {
    width: 100%;
    margin-bottom: 1em;
}

.nl-2-sidebar-ul {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    padding-left: 15px;
    display: flex;
}

.nl-sidebar-ul-li {
    font-size: 18px;
    line-height: 130%;
}

.button-3 {
    background-color: #000;
}

.nl-2-sidebar-cta-btn {
    text-align: center;
    text-transform: uppercase;
    background-color: #000;
    border-radius: 100px;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
}

.nl-2-sidebar-cta-btn.green-color {
    -webkit-text-stroke-color: #528125;
    background-color: #528125;
    border: 1px solid #528125;
    margin-top: 15px;
}

.nl-2-sidebar-cta-btn.green-color:hover {
    color: #528125;
    border: 3px solid #528125;
}

.nl-2-sidebar-cta-btn.green-color.new-color {
    -webkit-text-stroke-color: #04c100;
    background-color: #04c100;
    font-family: Lato, sans-serif;
}

.nl-2-sidebar-cta-btn.green-color.new-color:hover {
    color: #023601;
    background-color: #04c10000;
    border-color: #04c100;
}

.nl-2-body-wrapper-inner {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    width: 100%;
    margin-top: 2em;
    display: flex;
    position: relative;
}

.nl-2-body-wrapper-inner.top-margin-set {
    margin-top: 1em;
}

.nl-2-article-head {
    width: 65%;
}

.nl-2-article-head.space-new {
    grid-column-gap: 1px;
    grid-row-gap: 1px;
    flex-flow: column;
    margin-top: 40px;
    display: flex;
}

.nl-2-article-head.margin-left-new2 {
    padding-left: 1em;
    padding-right: 1em;
}

.nl-2-footer {
    background-color: #0000;
    border-top: 1px solid #0000001a;
    justify-content: center;
    align-items: center;
    margin-top: 5em;
    display: flex;
}

.html-embed-2 {
    width: 50px;
    margin-left: auto;
    margin-right: auto;
}

.scrll-vw-trigger {
    grid-column-gap: 2.5em;
    grid-row-gap: 2.5em;
    flex-direction: column;
    display: flex;
}

.nl-2-mobile-cta-section-fixed {
    display: none;
}

.eq-v2-p-2 {
    margin-bottom: 30px;
    font-size: 21px;
    line-height: 130%;
}

.eq-v2-heading-2 {
    color: #000;
    text-align: center;
    margin-top: 1em;
    margin-bottom: .5em;
    font-size: 61px;
    font-weight: 500;
    line-height: 100%;
}

.eq-v2-main {
    border-top: 1px solid #00000003;
    justify-content: center;
    align-items: center;
    display: flex;
}

.eq-v2-p-3 {
    margin-bottom: 30px;
    font-size: 21px;
    line-height: 130%;
}

.eq-v2-heading-3 {
    color: #000;
    text-align: center;
    margin-top: 1em;
    margin-bottom: .5em;
    font-size: 61px;
    font-weight: 500;
    line-height: 100%;
}

.video-container {
    z-index: 999;
    border-radius: 15px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.tr-hero-img {
    margin-bottom: 1.5em;
}

.adv-img {
    width: 100%;
    margin-bottom: 1.5em;
}

.subhead-cite {
    background-color: #dbe6ff;
    border-radius: 10px;
    width: 100%;
    margin-top: 1em;
    margin-bottom: 1em;
    padding: 2em;
}

.testimonials-wrapper {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    margin-bottom: 1em;
    display: flex;
}

.testimonials-wrapper.hide-temp {
    display: flex;
}

.t-img {
    max-width: 32%;
}

.sticky-cta {
    display: none;
}

.nl-3-adv-header {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    color: #050505;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    display: flex;
}

.nl-3-adv-header.new-color-chn {
    background-color: #e1e2e4;
}

.nl-3-adv-header.new-color-chn.color-head-adj {
    background-color: #7a95be;
}

.nl-3-adv-header.new-color-chn.color-head-adj.pad-adj-space, .nl-3-adv-header.new-style-adj {
    padding-top: 5px;
    padding-bottom: 5px;
}

.nl-3-adv-header-wrapper {
    justify-content: center;
    align-items: center;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    display: flex;
}

.nl-3-adv-header-wrapper.new-style-head {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    background-color: #fc1e72;
    padding-top: .5em;
    padding-bottom: .5em;
    display: none;
}

.nl-3-adv-header-wrapper.new-style-head.new-color-yellow {
    background-color: #f7c633;
}

.nl-3-adv-header-wrapper.blk-fri-banner-3 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: #1d1d1d;
    flex-flow: column;
    padding-top: .25em;
    padding-bottom: .25em;
}

.nl-3-adv-header-wrapper.blk-fri-banner-3.new-space-adj {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
    background-color: #ffa200;
    flex-flow: row;
    justify-content: center;
    padding-top: 1em;
    padding-bottom: 1em;
}

.nl-3-adv-header-wrapper.blk-fri-banner-3.banner-1-new {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    background-color: #ffb901;
    flex-flow: row;
}

.nl-3-adv-header-wrapper.new-adj-space, .nl-3-adv-header-wrapper.new-space-adj {
    padding-top: 0;
    padding-bottom: 0;
}

.nl-3-adv-logo {
    max-height: 35px;
}

.nl-3-adv-logo.new-size-adj {
    max-height: 123px;
}

.nl-3-adv-logo.logo-fi-s {
    max-height: 30px;
}

.nl-3-adv-content {
    background-color: #0000;
    justify-content: center;
    align-items: flex-start;
    display: flex;
}

.nl-3-adv-content.new-color-bkgd {
    background-color: #d2e0e1;
}

.nl-3-adv-content.new-color-bkgd.new-bk-img {
    background-image: url('../images/Winter-Bk1.jpg');
    background-position: 0 0;
    background-size: auto;
}

.nl-3-adv-content.new-color-bkgd.color-mod-adj {
    background-color: #f0efe8;
}

.nl-3-adv-content-wrapper {
    width: 80%;
    max-width: 1200px;
}

.nl-3-adv-hero-heading-h1 {
    text-align: center;
    font-family: Inria Serif, sans-serif;
    font-size: 44px;
    line-height: 120%;
}

.about-author {
    text-align: left;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
}

.about-author.ta-c {
    text-align: center;
}

.nl-3-adv-hero-img {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
}

.hero-product-image {
    z-index: 1;
    position: relative;
}

.hero-product-image.new-space-adjust {
    top: 20px;
    bottom: auto;
}

.hero-substrate {
    z-index: 0;
    background-color: #b38fff;
    border-radius: 30px;
    min-width: 100%;
    min-height: 70%;
    position: absolute;
    inset: auto 0% 0%;
}

.hero-substrate.new-color-style {
    background-color: #008c99;
}

.hero-substrate.new-color-style.mod-color-new {
    background-color: #7a95be;
}

.hero-substrate.new-color-bk {
    background-color: #77915c;
}

.hero-substrate.new-color-bk.new-green-color {
    background-color: #1f8c92;
}

.nl-3-adv-hero-description {
    z-index: 1;
    color: #fff;
    text-align: center;
    margin-top: 1em;
    margin-bottom: 2em;
    padding-left: 5em;
    padding-right: 5em;
    font-family: Inria Sans, sans-serif;
    font-size: 21px;
    line-height: 150%;
    position: relative;
}

.nl-3-adv-hero-description.padding-top-adj, .nl-3-adv-hero-description.margin-top-spacing {
    margin-top: -.8em;
}

.nl-3-adv-main {
    background-color: #fff;
    border-radius: 30px;
    margin-top: 5em;
    padding: 5em;
}

.nl-3-adv-main.spacing-padding-top, .nl-3-adv-main.top-margin-new {
    margin-top: 1em;
}

.body-3 {
    background-color: #f3f3f3;
}

.nl-3-adv-p {
    font-family: Inria Sans, sans-serif;
    font-size: 18px;
    line-height: 150%;
}

.nl-3-adv-p.fc-w {
    color: #000;
    text-align: center;
    margin-bottom: 1em;
    font-family: Montserrat, sans-serif;
}

.nl-3-adv-p.fc-w.ta-l {
    text-align: left;
}

.nl-3-adv-p.fc-w.ta-l.new-color-white {
    font-family: Inria Sans, sans-serif;
}

.nl-3-adv-p.fc-w.ta-l.new-color-white.text-colorchan-black {
    color: #000;
}

.nl-3-adv-p.fc-w.ta-l.new-color-white.text-colorchan-black.new-font-style {
    font-family: Montserrat, sans-serif;
}

.nl-3-adv-p.fc-w.new-color-white {
    color: #fff;
    font-family: Inria Sans, sans-serif;
}

.nl-3-adv-p.footer-p {
    text-align: center;
    font-size: 14px;
}

.nl-3-adv-h {
    font-family: Inria Serif, sans-serif;
}

.nl-3-adv-h.fc-w {
    color: #000;
    text-align: center;
    margin-top: 0;
    margin-bottom: 1.5em;
    font-family: Montserrat, sans-serif;
}

.nl-3-adv-h.fc-w.new-color-white {
    color: #fff;
    font-family: Inria Serif, sans-serif;
}

.nl-3-adv-reasons-block {
    grid-column-gap: 10em;
    grid-row-gap: 10em;
    flex-flow: column;
    margin-top: 3em;
    display: flex;
}

.nl-3-adv-reasons-block.gap-space-adj, .nl-3-adv-reasons-block.space-gap-new {
    grid-column-gap: 6.5em;
    grid-row-gap: 6.5em;
}

.nl-3-adv-reasons-block-item {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.nl-3-adv-reasons-block-item.reversed {
    flex-flow: row-reverse;
}

.nl-3-adv-reasons-text {
    flex-flow: column;
    max-width: 50%;
    display: flex;
}

.nl-3-adv-reasons-img {
    border-radius: 30px;
    max-width: 45%;
}

.nl-3-adv-reasons-text-p.nl-3-adv-p {
    font-size: 18px;
}

.nl-3-adv-main-conclusion {
    background-color: #8863d8;
    border-radius: 30px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 5em;
    padding: 5em;
    display: flex;
}

.nl-3-adv-main-conclusion.color-yellow {
    background-color: #e0ffe7;
    border-radius: 0;
    margin-top: 4em;
    padding-left: 0;
    padding-right: 0;
}

.nl-3-adv-main-conclusion.color-yellow.cta-box-mar-new.margin-top-mod, .nl-3-adv-main-conclusion.color-yellow.box-cta-new-pad.margin-top-09 {
    margin-top: 2em;
}

.nl-3-adv-main-conclusion.color-yellow.mar-box-top {
    margin-top: 1em;
}

.nl-3-adv-main-conclusion.new-color-bk-adj {
    background-color: #6fbfd0;
}

.nl-3-adv-main-conclusion.new-color-bk-adj.new-color-chgn {
    background-color: #008c99;
}

.nl-3-adv-main-conclusion.new-color-bk-adj.new-color-cgn {
    background-color: #7a95be;
}

.nl-3-adv-main-conclusion.color-green-bk {
    background-color: #77915c;
}

.nl-3-adv-main-conclusion.color-green-bk.new-blue-bk {
    background-color: #1f8c92;
}

.nl-3-adv-main-conclusion.d-none {
    display: none;
}

.nl-3-adv-main-conclusion-steps {
    margin-top: 2em;
    margin-bottom: 2em;
    font-family: Inria Sans, sans-serif;
}

.nl-3-adv-main-conclusion-steps.new-text-color {
    margin-top: 0;
}

.step-number {
    margin-right: 10px;
    font-size: 28px;
    font-weight: 700;
}

.nl-3-adv-main-conclusion-inner {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    display: flex;
}

.nl-3-adv-main-cta-button {
    color: #000;
    text-align: center;
    background-color: #fff;
    border-radius: 15px;
    width: 100%;
    margin-top: 1em;
    padding: 1em 2em;
    font-family: Inria Sans, sans-serif;
    font-size: 21px;
}

.nl-3-adv-main-cta-button.sticky-cta-v1-cta-btn {
    color: #fff;
    background-color: #8863d8;
    width: auto;
    margin-top: 0;
    font-size: 18px;
}

.nl-3-adv-main-cta-button.sticky-cta-v1-cta-btn.new-color {
    background-color: #00b403;
}

.nl-3-adv-main-cta-button.sticky-cta-v1-cta-btn.new-color-cta {
    background-color: #e90000;
}

.nl-3-adv-main-cta-button.sticky-cta-v1-cta-btn.new-color-cta.btn-color-mod {
    background-color: #a0d100;
}

.nl-3-adv-main-cta-button.sticky-cta-v1-cta-btn.cta-bk-color-new {
    background-color: #528125;
}

.nl-3-adv-main-cta-button.sticky-cta-v1-cta-btn.cta-bk-color-new.new-green {
    background-color: #1f8c92;
}

.nl-3-adv-footer {
    background-color: #f0f0f091;
    border-top: 1px solid #00000003;
    justify-content: center;
    align-items: center;
    min-height: 15vh;
    margin-top: .25em;
    display: flex;
}

.nl-3-adv-footer-wrapper {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin-top: 40px;
    display: flex;
}

.nl-4-interview-content {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.nl-4-interview-content-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    max-width: 1100px;
    display: flex;
}

.hero-section-left {
    max-width: 60%;
    padding-top: 3em;
    padding-bottom: 3em;
}

.nl-4-logo {
    max-height: 30px;
}

.nl-4-headline {
    font-family: Niramit, sans-serif;
    font-size: 44px;
    line-height: 120%;
}

.nl-4-author-section {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    justify-content: flex-start;
    align-items: center;
    margin-top: 2em;
    display: flex;
}

.nl-4-author-img {
    max-height: 50px;
}

.nl-4-author-p {
    margin-bottom: 0;
    font-family: Niramit, sans-serif;
    font-size: 18px;
    line-height: 100%;
}

.nl-4-hero-img {
    vertical-align: baseline;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.nl-4-facts-section {
    justify-content: space-between;
    align-items: stretch;
    margin-top: 3em;
    display: none;
}

.nl-4-fact-item {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 30%;
    display: flex;
}

.fact-img {
    max-height: 35px;
}

.nl-4-p {
    margin-bottom: 1.25em;
    font-family: Niramit, sans-serif;
    font-size: 21px;
    line-height: 150%;
}

.nl-4-p.fact-p {
    margin-top: 1em;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 150%;
}

.nl-4-p.about-author {
    margin-bottom: 0;
    font-family: Niramit, sans-serif;
    font-style: italic;
    font-weight: 700;
}

.nl-4-p.benefits-item-p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 700;
}

.nl-4-p.benefits-item-p.align {
    text-align: center;
    text-transform: uppercase;
}

.nl-4-p.footer-p {
    text-align: center;
    max-width: 80%;
    margin-top: 2em;
    font-size: 14px;
}

.nl-4-hero-wrapper {
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.nl-4-main-article {
    flex-flow: column;
    margin-top: 5em;
    display: flex;
}

.nl-4-interview-bubble-left {
    background-color: #e6e6e6;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 3em;
}

.nl-4-interview-question {
    margin-top: 0;
    margin-bottom: 0;
    font-family: Niramit, sans-serif;
    font-size: 36px;
    line-height: 120%;
}

.nl-4-interview-bubble-right {
    background-color: #d0e8fe;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    margin-top: 2em;
    padding: 3.5em 3em 2.5em;
}

.nl-4-img {
    border-radius: 20px;
    margin-top: 7em;
    margin-bottom: 7em;
}

.nl-4-cta-btn {
    color: #fff;
    text-align: center;
    background-image: linear-gradient(160deg, #a5d0f7, #0063a3);
    border-radius: 20px;
    margin-top: 3em;
    margin-left: auto;
    margin-right: auto;
    padding: 1.25em 3em;
    font-family: Niramit, sans-serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 120%;
    transition: all .5s;
    display: block;
}

.nl-4-cta-btn:hover {
    transform: scale(.95);
}

.nl-4-cta-btn.bubble-cta {
    background-image: linear-gradient(168deg, #a5d0f7, #0063a3);
    margin-top: 1em;
}

.nl-4-cta-sub {
    letter-spacing: 5px;
    margin-top: .25em;
    font-size: 16px;
    font-weight: 400;
    display: block;
}

.nl-4-benefits {
    flex-flow: column;
    justify-content: space-between;
    margin-top: 5em;
    margin-bottom: 5em;
    display: flex;
}

.nl-4-benefits-item {
    flex-flow: column;
    max-width: 23%;
    display: flex;
}

.benefits-item-img {
    max-height: 30px;
}

.nl-4-benefits-wrapper {
    justify-content: space-around;
    align-items: stretch;
    display: flex;
}

.nl-4-benefits-h {
    text-align: center;
    margin-bottom: 1.5em;
    font-family: Niramit, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
}

.nl-4-footer {
    border-top: 1px solid #000;
    padding: 3em;
}

.nl-4-footer-wrapper {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
}

.nl-4-footer-links {
    color: #000;
    font-family: Niramit, sans-serif;
    font-size: 21px;
    font-weight: 700;
    text-decoration: none;
}

.nl-4-footer-links-box {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.footer-divider {
    background-color: #000;
    width: 3px;
    height: 30px;
}

.nl-5-header-wrapper {
    justify-content: center;
    align-items: center;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    display: flex;
}

.nl-5-content {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 3em;
    display: flex;
}

.nl-5-content-wrapper {
    max-width: 1100px;
}

.nl-5-footer {
    background-color: #fafafa;
    border-top: 1px solid #0000001a;
    justify-content: center;
    align-items: center;
    margin-top: 5em;
    display: flex;
}

.nl-5-footer-wrapper {
    justify-content: space-between;
    width: 1100px;
    padding-top: 3em;
    padding-bottom: 3em;
    display: flex;
}

.nl-5-header-logo {
    max-height: 30px;
}

.body-5 {
    font-family: Nobile, sans-serif;
}

.nl-5-heading {
    font-size: 36px;
    line-height: 120%;
}

.nl-5-about-article {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.stars-img {
    height: 20px;
}

.nl-5-hero-img {
    border-radius: 0;
    width: 100%;
    margin-top: auto;
}

.nl-5-article {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
    margin-top: 3em;
    display: flex;
}

.nl-5-article.nl-5-1 {
    justify-content: center;
    align-items: flex-start;
}

.nl-5-article-content {
    flex-flow: column;
    width: 65%;
    display: flex;
}

.nl-5-article-content.nl-5-1 {
    width: 100%;
    max-width: 900px;
}

.nl-5-article-sidebar {
    width: 30%;
    position: relative;
}

.nl-5-p {
    margin-bottom: 1.25em;
    font-size: 18px;
    line-height: 150%;
}

.nl-5-p.author-p {
    margin-top: 2em;
    margin-bottom: 0;
    font-size: 14px;
}

.nl-5-p.interview-question-p {
    margin-bottom: 0;
    font-style: italic;
}

.nl-5-p.nl-5article-info {
    color: #a2a2a2;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 100%;
}

.nl-5-p.nl-5-1-cta-box-p {
    text-align: center;
}

.nl-5-article-sidebar-inner {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    flex-flow: column;
    width: 100%;
    display: flex;
    position: sticky;
    top: 0;
}

.author-card {
    background-color: #fff;
    border: 1px solid #0000001a;
    border-radius: 15px;
    padding: 2em;
    box-shadow: 0 0 10px #0000001a;
}

.nl-5-aa {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.nl-5-author-img {
    max-height: 85px;
}

.nl-5-author-name {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 120%;
}

.nl-5-author-position {
    color: #8b8b8b;
    margin-bottom: 0;
    font-size: 12px;
    line-height: 130%;
}

.nl-5-h1 {
    margin-top: 1.25em;
    margin-bottom: .75em;
    font-size: 32px;
    line-height: 120%;
}

.nl-5-h1.nl-5-1-cta-box-h {
    text-align: center;
}

.nl-5-interview-question-box {
    background-color: #fffdd5;
    border-radius: 15px;
    margin-bottom: 2em;
    padding: 2.5em;
}

.questioned-by {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    justify-content: flex-start;
    align-items: center;
    margin-top: 2em;
    display: flex;
}

.questioned-by-img {
    max-height: 50px;
}

.questioned-by-name {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
}

.questioned-by-position {
    color: #8b8b8b;
    margin-bottom: 0;
    font-size: 12px;
}

.questioned-by-info {
    flex-flow: column;
    display: flex;
}

.nl-5-img {
    border-radius: 15px;
}

.nl-5-cta-btn {
    color: #fff;
    background-color: #03a200;
    border: 2px solid #03a200;
    border-radius: 100px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.25em 2em;
    font-size: 16px;
    line-height: 100%;
    text-decoration: none;
    transition: all .4s;
    display: block;
}

.nl-5-cta-btn:hover {
    color: #000;
    background-color: #0000;
}

.paragraph-15 {
    margin-bottom: 0;
    padding-top: 3px;
    font-weight: 500;
}

.nl-5-video {
    border-radius: 15px;
    margin-top: 2em;
    margin-bottom: 2em;
    overflow: hidden;
}

.nl-5-testomonials-v1 {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    flex-flow: column;
    display: flex;
}

.nl-5-testomonials-v1.nl-5-1 {
    flex-flow: row;
}

.nl-5-testomonials-item {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
    background-color: #f7f7f7;
    border: 1px solid #0000001a;
    border-radius: 15px;
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-end;
    padding-right: 3em;
    display: flex;
    overflow: hidden;
}

.nl-5-testomonials-item.nl-5-1 {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 30%;
    padding-right: 0;
}

.nl-5-testimonial-item-img {
    max-width: 30%;
}

.nl-5-testimonial-item-img.nl-5-1 {
    width: 100%;
    max-width: none;
}

.nl-5-testimonial-body {
    padding-top: 1em;
    padding-bottom: 1em;
}

.nl-5-testimonial-body.nl-5-1 {
    padding-left: 1.5em;
    padding-right: 1.5em;
}

.nl-5-testimonial-author {
    margin-bottom: .5em;
    font-size: 24px;
    font-weight: 700;
    line-height: 100%;
}

.nl-5-testimonial-rating {
    height: 20px;
    margin-bottom: 1em;
}

.nl-5-testimonial-p {
    font-size: 16px;
    line-height: 150%;
}

.nl-5-facts-box {
    justify-content: space-between;
    align-items: stretch;
    margin-top: 3em;
    display: flex;
}

.nl-5-facts-box-item {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 30%;
    display: flex;
}

.nl-5-facts-box-item-h {
    text-align: center;
    font-size: 16px;
    line-height: 100%;
}

.nl-5-facts-box-item-p {
    text-align: center;
    font-size: 14px;
    line-height: 150%;
}

.nl-5-footer-logo {
    max-height: 20px;
}

.nl-5-footer-links {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    display: flex;
}

.nl-5-footer-link {
    color: #000;
    font-weight: 400;
    text-decoration: none;
}

.sticky-cta-section-v1 {
    z-index: 1;
    grid-column-gap: 4em;
    grid-row-gap: 4em;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: #ffffffb3;
    justify-content: center;
    align-items: center;
    padding: 2em;
    display: flex;
    position: sticky;
    bottom: 0;
}

.sticky-cta-v1-h {
    margin-top: 0;
    margin-bottom: 5px;
    font-family: Inria Serif, sans-serif;
    font-size: 28px;
    line-height: 100%;
}

.sticky-cta-v1-p {
    background-color: #f2db67;
    margin-bottom: 0;
    padding: 5px;
    font-family: Inria Sans, sans-serif;
    font-size: 21px;
    line-height: 100%;
    display: inline-block;
}

.cta-prod-img {
    max-height: 75px;
}

.nl-5-sticky-footer {
    background-color: #ededed;
    border-top: 1px solid #0000001a;
    justify-content: center;
    align-items: center;
    padding: 1.5em 1.25em;
    display: none;
    position: sticky;
    bottom: 0;
    box-shadow: 0 -5px 20px #0003;
}

.nl-5-1-authors {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
    display: flex;
}

.nl-5-1-author {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    justify-content: flex-start;
    align-items: center;
    margin-top: 2em;
    margin-bottom: .75em;
    display: flex;
}

.nl-5-1-author-img {
    max-height: 50px;
}

.nl-5-1-about-author-name {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
}

.nl-5-1-about-author-position {
    color: #b2b2b2;
    margin-bottom: 0;
}

.nl-5-1-cta-box {
    background-color: #f9f9f9;
    border: 1px solid #0000001a;
    border-radius: 15px;
    margin-top: 2em;
    margin-bottom: 3em;
    position: relative;
    overflow: hidden;
}

.nl-5-1-cta-box-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 2em;
    padding: 3em 5em;
    display: flex;
}

.nl-5-1-progress-bar {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.nl-5-1-cta-box-img {
    width: 50%;
}

.nl-6-header {
    border-bottom: 1px solid #0000001a;
    justify-content: center;
    align-items: center;
    display: flex;
}

.nl-6-header-wrapper {
    padding: 1.5em 2em;
}

.nl-6-content {
    justify-content: center;
    align-items: flex-start;
    display: flex;
}

.nl-6-content-wrapper {
    border-left: 1px solid #0000001a;
    border-right: 1px solid #0000001a;
    max-width: 1100px;
    display: flex;
}

.nl-6-article {
    border-right: 1px solid #0000001a;
    width: 70%;
    padding-top: 3em;
    padding-bottom: 5em;
}

.nl-6-sidebar {
    width: 35%;
    position: static;
}

.nl-6-header-logo {
    max-height: 30px;
}

.nl-6-article-pd {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.nl-6-article-pd.margin-bottom-new-2 {
    margin-bottom: -33px;
}

.nl-6-article-pd.margin-bot-3 {
    margin-bottom: -45px;
}

.nl-6-article-pd.mar-bot-adjust-9 {
    margin-top: 0;
    margin-bottom: -35px;
}

.nl-6-article-stars {
    height: 20px;
}

.body-6 {
    font-family: Nobile, sans-serif;
}

.nl-6-p-about-article {
    color: #a2a2a2;
    margin-bottom: 0;
    font-family: Nobile, sans-serif;
}

.nl-6-article-headline {
    color: #1f1b43;
}

.nl-6-article-author {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    justify-content: flex-start;
    align-items: center;
    margin-top: 1em;
    display: flex;
}

.nl-6-author-img {
    max-height: 50px;
}

.nl-6-authore-name {
    color: #737373;
    margin-bottom: 0;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    line-height: 100%;
}

.nl-6-padding-wrapper {
    flex-flow: column;
    padding-left: 2em;
    padding-right: 2em;
    display: flex;
}

.nl-6-hero-img {
    margin-top: 2em;
    margin-bottom: 2em;
}

.nl-6-p {
    color: #1f1b43;
    margin-bottom: 1.5em;
    font-size: 18px;
    line-height: 150%;
}

.nl-6-p.para-new {
    color: #1a1a1e;
    margin-bottom: .5em;
    font-family: Montserrat, sans-serif;
}

.nl-6-h {
    color: #1f1b43;
    font-size: 28px;
    line-height: 120%;
}

.nl-6-h.new-title {
    color: #1a1a1e;
    margin-top: 40px;
    font-family: Montserrat, sans-serif;
}

.nl-6-img {
    margin-top: 1em;
    margin-bottom: 1em;
}

.text-span-9, .text-span-10 {
    text-decoration: underline;
}

.nl-6-p-cta-btn {
    text-align: center;
    background-color: #03a200;
    border-radius: 100px;
    margin-bottom: 2em;
    padding: 1.25em 2em 1em;
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
}

.nl-6-cta-box {
    background-color: #f9f9f9;
    border: 1px solid #0000001a;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.nl-6-cta-box-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 2em;
    padding: 2em 5em;
    display: flex;
}

.nl-6-cta-box-pb {
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0%;
}

.nl-6-cta-box-product-img {
    width: 80%;
}

.nl-6-cta-box-product-h {
    text-align: center;
    font-size: 28px;
    line-height: 120%;
}

.nl-6-cta-box-product-p {
    text-align: center;
    margin-bottom: 1em;
    font-size: 18px;
    line-height: 150%;
}

.nl-6-sidebar-wrapper {
    padding: 3em 2em 5em;
    display: flex;
}

.nl-6-testimonials {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
    flex-flow: column;
    display: flex;
    position: static;
}

.nl-6-testimonial {
    border: 1px solid #0000001a;
    border-radius: 15px;
    padding: 2em;
}

.nl-6-testimonial-img {
    max-height: 65px;
    margin-bottom: 2em;
}

.nl-6-testimonial-name {
    margin-bottom: 5px;
    font-family: Nobile, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
}

.nl-6-testimonial-stars {
    height: 20px;
}

.nl-6-testimonial-p {
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 150%;
}

.nl-6-testimonial-p.new-text-style {
    font-family: Lato, sans-serif;
    font-size: 18px;
}

.nl-6-footer {
    border-top: 1px solid #0000001a;
    justify-content: center;
    align-items: center;
    display: flex;
}

.nl-6-footer-wrapper {
    justify-content: space-between;
    width: 1100px;
    padding: 5em 0;
    display: flex;
}

.nl-6-footer-logo {
    max-height: 20px;
}

.nl-6-footer-links {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    display: flex;
}

.nl-6-footer-link {
    color: #000;
    text-decoration: none;
}

.features-list-item-2 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    align-items: flex-start;
    display: flex;
}

.features-img-2 {
    border-radius: 30px;
    max-height: 300px;
    margin-bottom: 20px;
}

.features-img-2.bigger-size {
    min-width: 300px;
    max-width: 212px;
}

.features-list-item-info-2 {
    max-width: 60%;
}

.features-list-item-text-h-2 {
    color: #000;
    margin-top: 0;
    margin-bottom: 20px;
    font-family: Inria Serif, sans-serif;
    font-size: 32px;
    line-height: 110%;
}

.cta-box-2 {
    background-color: #feffe4;
    width: 100%;
    padding: 5em 2em;
    position: relative;
}

.cta-box-2.align-ver {
    border: 3px dashed #000;
    border-radius: 0;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-top: 2em;
    padding-bottom: 2em;
    display: block;
}

.cta-box-2.align-ver.new-color {
    background-color: #fff;
}

.cta-box-2.align-ver.new-color.new-align-style {
    background-color: #7eac4f;
    border-style: solid;
    border-color: #7eac4f;
    flex-flow: column;
    margin-top: 20px;
    display: flex;
}

.cta-box-2.align-ver.new-align {
    background-color: #daf6e3;
}

.cta-box-inner-2 {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.image-22 {
    max-width: 45%;
}

.claim-p-2 {
    text-align: center;
    width: 80%;
    font-family: Lato, sans-serif;
    font-size: 18px;
    line-height: 130%;
}

.claim-p-2.small-size-font {
    text-align: left;
    font-size: 14px;
}

.button-4 {
    color: #feffe4;
    text-align: center;
    letter-spacing: 2.148px;
    text-transform: uppercase;
    background-color: #04c100;
    border: 2px solid #04c100;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 15px 2em;
    font-family: Lato, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 100%;
    transition: all .4s;
}

.button-4:hover {
    color: #000;
    background-color: #04c10000;
    border-width: 2px;
}

.button-4.new-radius {
    border-radius: 100px;
}

.eq-v2-h2-2 {
    color: #000;
    margin-bottom: 30px;
    font-family: Lato, sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 100%;
}

.testimonials-box-2 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    justify-content: space-between;
    display: flex;
}

.testimonials-box-2.new-align {
    flex-flow: column;
}

.testimonial-author-img-2 {
    max-height: 70px;
}

.div-block {
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
}

.div-block.gradient-green {
    background-image: linear-gradient(#fff, #deebd3 55%, #84ac5e);
    margin-top: 40px;
}

.text-span-11 {
    background-color: #eeff85;
}

.claim-p-3 {
    text-align: center;
    width: 80%;
    font-family: Lato, sans-serif;
    font-size: 18px;
    line-height: 130%;
}

.claim-p-3.new-fontstyle {
    color: #fff;
    font-family: Inria Sans, sans-serif;
}

.slider-img-2 {
    object-fit: contain;
    width: 30%;
    max-width: none;
}

.slider-img-2.nlc-img {
    width: 35%;
}

.slider-img-2.last-img {
    width: 50%;
}

.eq-v2-p-4 {
    color: #000;
    margin-bottom: 30px;
    font-family: Lato, sans-serif;
    font-size: 18px;
    line-height: 150%;
}

.eq-v2-hashtags-2 {
    background-color: #eeff85;
    border-radius: 100px;
    align-items: center;
    margin-top: 1em;
    margin-bottom: 1em;
    padding: .5em 2em;
    display: flex;
}

.cta-box-inner-3 {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
    justify-content: space-between;
    display: flex;
}

.cta-box-inner-3.align-other {
    grid-column-gap: .2em;
    grid-row-gap: .2em;
    background-color: #afafaf;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
}

.cta-box-inner-3.align-other.new-style-align-hor {
    flex-flow: row;
}

.cta-box-inner-3.align-other.new-style-align-hor.new-vertical {
    background-color: #fff;
    flex-flow: column;
}

.cta-box-inner-3.align-other.no-color {
    background-color: #afafaf00;
}

.hg-slider-box-2 {
    width: 100%;
    padding: 2em 3em;
    position: relative;
    overflow: hidden;
}

.eq-v2-heading-4 {
    color: #000;
    text-align: center;
    margin-top: 1em;
    margin-bottom: .5em;
    font-family: Lato, sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 120%;
}

.testimonials-box-3 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: row;
    justify-content: space-between;
    display: flex;
}

.hg-v2-main-2 {
    border: 0 #0000001a;
    border-top: 1px solid #0000001a;
    border-left: 0 solid #000;
    justify-content: center;
    align-items: center;
    display: flex;
}

.eq-v2-main-wrapper-2 {
    background-color: #fff;
    border-style: none solid solid;
    border-color: #000 #0000001a #0000001a;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-right-width: 1px;
    flex-direction: column;
    align-items: center;
    width: 60%;
    padding: 2em 15px;
    display: flex;
}

.image-23 {
    max-width: 60%;
}

.paragraph-16 {
    color: #929292;
    margin-bottom: 0;
    font-family: Lato, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
}

.text-span-12 {
    font-weight: 900;
}

.eq-v2-hero-img-2 {
    margin-top: 1em;
    margin-bottom: 2em;
}

.eq-v2-hero-img-2.new-img {
    width: 1200px;
}

.testimonial-author-img-3 {
    max-height: 70px;
}

.swiper-wrapper-2 {
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
}

.feature-wrapper {
    grid-column-gap: 57px;
    grid-row-gap: 57px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
    display: flex;
}

.description-text {
    text-align: center;
    background-color: #dfdfdf;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 40px;
    padding: 40px;
    display: flex;
}

.description-text.green {
    background-color: #daf6e3;
    margin-bottom: 10px;
}

.div-block-2 {
    background-color: #000;
    width: 100%;
    max-width: 100%;
    height: 2px;
}

.div-block-2.line {
    background-color: #ffffffba;
}

.hint-text {
    font-size: 16px;
}

.hint-text.new-fontstyle {
    font-family: Inria Sans, sans-serif;
}

.bold-text-33 {
    font-style: italic;
    font-weight: 600;
}

.bold-text-31 {
    color: #393939;
    font-size: 15px;
    font-weight: 400;
}

.div-block-3 {
    width: 100%;
}

.div-block-4 {
    grid-column-gap: 17px;
    grid-row-gap: 17px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.div-block-4.product-card {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    margin-bottom: 25px;
}

.div-block-5 {
    display: block;
}

.div-block-6 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-width: 60%;
    display: flex;
}

.div-block-7 {
    background-color: #000;
    width: 100%;
    height: 2px;
}

.bold-text-34 {
    font-family: Lato, sans-serif;
}

.text-block {
    font-family: Inria Sans, sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.header-elements {
    background-color: #dfdfdf;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    display: flex;
}

.header-elements.new-color {
    background-color: #77915d;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

.div-block-8 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
    display: flex;
}

.image-24 {
    position: relative;
    top: 12px;
}

.div-block-9 {
    position: absolute;
    inset: 0% 0% auto auto;
}

.div-block-10 {
    z-index: 1;
    background-color: #000;
    position: absolute;
    inset: 0% auto auto 0%;
}

.div-block-11 {
    position: relative;
    top: auto;
}

.container {
    z-index: 3;
    object-fit: fill;
    background-color: #000;
    width: 75px;
    position: absolute;
    top: 421px;
    right: 940px;
}

.image-25 {
    position: static;
}

.container-2 {
    object-fit: fill;
    background-color: #860404;
    width: 1000px;
    height: 445px;
    max-height: 600px;
    position: relative;
}

.div-block-12 {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    background-color: #fff;
    border-radius: 10px;
    justify-content: center;
    align-items: flex-start;
    width: 700px;
    height: 300px;
    display: flex;
    position: absolute;
    inset: 332px 0% 0% 13%;
}

.div-block-12.floatin-sec {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding-top: 0;
}

.image-26 {
    max-height: 470px;
}

.div-block-13 {
    grid-column-gap: 53px;
    grid-row-gap: 53px;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    display: flex;
}

.div-block-13.time-text-wrapper {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    flex-flow: row;
    justify-content: center;
    align-items: flex-start;
    max-width: 100%;
    margin-top: 0;
}

.text-block-2, .text-block-3 {
    color: #a3a3a3;
}

.heading-12 {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    font-family: Montserrat, sans-serif;
}

.paragraph-17 {
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
    font-family: Montserrat, sans-serif;
}

.div-block-14 {
    margin-top: 161px;
}

.content-wrapper {
    margin-top: 175px;
}

.container-3 {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    display: flex;
}

.para-norm {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 0;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    line-height: 24px;
}

.text-ben-wrapper {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    background-color: #ebfff1;
    border-radius: 10px;
    flex-flow: column;
    margin-top: 20px;
    padding: 20px;
    display: flex;
}

.text-ben-wrapper.no-space {
    margin-top: auto;
    padding-top: 10px;
}

.text-ben-wrapper.new-color {
    background-color: #e0ffe7;
    border-radius: 0;
}

.text-ben-wrapper.new-color.new-space {
    margin-top: 30px;
}

.cell {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
}

.cell.align {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: flex-start;
    align-items: center;
}

.quick-stack {
    z-index: 0;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    text-align: left;
    margin-bottom: 40px;
    padding-top: 0;
    position: relative;
}

.div-block-15 {
    z-index: 0;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
    display: flex;
    position: relative;
}

.image-27 {
    z-index: 0;
    position: relative;
}

.text-block-4 {
    font-family: Inria Serif, sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.text-block-4.font-new {
    text-align: center;
    font-family: Montserrat, sans-serif;
}

.cell-5.align {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: flex-start;
    align-items: center;
}

.div-block-16 {
    z-index: 0;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
    display: flex;
    position: relative;
}

.div-block-16.product-benefit {
    justify-content: flex-start;
    align-items: center;
}

.image-28 {
    z-index: 0;
    position: relative;
}

.feature-wrapper {
    justify-content: center;
    align-items: center;
}

.paragraph-18 {
    text-align: center;
    font-family: Montserrat, sans-serif;
}

.div-block-17 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    display: flex;
}

.text-block-9 {
    margin-bottom: 10px;
    font-family: Montserrat, sans-serif;
}

.nl-3-adv-reasons-block-item-2 {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.nl-3-adv-reasons-block-item-2.reversed {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    flex-flow: row-reverse;
    margin-top: 20px;
}

.nl-3-adv-reasons-text-2 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
    max-width: 50%;
    display: flex;
}

.nl-3-adv-reasons-img-2 {
    border-radius: 30px;
    width: 400px;
    height: 400px;
}

.nl-3-adv-h-2.new-font {
    font-family: Inria Serif, sans-serif;
}

.nl-3-adv-h-2.new-font.small-size-28.modi-font {
    margin-top: 40px;
    font-family: Montserrat, sans-serif;
    font-size: 34px;
}

.nl-3-adv-h-2.new-font.small-size-28.modi-font.size-new {
    font-size: 26px;
    line-height: 36px;
}

.div-block-18 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    display: flex;
}

.text-block-10 {
    margin-bottom: 10px;
    font-family: Montserrat, sans-serif;
}

.nl-3-adv-reasons-block-item-3 {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.nl-3-adv-reasons-block-item-3.reversed {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    border: 1px solid #000;
    flex-flow: row-reverse;
    margin-top: 40px;
    margin-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
}

.nl-3-adv-reasons-text-3 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
    max-width: 50%;
    display: flex;
}

.nl-3-adv-reasons-img-3 {
    border-radius: 30px;
    width: 400px;
    height: 400px;
}

.nl-3-adv-reasons-img-3.new-size {
    width: 350px;
    height: 350px;
}

.nl-3-adv-h-3.new-font {
    font-family: Inria Serif, sans-serif;
}

.nl-3-adv-h-3.new-font.small-size-28.modi-font {
    margin-top: 40px;
    font-family: Montserrat, sans-serif;
    font-size: 34px;
}

.nl-3-adv-h-3.new-font.small-size-28.modi-font.size-new {
    font-size: 26px;
    line-height: 36px;
}

.div-block-19, .cta-new-sec {
    margin-top: 40px;
}

.tgl-header3 {
    background-color: #fff;
    border-bottom: 1px solid #0000001a;
    justify-content: center;
    align-items: center;
    display: flex;
}

.tgl-header3.new-border {
    border: 1px #000;
    border-bottom: 3px solid #000;
    padding-top: 10px;
    padding-bottom: 20px;
}

.tgl-header3.new-border.new-color-green {
    background-color: #77925d;
    border-bottom-style: none;
}

.adv-logo-header {
    max-height: 60px;
}

.paragraph-19 {
    margin-bottom: 0;
    text-decoration: none;
}

.nl-p-2 {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}

.nl-p-2.cta-nl-p {
    text-align: center;
}

.nl-p-2.cta-nl-p.p-mt {
    margin-bottom: 2em;
}

.section {
    justify-content: center;
    display: flex;
}

.cta-section-btn-2 {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    background-color: #000;
    border-radius: 10px;
    margin-top: 2em;
    padding: 15px 3em;
    font-size: 21px;
    line-height: 100%;
    text-decoration: none;
}

.cta-section-btn-2.mid-text-cta.cta-green {
    background-color: #1cbe00;
    border: 1px solid #1cbe00;
    width: 100%;
    margin-top: .5em;
}

.cta-section-btn-2.mid-text-cta.cta-green:hover {
    color: #1cbe00;
    background-color: #0000;
}

.cta-section-btn-2.mid-text-cta.cta-green.new-space {
    width: 75%;
    padding-left: 1em;
    padding-right: 1em;
}

.nl-2-p-2 {
    color: #000;
    margin-bottom: 20px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-style: normal;
    line-height: 150%;
}

.nl-2-p-2.ta-c {
    text-align: center;
    margin-bottom: 0;
}

.nl-2-p-2.ta-c.fs-i {
    font-style: italic;
}

.nl-2-p-2.testimonial-inside-p {
    background-color: #fff9be;
    border-radius: 15px;
    padding: 30px 20px;
}

.nl-2-heading-2 {
    color: #000;
    font-size: 56px;
    font-weight: 700;
    line-height: 100%;
}

.nl-2-heading-2.h-df.font-new-style {
    margin-top: 20px;
    margin-bottom: 0;
    font-family: Montserrat, sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 41px;
}

.nl-2-heading-2.h-df.font-new-style.green {
    color: #1b2e09;
}

.cta-section-item-step-2 {
    color: #000;
    text-align: left;
    flex: none;
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
    display: block;
}

.paragraph-20 {
    color: #000;
    font-style: italic;
}

.nl-cta-section-h1-2 {
    color: #000;
    text-align: center;
    margin-bottom: 1.5em;
    font-size: 36px;
    line-height: 120%;
}

.nl-sidebar-inner-2 {
    color: #000;
    background-color: #fff;
    border-radius: 15px;
    width: 100%;
    padding: 3em 1.5em;
    position: sticky;
    top: 20px;
}

.nl-sidebar-inner-2.border-up {
    border-top: 1px solid #000;
    border-radius: 0;
}

.nl-sidebar-inner-2.border-up.new-color {
    background-color: #fff;
    border-top-color: #dadada;
}

.nl-2-h1-2 {
    color: #000;
    margin-top: 0;
    margin-bottom: .5em;
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
}

.nl-2-h1-2.sidebar-heading {
    margin-top: .5em;
    font-size: 24px;
    font-weight: 400;
}

.nl-2-article-section-2 {
    text-align: left;
    background-color: #fff;
    border: 1px #dadada;
    border-top-style: solid;
    border-radius: 0;
    padding: 1em 1em 1em .5em;
}

.cta-section-item-step-description-2 {
    margin-bottom: 0;
}

.paragraph-21 {
    margin-top: 20px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    line-height: 150%;
}

.pro-card {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    justify-content: flex-start;
    margin-bottom: 20px;
    margin-left: 0;
    display: flex;
}

.paragraph-22 {
    color: #000;
    margin-bottom: 0;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    line-height: 150%;
}

.container-4 {
    max-width: 100%;
}

.div-block-20 {
    width: 100%;
}

.section-2 {
    width: 1400px;
    height: 280px;
}

.hero-image-wrapper {
    object-fit: fill;
    background-image: url('../images/Listicle-hike-image.jpg');
    background-position: 0 0;
    background-size: auto;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    height: 300px;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
}

.white.new-color {
    color: #fff;
}

.par-v4-content-wrapper {
    padding: 2em 0 3em;
}

.par-v4-subheading {
    font-size: 26px;
    font-weight: 400;
    line-height: 114%;
}

.par-v4-hero-img {
    width: 100%;
    margin-top: 1em;
    margin-bottom: .125em;
}

.whute {
    color: #fff;
}

.mob-hd1 {
    font-size: 38px;
}

.cursor {
    position: absolute;
    bottom: -25%;
    right: 0%;
}

.par-v4-p {
    margin-top: 1em;
    font-size: 21px;
    line-height: 160%;
}

.par-v4-p.new-space {
    margin-bottom: 40px;
}

.bold-text-10 {
    font-size: 24px;
}

.cta-btn-section {
    justify-content: center;
    align-items: center;
    margin-top: 2em;
    margin-bottom: 2em;
    display: flex;
    position: relative;
}

.btn-anmtd {
    text-align: center;
    letter-spacing: .5px;
    background-color: #ff8418;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 35px;
    font-size: 18px;
    line-height: 130%;
    display: block;
}

.bold-text-9, .par-v4-h-2 {
    color: #333;
}

.par-v4-content-wrapper-extra-paddings {
    padding-left: 3em;
    padding-right: 3em;
}

.par-v4-article-info {
    color: #8f8f8f;
    border-bottom: 1px solid #8f8f8f;
    padding-bottom: 5px;
    font-family: Droid Sans, sans-serif;
}

.update {
    text-align: center;
    background-color: #ffb8b8;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 10px;
    font-size: 21px;
    line-height: 160%;
}

.update.new-color-grn {
    background-color: #169954;
}

.header-text-main {
    color: #fff;
    margin-left: 100px;
    font-family: Montserrat, sans-serif;
    font-size: 49px;
    line-height: 52px;
}

.main-content {
    flex-flow: column;
    display: flex;
}

.div-block-21 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    display: flex;
}

.nl-3-adv-h-4.new-font {
    font-family: Inria Serif, sans-serif;
}

.nl-3-adv-h-4.new-font.small-size-28.modi-font {
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    line-height: 26px;
}

.quick-stack-2 {
    border: 1px solid #000;
}

.offer-box-22 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border: 2px solid #c9c9c9;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    padding: 20px;
    display: flex;
}

.offer-box-22.new-border {
    background-color: #f8ffdf;
    border-width: 4px;
    border-color: #7eac4f;
}

.div-block-23 {
    color: #fff;
    background-color: #543dff;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    display: flex;
}

.div-block-24 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
    display: flex;
}

.div-block-25 {
    object-fit: fill;
    background-color: #9c9a9a;
    height: 2px;
    margin-bottom: 20px;
}

.button-5 {
    background-color: #7eac4f;
    justify-content: center;
    align-items: center;
    padding: 10px 100px;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 700;
    display: flex;
}

.paragraph-23 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 13px;
}

.div-block-26 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
}

.paragraph-24 {
    padding-left: 10px;
    padding-right: 10px;
    font-family: Montserrat, sans-serif;
    font-size: 15px;
}

.paragraph-25 {
    font-family: Montserrat, sans-serif;
    font-size: 35px;
    font-weight: 700;
}

.text-block-11 {
    text-align: center;
}

.testimonial-wrapper {
    display: flex;
}

.button-6 {
    color: #feffe4;
    text-align: center;
    letter-spacing: 2.148px;
    text-transform: uppercase;
    background-color: #04c100;
    border: 2px solid #04c100;
    border-radius: 10px;
    padding: 15px 2em;
    font-family: Lato, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    transition: all .4s;
}

.button-6:hover {
    color: #000;
    background-color: #04c10000;
    border-width: 2px;
}

.button-6.mid-article-button {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 14px;
}

.button-6.mid-article-button.mb-0 {
    color: #000;
    letter-spacing: 0;
    background-color: #fff;
    border-color: #fff;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
}

.button-6.mid-article-button.mb-0:hover {
    color: var(--white);
    -webkit-text-stroke-color: #fff;
    background-color: #7eac4f;
}

.body-7 {
    background-color: #e4e4e4;
}

.div-block-28 {
    flex-flow: column;
    display: flex;
}

.container-6 {
    background-color: #fff;
    border: 0 #0000;
    justify-content: center;
    align-items: center;
    max-width: 733px;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
}

.section-4 {
    opacity: 1;
    border: 0 #000;
}

.section-5 {
    border: 1px solid #0000;
}

.header1 {
    background-color: #fff;
    justify-content: center;
    align-items: center;
    max-width: 733px;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
}

.hero-title-wrapper {
    max-width: 1200px;
    margin-left: 0;
}

.nl-2-h1-4 {
    color: #000;
    margin-top: 1em;
    margin-bottom: auto;
    font-family: Inria Sans, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
}

.nl-2-h1-4.sidebar-heading {
    margin-top: .5em;
    font-size: 24px;
    font-weight: 400;
}

.nl-2-h1-4.new-space {
    margin-top: 1.2em;
    margin-bottom: 20px;
    font-family: Lato, sans-serif;
    line-height: 120%;
}

.nl-2-h1-4.new-space.pad-adj {
    margin-top: .5em;
    line-height: 135%;
}

.nl-2-h1-4.new-space.pad-adj.margin-top-4 {
    margin-top: .125em;
}

.nl-2-h1-4.new-space.pad-adj.margin-top-10 {
    margin-top: 0;
}

.nl-2-h1-4.space-new {
    margin-top: .6em;
    margin-bottom: 20px;
    font-family: Montserrat, sans-serif;
}

.nl-2-h1-4.margin-new {
    margin-top: -1em;
    font-family: Montserrat, sans-serif;
}

.nl-2-h1-4.margin-new.padding-font-adj {
    margin-top: -.1em;
    margin-bottom: 30px;
}

.nl-2-h1-4.margin-new.font-pace {
    margin-top: 0;
    margin-bottom: -10px;
}

.nl-2-h1-4.margin-new.add-top-mar {
    margin-top: .25em;
}

.nl-2-h1-4.new-padding {
    margin-top: 1.9em;
    font-family: Montserrat, sans-serif;
}

.nl-2-h1-4.spacing-adj {
    margin-top: 1.4em;
    font-family: Montserrat, sans-serif;
    line-height: 135%;
}

.nl-2-h1-4.padding-adj {
    margin-top: .5em;
    font-family: Montserrat, sans-serif;
}

.nl-2-h1-4.padding-adj.new-soace {
    margin-top: 1.5em;
}

.nl-2-h1-4.padding-adj.new-adj {
    margin-top: 0;
    margin-bottom: 20px;
}

.nl-2-h1-4.padding-adj.new-space-adjust {
    margin-top: 1.2em;
    margin-bottom: 20px;
}

.nl-2-h1-4.padding-adj.new-space-adjust.margin-top-new-7 {
    background-color: #0000;
    margin-top: 1.5em;
}

.nl-2-h1-4.padding-adj.new-space-adjust.margin-top-08 {
    margin-top: 1.5em;
}

.nl-2-h1-4.padding-adj.new-adjust {
    margin-top: .4em;
    margin-bottom: 30px;
}

.nl-2-h1-4.padding-new {
    margin-top: 1.8em;
}

.nl-2-h1-4.space-pad {
    margin-top: 2em;
}

.nl-2-h1-4.pad-space {
    margin-top: 2em;
    font-family: Montserrat, sans-serif;
}

.nl-2-h1-4.new-pace {
    margin-top: .5em;
    font-family: Montserrat, sans-serif;
}

.nl-2-h1-4.new-pace.padding-new {
    margin-top: 0;
    margin-bottom: 20px;
}

.nl-2-h1-4.space {
    margin-top: 0;
    font-family: Montserrat, sans-serif;
    line-height: 135%;
}

.nl-2-h1-4.space.new-space-adjust {
    margin-top: 1em;
}

.nl-2-h1-4.padding-con {
    margin-top: 1.2em;
    margin-bottom: 20px;
    font-family: Montserrat, sans-serif;
}

.nl-cta-section-h1-3 {
    color: #000;
    text-align: center;
    margin-bottom: 1.5em;
    font-family: Inria Sans, sans-serif;
    font-size: 36px;
    line-height: 120%;
}

.paragraph-36 {
    color: #000;
    font-family: Inria Sans, sans-serif;
    font-style: italic;
}

.paragraph-35 {
    margin-bottom: 0;
    text-decoration: none;
}

.cta-section-item-step-3 {
    color: #000;
    text-align: left;
    flex: none;
    font-family: Inria Sans, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
    display: block;
}

.cta-section-btn-4 {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    background-color: #000;
    border-radius: 10px;
    margin-top: 2em;
    padding: 15px 3em;
    font-family: Inria Sans, sans-serif;
    font-size: 21px;
    line-height: 100%;
    text-decoration: none;
}

.nl-footer-wrapper-2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 3em;
    display: flex;
}

.paragraph-37, .paragraph-38 {
    text-align: center;
}

.cta-section-btn-5 {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    background-color: #000;
    border-radius: 10px;
    margin-top: 2em;
    padding: 15px 3em;
    font-family: Inria Sans, sans-serif;
    font-size: 21px;
    line-height: 100%;
    text-decoration: none;
}

.paragraph-39 {
    margin-bottom: 0;
    text-decoration: none;
}

.bold-text-35 {
    line-height: 58px;
}

.bold-text-36 {
    font-family: Montserrat, sans-serif;
    font-size: 43px;
    line-height: 50px;
}

.image-30 {
    width: 100%;
}

.doc-review {
    background-color: #ebf5f7;
    border-radius: 10px;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    display: none;
}

.paragraph-40 {
    color: #000;
    margin-bottom: 0;
    margin-left: 10px;
    font-family: Open Sans, sans-serif;
    font-size: 17px;
}

.paragraph-40.new-space {
    color: #00888f;
    margin-bottom: 30px;
}

.paragraph-40.new-space.new-font-style {
    color: #538024;
    font-family: Lato, sans-serif;
}

.image-31 {
    max-height: 25px;
}

.main-header {
    text-align: center;
    margin-bottom: 0;
    margin-left: 20px;
    margin-right: 20px;
    font-family: Montserrat, sans-serif;
    font-size: 26px;
    line-height: 107%;
}

.doc-review-left {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 70%;
    padding: 2em;
    display: flex;
}

.subhead-cite-2 {
    background-color: #dbe6ff;
    border-radius: 10px;
    width: 100%;
    margin-top: 1em;
    margin-bottom: 1em;
    padding: 2em;
    display: none;
}

.doc-review-right {
    padding-top: 1em;
    position: relative;
}

.nl-p-3 {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}

.nl-p-3.cta-nl-p {
    text-align: center;
    font-size: 20px;
}

.nl-p-3.cta-nl-p.new-size {
    font-size: 25px;
}

.paragraph-41 {
    color: #000;
    margin-bottom: 0;
    margin-left: 15px;
    font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
    display: none;
}

.bold-text-37 {
    font-family: Montserrat, sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 110%;
}

.bold-text-37.new-size {
    background-color: #f2ff0000;
    font-size: 25px;
    font-weight: 600;
    line-height: 35px;
}

.paragraph-42 {
    margin-bottom: 0;
    line-height: 113%;
    text-decoration: none;
}

.paragraph-43 {
    color: #fff;
    margin-bottom: 0;
    margin-left: .5em;
    font-family: Oswald, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
}

.testimonials-box-4 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: row;
    justify-content: space-between;
    margin-top: 30px;
    display: flex;
}

.bold-text-38 {
    color: #000;
    font-family: Open Sans, sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 100%;
}

.bold-text-39 {
    font-size: 16px;
}

.bold-text-40 {
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    line-height: 89%;
}

.nl-6-p-about-article-2 {
    color: #00888f;
    margin-bottom: 0;
    font-size: 15px;
}

.customer-review-chart {
    flex-flow: column;
    width: 100%;
    display: flex;
}

.heading-14 {
    font-family: Montserrat, sans-serif;
    font-size: 25px;
}

.heading-15 {
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
}

.review-header {
    background-color: #fff;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: -21px;
    display: flex;
}

.testimonial-img-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
}

.bold-text-41 {
    color: #00888f;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.body-8 {
    max-width: 1200px;
}

.cta-section-btn-6 {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    background-color: #000;
    border-radius: 10px;
    margin-top: 2em;
    padding: 15px 3em;
    font-family: Inria Sans, sans-serif;
    font-size: 21px;
    line-height: 100%;
    text-decoration: none;
}

.paragraph-44 {
    margin-bottom: 0;
    text-decoration: none;
}

.nl-2-body {
    flex-direction: column;
    align-items: center;
    display: flex;
}

.uvlizer-logo {
    max-height: 30px;
}

.cta-section-item-step-4 {
    color: #000;
    text-align: left;
    flex: none;
    font-family: Inria Sans, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
    display: block;
}

.nl-cta-section-h1-4 {
    color: #000;
    text-align: center;
    margin-bottom: 1.5em;
    font-family: Inria Sans, sans-serif;
    font-size: 36px;
    line-height: 120%;
}

.paragraph-45 {
    color: #000;
    font-family: Inria Sans, sans-serif;
    font-style: italic;
}

.bold-text-48 {
    text-align: center;
}

.text-span-13, .text-span-14, .text-span-15, .text-span-16 {
    background-color: #ffefb8;
}

.header-wrap-container {
    grid-column-gap: 700px;
    grid-row-gap: 700px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    display: flex;
}

.text-span-17 {
    background-color: #ffb700;
}

.text-span-18 {
    background-color: #ffda69;
}

.text-span-19 {
    background-color: #e0ffe7;
}

.body-new-7 {
    background-color: #eef0f4;
}

.top-head-ban {
    z-index: 999999999;
    background-color: #ffa200;
    width: 100%;
    position: sticky;
    top: 0;
    overflow: hidden;
}

.header-banner-wrapper {
    background-color: #ffa200;
    justify-content: flex-start;
    align-items: center;
    padding-top: 1em;
    padding-bottom: 1em;
    display: flex;
}

.header-banner-wrapper.blackfriday-head-banner {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    background-color: #ffc035;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    padding: .5em 2em;
}

.marquee-msg-container {
    flex-flow: row;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    min-width: 70%;
    height: auto;
    display: flex;
}

.marquee-message {
    white-space: nowrap;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 120%;
    display: inline;
}

.marquee-message.new-color {
    color: #fff;
}

.achtung-span {
    color: red;
    margin-left: 25px;
    margin-right: 25px;
    font-weight: 800;
}

.body-9 {
    font-family: Open Sans, sans-serif;
}

.div-block-31 {
    width: 100%;
    height: 50px;
    display: flex;
}

.promo-text {
    color: #fff;
    background-color: #dd0b0000;
    border: 2px #fff;
    padding: 5px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.promo-text.new-style-adj {
    color: #fff;
    background-color: #e20009;
}

.promo-text.new-back {
    background-color: #dd0b00f5;
    font-size: 14px;
    font-weight: 500;
}

.promo-text.new-back.text-color-mod {
    color: #000;
    background-color: #1b1b1b00;
    border: 2px #000;
    font-size: 16px;
    font-weight: 500;
}

.promo-text.new-size {
    font-size: 21px;
}

.promo-text.new-text-adj {
    background-color: #dd0b0000;
    border-style: solid none none;
    border-width: 1px;
    font-size: 14px;
    font-weight: 400;
}

.promo-text.new-text-adj.new-color-set {
    background-color: #dd0b00;
    border-style: none;
}

.bfd-header-wrapper {
    background-color: #ffc136;
}

.new-color-highlight {
    color: #000;
}

.eq-v2-header {
    border-bottom: 1px solid #0000001a;
    justify-content: center;
    align-items: center;
    display: flex;
}

.eq-v2-header.new-color-bk {
    background-color: #538125;
}

.logo-placeholder {
    background-color: #0000;
    max-height: 35px;
}

.cta-btn {
    text-align: center;
    text-transform: uppercase;
    background-color: #039f00;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 2em;
    padding: 1.25em 2em;
    font-size: 16px;
    line-height: 100%;
}

.cta-btn.new-color {
    cursor: pointer;
    background-color: #538125;
}

.cta-btn.new-color:hover {
    color: #538125;
    background-color: #53812500;
    border: 2px solid #538125;
}

.cta-btn.new-color.top-mar-adjust {
    margin-top: 20px;
}

.comparison-cards-box {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    justify-content: center;
    align-items: stretch;
    margin-top: 3em;
    display: flex;
}

.comparison-cards-box.top-mar-adj {
    margin-top: 0;
}

.image-32 {
    background-color: #fff;
    border-radius: 10px;
}

.eq-v2-author-img-2 {
    max-height: 60px;
}

.bold-text-30 {
    font-size: 44px;
    font-weight: 700;
    line-height: 110%;
}

.paragraph-7 {
    color: #929292;
    margin-bottom: 0;
    font-family: Lato, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
}

.eq-v2-main-wrapper-3 {
    border-bottom: 1px solid #0000001a;
    border-left: 1px solid #0000001a;
    border-right: 1px solid #0000001a;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    padding-bottom: 4em;
    display: flex;
}

.t-content-2 {
    text-align: center;
    margin-top: 20px;
    font-family: Lato, sans-serif;
    font-size: 16px;
    line-height: 130%;
}

.t-author-name-2 {
    color: #000;
    margin-bottom: 0;
    font-family: Lato, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
}

.t-author-name-2.new-space-mar-top {
    margin-top: 20px;
}

.eq-v2-p-5 {
    color: #000;
    margin-bottom: 30px;
    font-family: Lato, sans-serif;
    font-size: 18px;
    line-height: 150%;
}

.eq-v2-p-5.new-bold {
    text-transform: uppercase;
    font-weight: 700;
}

.eq-v2-h2-3 {
    color: #000;
    text-align: center;
    margin-bottom: 30px;
    font-family: Lato, sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 100%;
}

.text-block-p-2 {
    font-size: 16px;
    line-height: 150%;
}

.img-s-w {
    width: 100%;
    margin-bottom: 2em;
}

.comparison-card {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    background-color: #eceef0;
    border: 1px solid #0000001a;
    border-radius: 15px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: center;
    width: 31%;
    padding: 2em;
    display: flex;
}

.comparison-card.z-index-0.new-style-adj {
    outline-offset: 0px;
    cursor: pointer;
    border-width: 0;
    outline: 3px #00e;
    width: 100%;
    padding-bottom: 0;
}

.brand-price-2 {
    color: #e00;
    font-size: 44px;
    font-weight: 400;
    line-height: 100%;
}

.brand-price-2.new-color {
    color: #00c20c;
}

.brand-price-2.new-color.bk-color-green {
    color: #fff;
    background-color: #538125;
    padding: 5px 10px;
    font-weight: 700;
}

.brand-price-2.new-size {
    color: #000;
    text-align: center;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    text-decoration: underline;
}

.brand-price-2.new-size.num-price-text {
    color: #fff;
    background-color: #538125;
    padding: 5px 10px;
    font-size: 44px;
    text-decoration: none;
    display: flex;
}

.brand-price-2.new-size.text-deco-new {
    text-transform: none;
    overflow-wrap: normal;
    -webkit-text-decoration-skip-ink: auto;
    text-decoration-skip-ink: auto;
    font-size: 16px;
    font-weight: 400;
    -webkit-text-decoration: none;
    text-decoration: none;
}

.eq-v2-heading-5 {
    color: #000;
    text-align: center;
    margin-top: 1em;
    margin-bottom: .5em;
    font-family: Lato, sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 120%;
}

.eq-v2-author-2 {
    align-items: center;
    margin-top: 1em;
    margin-bottom: 1em;
    display: flex;
}

.eq-author-info-2 {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 15px;
    display: flex;
}

.img-disclaimer {
    color: #8b8b8b;
    text-align: left;
    margin-top: -1.5em;
    margin-bottom: 20px;
    font-family: Lato, sans-serif;
    font-size: 16px;
    line-height: 100%;
}

.testimonial-2 {
    color: #000;
    border: 1px solid #0000001a;
    border-radius: 5px;
    flex-direction: column;
    align-items: center;
    max-width: 33%;
    padding: 2em 1.5em;
    display: flex;
}

.image-33 {
    background-color: #fff;
    border-radius: 10px;
}

.cell-8 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    cursor: pointer;
    background-color: #eceef0;
    border-radius: 10px;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}

.cell-8:hover {
    box-shadow: 0 2px 5px 3px #0003;
}

.eq-v2-author-img-3 {
    max-height: 60px;
}

.bold-text-50 {
    font-size: 44px;
    font-weight: 700;
    line-height: 110%;
}

.paragraph-46 {
    color: #929292;
    margin-bottom: 0;
    font-family: Lato, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
}

.eq-v2-p-6 {
    color: #000;
    margin-bottom: 30px;
    font-family: Lato, sans-serif;
    font-size: 18px;
    line-height: 150%;
}

.eq-v2-p-6.new-bold {
    text-transform: uppercase;
    font-weight: 700;
}

.eq-v2-p-6.quote {
    font-style: italic;
}

.eq-v2-h2-4 {
    color: #000;
    text-align: center;
    margin-bottom: 30px;
    font-family: Lato, sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 100%;
}

.eq-v2-heading-6 {
    color: #000;
    text-align: center;
    margin-top: 1em;
    margin-bottom: .5em;
    font-family: Lato, sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 120%;
}

.eq-author-info-3 {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 15px;
    display: flex;
}

.alt-comparison-card-2 {
    flex: 0 auto;
}

.testimonial-3 {
    color: #000;
    border: 1px solid #0000001a;
    border-radius: 5px;
    flex-direction: column;
    align-items: center;
    max-width: 33%;
    padding: 2em 1.5em;
    display: flex;
}

.text-wrap-benefit {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.image-34 {
    background-color: #fff;
    border-radius: 10px;
}

.html-embed-3 {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.z2a-d-header {
    background-color: #000;
}

.z2a-d-header-wrapper {
    color: #b15656;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
}

.z2a-d-header-wrapper.new-color {
    background-color: #b18aee;
}

.z2a-d-header-logo {
    max-height: 50px;
}

.score-section-cta {
    text-align: center;
    background-color: #000;
    border-radius: 15px;
    width: 100%;
    margin-top: 1em;
    margin-bottom: 1em;
    padding: 1em 2em;
    font-family: Lato, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
}

.score-section-cta.new-color {
    background-color: #4441d9;
}

.score-section-cta.new-color.color-green {
    background-color: #538024;
}

.score-section-cta.new-color.color-yellow {
    background-color: #b18aee;
}

.system-req-box-wrapper {
    padding: 1em 2em;
}

.system-req-box-wrapper.bg-color {
    background-color: #ffe177;
}

.system-req-box-wrapper.bg-color.new-colr {
    background-color: #fffad5;
}

.system-req-box-wrapper.bg-color.new-colr.color-adj {
    background-color: #eeffe5;
}

.bold-text-51 {
    font-family: Montserrat, sans-serif;
    font-size: 16px;
}

.z2a-d-content-wrapper {
    background-color: #fff;
    width: 50%;
}

.bold-text-52 {
    font-family: Lato, sans-serif;
    font-style: normal;
    font-weight: 700;
}

.bold-text-53 {
    font-weight: 700;
}

.z2a-d-p {
    color: #000;
    margin-top: 15px;
    margin-bottom: 15px;
    font-family: Lato, sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 140%;
}

.z2a-d-p.mt-1 {
    margin-top: 2em;
    font-size: 18px;
}

.z2a-d-hero-img {
    width: 100%;
}

.z2a-d-about-article {
    border-bottom: 1px solid #fff;
    justify-content: space-between;
    padding-bottom: 5px;
    display: flex;
}

.z2a-d-h {
    color: #000;
    text-transform: none;
    margin-top: 30px;
    margin-bottom: 20px;
    font-family: Lato, sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}

.z2a-d-author-name-in-article {
    color: #000;
    text-transform: uppercase;
    margin-bottom: 0;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
}

.article-heading {
    color: #000;
    text-transform: capitalize;
    font-family: Lato, sans-serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}

.button-7 {
    color: #000;
    text-align: center;
    background-color: #ffe177;
    border-radius: 100px;
    min-width: 60%;
    margin-top: 20px;
    padding: 1em 5em;
    font-family: Lato, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 140%;
}

.button-7.m-auto {
    border: 2px solid #ffe177;
    margin-left: auto;
    margin-right: auto;
    transition: all .4s;
    display: block;
}

.button-7.m-auto:hover {
    background-color: #0000;
}

.button-7.m-auto.new-color {
    color: #fff;
    background-color: #4441d9;
    border-color: #4441d9;
}

.regular-img {
    width: 100%;
    display: none;
}

.article-info {
    color: #000;
    text-transform: uppercase;
    margin-bottom: 0;
    font-family: Lato, sans-serif;
    font-weight: 600;
}

.z2a-d-content-wrapper-inner {
    min-height: 0;
    padding: 2em 3em;
}

.text-span-20 {
    font-style: normal;
}

.z2a-d-content {
    background-color: #f8f8f8;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    font-family: Lato, sans-serif;
    display: flex;
}

.system-req-box {
    border: 1px solid #0000001a;
    border-radius: 15px;
    margin-bottom: 2em;
    overflow: hidden;
}

.features-list-item-3 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    align-items: flex-start;
    display: flex;
}

.features-list-item-3.space-mar-adj {
    margin-top: 40px;
    margin-bottom: 40px;
}

.features-list-item-img-2 {
    width: 400px;
}

.features-img-3 {
    border-radius: 30px;
    width: 100%;
    margin-bottom: 20px;
}

.features-list-item-info-3 {
    max-width: 60%;
}

.features-list-item-text-h-3 {
    color: #000;
    margin-top: 0;
    margin-bottom: 20px;
    font-family: Lato, sans-serif;
    font-size: 32px;
    line-height: 110%;
}

.bold-text-54 {
    font-family: Lato, sans-serif;
}

.pcp-box-ul {
    background-color: #f5ffa5;
    border-radius: 15px;
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 2em 2em 2em 3em;
}

.pcp-box-ul.new-color-bk-adj {
    background-color: #fff8ab;
}

.pcp-box-ul.new-color-bk-adj.new-chan-col {
    background-color: #feffdb;
}

.pcp-box-ul.new-color-bk-adj.new-chan-col.no-space-mar {
    margin-top: 0;
    margin-bottom: 0;
}

.pcp-box-li.par-v4-p.new-font-style {
    text-align: left;
    font-family: Inria Sans, sans-serif;
    font-size: 18px;
    line-height: 150%;
}

.pcp-box-li.par-v4-p.new-font-style.style-font-adj {
    font-family: Montserrat, sans-serif;
}

.pcp-box-li.par-v4-p.new-font-style {
    font-family: Open Sans, sans-serif;
    font-size: 18px;
    line-height: 150%;
}

.pcp-box-li.par-v4-p.new-font-style.adj-new-1 {
    font-family: Inria Sans, sans-serif;
}

.pcp-box-li.par-v4-p.new-font-style.li-first-child-margin {
    margin-top: 0;
    font-family: Lato, sans-serif;
}

.pcp-box-li.par-v4-p.new-font-style.li-first-child-margin.new-font-adj {
    font-family: Montserrat, sans-serif;
}

.tgl-hero-img-2 {
    margin-bottom: 1em;
}

.tgl-p-2 {
    color: #000;
    margin-bottom: 20px;
    font-family: Lato, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}

.tgl-p-2.new-text-adj {
    font-family: Inria Sans, sans-serif;
}

.pcp-box-ul-3 {
    margin-bottom: 0;
    padding-left: 20px;
}

.new-font-style {
    font-family: Montserrat, sans-serif;
}

.ipl-header {
    background-color: #fff;
    justify-content: center;
    align-items: center;
    display: flex;
}

.lpi-logo {
    max-height: 70px;
}

.lpi-author-img {
    max-height: 50px;
}

.if-icon {
    height: 30px;
}

.lpi-ul {
    padding-left: 20px;
    font-size: 21px;
}

.lpi-author {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    justify-content: flex-start;
    align-items: center;
    margin-top: 1em;
    margin-bottom: 1em;
    display: flex;
}

.paragraph-47 {
    margin-bottom: 0;
    text-decoration: none;
}

.adv-text {
    color: #cfcfcf;
}

.lpi-main-heading {
    font-size: 44px;
    font-weight: 700;
    line-height: 107%;
}

.lpi-main {
    background-color: #ededed;
    justify-content: center;
    align-items: flex-start;
    display: flex;
}

.if-body {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.lpi-list-box {
    background-color: #f2f2f2;
    border: 1px solid #0000001a;
    border-radius: 15px;
    margin-bottom: 1.5em;
    padding: 2em;
}

.lpi-cv {
    border-radius: 10px;
    width: 48%;
    overflow: hidden;
}

.insta-frame-wrapper {
    width: 100%;
}

.lpi-content {
    background-color: #fff;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 750px;
    padding: 3em 2em;
    display: flex;
}

.if-head {
    align-items: center;
    width: 100%;
    padding: 1em;
    display: flex;
}

.p {
    margin-bottom: 1em;
    font-family: Lato, sans-serif;
    font-size: 18px;
    line-height: 150%;
}

.p.mb-0 {
    margin-bottom: 0;
}

.p.if-profile-name {
    margin-bottom: 0;
    margin-left: .5em;
    font-size: 18px;
    font-weight: 700;
}

.p.if-profile-name.m-0 {
    margin-left: 0;
}

.p.author-name-p {
    margin-bottom: 0;
    font-weight: 700;
}

.p.publish-date {
    margin-bottom: 0;
    font-size: 14px;
}

.p.p-post-text {
    margin-top: .5em;
    font-size: 16px;
    line-height: 150%;
}

.p.p-likes {
    margin-top: .5em;
    margin-bottom: 0;
    font-weight: 700;
}

.p.at-p {
    color: #fff;
    margin-bottom: 0;
}

.lpi-customer-videos {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-flow: wrap;
    width: 100%;
    max-height: none;
    margin-bottom: 1em;
    display: flex;
}

.if-icons-left {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    display: flex;
}

.if-icons {
    justify-content: space-between;
    display: flex;
}

.h2 {
    font-size: 32px;
    line-height: 110%;
}

.h2.h-cta-section {
    text-align: center;
    margin-bottom: .5em;
}

.h2.tc-white {
    color: #fff;
}

.h2.tc-white.h-scta {
    max-width: 50%;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 28px;
    font-weight: 500;
    display: none;
}

.pp-cta-img {
    max-height: 300px;
}

.lpi-bg {
    z-index: 999;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    width: 100%;
    max-height: none;
}

.lpi-bg.no-size-edit {
    aspect-ratio: 16 / 9;
}

.insta-frame {
    border: 1px solid #0000001a;
    border-radius: 3px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 70%;
    margin-top: 2em;
    margin-bottom: 2em;
    padding-bottom: 1em;
    display: flex;
}

.lpi-hero-img {
    border-radius: 15px;
    margin-bottom: 2em;
}

.if-banner-video {
    aspect-ratio: 2 / 3;
    width: 100%;
    display: none;
}

.if-profile-img {
    border-radius: 50px;
    max-height: 35px;
}

.cta-section-btn-7 {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    background-color: #000;
    border-radius: 10px;
    margin-top: 2em;
    padding: 15px 3em;
    font-size: 21px;
    line-height: 100%;
    text-decoration: none;
}

.cta-section-btn-7.lpi-cta-section-btn {
    margin-top: .5em;
    margin-bottom: 1em;
}

.nl-p-4 {
    color: #000;
    font-family: Inria Sans, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}

.nl-p-4.cta-nl-p {
    text-align: center;
}

.if-banner {
    width: 100%;
}

.if-divider {
    background-color: #0000001a;
    width: 100%;
    height: 1px;
    margin: 1em auto;
}

.verified-icon {
    max-height: 20px;
    margin-left: .5em;
}

.lpi-article-tag {
    background-color: #d200b2;
    border-radius: 15px;
    padding: .35em 1em;
    display: flex;
}

.insta-hashtag {
    color: #00376b;
}

.lpi-cta-sticky-section {
    z-index: 2147483647;
    background-color: #303030;
    justify-content: center;
    align-items: center;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    display: flex;
    position: sticky;
    bottom: 0;
}

.lpi-cta-sticky-section-wrapper {
    justify-content: space-between;
    align-items: center;
    max-width: 700px;
    display: flex;
}

.lpa-sticky-section-btn {
    color: #1e1e1e;
    background-color: #7aeb00;
    border: 2px solid #7aeb00;
    border-radius: 15px;
    padding: 1em 4em;
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    transition: all .4s cubic-bezier(.23, 1, .32, 1);
}

.lpa-sticky-section-btn:hover {
    transform: translate(-5px, -5px);
    box-shadow: 3px 3px #fff;
}

.plain-bg-vid, .plain-bg-vid-2 {
    z-index: 999;
    border-radius: 15px;
    width: 100%;
    margin-bottom: 1em;
}

.plain-bg-vid-2.no-corner-radius {
    border-radius: 0;
}

.background-video-5 {
    max-height: 400px;
}

.nl-6-testimonial-2 {
    grid-column-gap: 11px;
    grid-row-gap: 11px;
    border: 1px solid #0000001a;
    border-radius: 15px;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2em;
    display: flex;
}

.nl-6-testimonial-name-2 {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
}

.quick-stack-3 {
    width: 700px;
}

.plain-bg-vid-3 {
    z-index: 999;
    border-radius: 15px;
    width: 100%;
    margin-bottom: 1em;
}

.plain-bg-vid-3.no-corner-radius {
    border-radius: 0;
}

.cell-32 {
    justify-content: flex-start;
    align-items: center;
}

.quick-stack-4 {
    width: 700px;
}

.cell-34 {
    justify-content: flex-start;
    align-items: center;
}

.hf-embedding {
    background-color: #fff;
    border-radius: 30px;
    margin-top: 3em;
}

.hf-embedding-code {
    padding: 3em;
}

@media screen and (min-width: 1440px) {
    .tgl-content {
        justify-content: center;
        align-items: flex-start;
    }

    .tgl-content-main {
        width: 100%;
    }

    .tgl-p.sources {
        object-fit: fill;
        font-size: 8px;
    }

    .tgl-hero-img {
        margin-bottom: 20px;
    }

    .tgl-cta-btn.sidebar-cta-btn {
        font-size: 19px;
    }

    .image-5 {
        width: 100%;
    }

    .button.mid-article-button {
        justify-content: flex-start;
        display: block;
    }

    .swiper-wrapper {
        justify-content: flex-start;
        align-items: center;
        overflow: visible;
    }

    .swiper-slide.swiper-custom {
        align-items: center;
    }

    .slider-substrate {
        z-index: 1;
        position: absolute;
        inset: 0%;
    }

    .swiper-button-next {
        z-index: 999;
        background-color: #03030300;
        position: absolute;
        inset: 0% 0% 0% auto;
    }

    .hg-slider-box {
        justify-content: center;
        align-items: center;
        display: flex;
        overflow: hidden;
    }

    .eq-v2-p, .eq-v2-p.sources {
        font-size: 18px;
    }

    .swiper-button-prev {
        z-index: 999;
        background-color: #fff0;
        position: absolute;
        inset: 0% auto 0% 0%;
    }

    .swiper.swiper-custom {
        z-index: 2;
        height: 100%;
        position: relative;
        inset: 0%;
    }

    .nl-content-piece.cta-section, .nl-hero-description, .nl-p.features-list-item-text-p.p-testimonial-inside {
        background-color: #ffc364;
    }

    .hg-slider-box-2 {
        justify-content: center;
        align-items: center;
        padding: 2em 3em;
        display: flex;
        overflow: hidden;
    }

    .swiper-wrapper-2 {
        justify-content: flex-start;
        align-items: center;
        overflow: visible;
    }

    .button-6.mid-article-button {
        justify-content: flex-start;
        display: block;
    }

    .image-30 {
        width: 100%;
    }
}

@media screen and (min-width: 1920px) {
    .z2a-d-about-article {
        border-bottom-color: #000;
    }

    .nl-p-4 {
        text-align: left;
    }
}

@media screen and (max-width: 991px) {
    .tgl-content-wrapper {
        flex-direction: column;
        align-items: center;
        width: 95%;
    }

    .tgl-header-wrapper {
        align-items: center;
        width: 95%;
    }

    .logo {
        margin-bottom: 0;
        margin-right: 0;
    }

    .logo.logo-footer {
        margin-bottom: 1em;
    }

    .tgl-content-main {
        width: 100%;
    }

    .tgl-content-sidebar {
        width: 35%;
        display: none;
    }

    .tgl-p.sources {
        font-size: 8px;
    }

    .tgl-hero-img {
        margin-bottom: 20px;
    }

    .tgl-cta-btn.sidebar-cta-btn, .tgl-cta-btn.tgl-mcb-cta-btn {
        margin-top: .5em;
        margin-bottom: 1em;
    }

    .tgl-cta-btn.off-on-mobiles {
        display: none;
    }

    .tgl-footer-wrapper {
        align-items: center;
        width: 95%;
    }

    .tgl-logo-links {
        flex-direction: column;
    }

    .tgl-footer-link {
        margin-bottom: 15px;
        margin-left: 0;
        margin-right: 0;
    }

    .paragraph {
        text-align: center;
        display: block;
    }

    .sidebar-inner {
        flex-direction: column;
        position: static;
    }

    .tgl-sidebar-p {
        text-align: center;
    }

    .image-5 {
        width: 100%;
    }

    .tgl-mobile-cta-section {
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 2em;
        display: flex;
    }

    .tgl-mobile-cta-section-inner {
        border: 1px solid #0000001a;
        border-radius: 15px;
        flex-direction: column;
        align-items: center;
        width: 80%;
        padding: 3em 5em;
        display: flex;
        position: relative;
        overflow: hidden;
    }

    .tgl-cta-product-img {
        width: 90%;
    }

    .tgl-mobile-cta-box-h {
        text-align: center;
        font-family: Open Sans, sans-serif;
        font-size: 32px;
        line-height: 120%;
    }

    .tgl-mobile-cta-box-p {
        text-align: center;
        font-family: Open Sans, sans-serif;
        font-size: 18px;
        line-height: 120%;
    }

    .text-span {
        color: #fff;
        text-transform: uppercase;
        background-color: #6880ff;
        padding-left: 5px;
        padding-right: 5px;
        font-size: 21px;
    }

    .cta-mobile-progress-bar {
        width: 100%;
        height: 10px;
        padding-bottom: 0;
        padding-right: 0;
        position: absolute;
        inset: 0%;
    }

    .button.mid-article-button.mb-0.m-0 {
        margin-bottom: 0;
    }

    .swiper-wrapper {
        overflow: visible;
    }

    .eq-v2-heading {
        margin-top: 1em;
    }

    .eq-v2-heading.custom-spacing {
        margin-top: 0;
    }

    .cta-box-inner {
        flex-direction: column;
        align-items: center;
    }

    .image-7 {
        max-width: 80%;
    }

    .eq-v2-p.sources {
        font-size: 8px;
    }

    .claim-h.bigger-font {
        margin-bottom: 20px;
        font-size: 34px;
    }

    .eq-v2-content {
        width: 95%;
    }

    .eq-v2-content.align-left {
        justify-content: flex-start;
        align-items: center;
        margin-top: 20px;
    }

    .eq-v2-main-wrapper, .eq-v2-footer-wrapper {
        width: 100%;
    }

    .image-8.header-logo-fi {
        max-height: 25px;
    }

    .image-9 {
        max-height: 35px;
        margin-bottom: 1em;
        margin-right: 0;
    }

    .as-seen-on-tag {
        padding-top: 5px;
    }

    .paragraph-6 {
        margin-bottom: 3px;
        font-size: 12px;
        line-height: 100%;
    }

    .aso-img-item {
        max-height: 35px;
    }

    .advertorial {
        color: #8d8d8d;
        margin-top: 2em;
        margin-bottom: 10px;
    }

    .hs-layout-main-content {
        width: 90%;
    }

    .image-18 {
        max-height: 35px;
        margin-bottom: 1em;
        margin-right: 0;
    }

    .nl-content-piece {
        max-width: 100%;
        padding: 1em;
    }

    .nl-headline {
        color: #000;
        font-size: 44px;
        line-height: 110%;
    }

    .nl-hero-section {
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        flex-direction: column;
        width: 100%;
    }

    .nl-hero-img {
        border-radius: 20px;
        width: 100%;
    }

    .nl-hero-description {
        width: 100%;
    }

    .features-list-item {
        flex-direction: column;
    }

    .features-list-item-info {
        max-width: 100%;
    }

    .features-img {
        border-radius: 20px;
    }

    .cta-section-btn.fixed-cta {
        background-color: #23b000;
        margin-top: 0;
        margin-bottom: .75em;
    }

    .paragraph-11 {
        font-weight: 700;
    }

    .nl-footer-wrapper {
        width: 100%;
    }

    .hero-img {
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        width: 100%;
        min-height: 400px;
    }

    .mobile-fixed-cta {
        background-color: #fff;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-top: 1em;
        padding-bottom: 1em;
        display: flex;
        position: sticky;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .nl-2-header-wrapper {
        grid-column-gap: 80px;
        grid-row-gap: 80px;
    }

    .nl-2-body-wrapper {
        max-width: 95%;
    }

    .nl-2-main-section {
        width: 100%;
    }

    .nl-2-main-section.padding-adjust.new-smal-srn-mar-top {
        margin-top: -50px;
    }

    .nl-2-sidebar {
        justify-content: center;
        align-items: center;
        width: 100%;
        display: flex;
    }

    .nl-2-heading.h-df {
        font-size: 48px;
    }

    .nl-2-p.pace {
        margin-top: -11px;
    }

    .nl-2-h1.sidebar-heading {
        text-align: center;
    }

    .nl-sidebar-inner {
        flex-flow: column;
        align-items: center;
        width: 80%;
        padding-left: 4em;
        padding-right: 4em;
        display: none;
    }

    .nl-sidebar-inner.new-space-adjust {
        padding-top: 0;
        padding-bottom: 1em;
    }

    .nl-sidebar-inner.margin-top-space-adj-04 {
        padding-top: 0;
    }

    .nl-sidebar-inner.margin-top-space-adj-04.mar-bot-space-03 {
        padding-bottom: .5em;
    }

    .nl-2-sidebar-ul {
        text-align: left;
    }

    .nl-2-sidebar-cta-btn {
        margin-top: 1em;
    }

    .nl-2-body-wrapper-inner {
        flex-direction: column;
        align-items: center;
    }

    .nl-2-article-head {
        width: 100%;
    }

    .nl-2-mobile-cta-section-fixed {
        background-color: #fff;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 15px 2em;
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .sticky-cta {
        background-color: #fff;
        border-top: 1px solid #0000001a;
        padding: 2em 3em;
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        box-shadow: 0 -3px 5px #0003;
    }

    .nl-3-adv-content-wrapper {
        width: 95%;
    }

    .about-author {
        text-align: left;
    }

    .nl-3-adv-main {
        padding: 2.5em;
    }

    .nl-3-adv-p.footer-p {
        text-align: center;
    }

    .nl-3-adv-reasons-block-item {
        grid-column-gap: 1em;
        grid-row-gap: 1em;
        flex-flow: column-reverse;
        justify-content: space-between;
        align-items: flex-start;
    }

    .nl-3-adv-reasons-block-item.reversed {
        grid-column-gap: 1em;
        grid-row-gap: 1em;
        flex-flow: column-reverse;
    }

    .nl-3-adv-reasons-text {
        max-width: 100%;
    }

    .nl-3-adv-main-conclusion {
        padding: 3em;
    }

    .nl-3-adv-main-conclusion.color-yellow {
        padding-left: 2em;
        padding-right: 2em;
    }

    .nl-3-adv-main-conclusion-inner {
        width: 100%;
    }

    .nl-3-adv-footer {
        margin-top: .125em;
    }

    .nl-4-interview-content-wrapper {
        width: 100%;
        max-width: none;
    }

    .hero-section-left {
        max-width: none;
        padding-left: 2em;
        padding-right: 2em;
    }

    .nl-4-p.about-author {
        position: relative;
    }

    .nl-4-p.footer-p {
        max-width: 95%;
    }

    .nl-4-hero-wrapper {
        flex-flow: column;
    }

    .nl-4-main-article {
        padding-left: 2em;
        padding-right: 2em;
    }

    .nl-4-interview-question {
        font-size: 32px;
    }

    .nl-4-img {
        margin-top: 5em;
        margin-bottom: 5em;
    }

    .nl-4-cta-btn.bubble-cta {
        padding-left: 1.5em;
        padding-right: 1.5em;
    }

    .nl-4-benefits-item {
        border: 1px solid #0000001a;
        border-radius: 20px;
        justify-content: center;
        align-items: center;
        min-width: 45%;
        max-width: none;
        padding: 3em;
    }

    .nl-4-benefits-wrapper {
        grid-column-gap: 15px;
        grid-row-gap: 15px;
        flex-flow: wrap;
        justify-content: center;
        align-items: center;
    }

    .nl-4-footer {
        margin-left: 2em;
        margin-right: 2em;
    }

    .nl-5-content {
        margin-top: 1.25em;
    }

    .nl-5-footer-wrapper {
        padding-left: 3em;
        padding-right: 3em;
    }

    .nl-5-hero-section {
        padding-left: 1em;
        padding-right: 1em;
    }

    .nl-5-hero-img {
        border-radius: 15px;
    }

    .nl-5-article {
        flex-flow: row-reverse wrap-reverse;
    }

    .nl-5-article-content, .nl-5-article-sidebar {
        width: 100%;
        padding-left: 1em;
        padding-right: 1em;
    }

    .nl-5-article-sidebar-inner {
        flex-flow: row;
        position: static;
    }

    .paragraph-15 {
        text-align: center;
    }

    .nl-5-testomonials-item.nl-5-1 {
        width: 32%;
    }

    .sticky-cta-section-v1 {
        grid-column-gap: 1em;
        grid-row-gap: 1em;
        flex-flow: column;
    }

    .sticky-cta-section-v1-text {
        text-align: center;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        display: flex;
    }

    .nl-5-sticky-footer {
        padding-bottom: 2em;
        display: flex;
    }

    .nl-5-1-cta-box-img {
        width: 80%;
    }

    .nl-6-content-wrapper {
        flex-flow: column;
    }

    .nl-6-article, .nl-6-sidebar {
        width: 100%;
    }

    .nl-6-h.new-title {
        margin-top: 20px;
    }

    .nl-6-testimonials {
        flex-flow: row;
    }

    .nl-6-testimonial {
        width: 32%;
        padding-left: 1.25em;
        padding-right: 1.25em;
    }

    .sticky-sidebar {
        display: flex;
    }

    .nl-6-footer-wrapper {
        padding-left: 2em;
        padding-right: 2em;
    }

    .features-img-2 {
        border-radius: 20px;
    }

    .cta-box-inner-2 {
        flex-direction: column;
        align-items: center;
    }

    .image-22 {
        max-width: 80%;
    }

    .cta-box-inner-3 {
        flex-direction: column;
        align-items: center;
    }

    .eq-v2-main-wrapper-2 {
        width: 100%;
        padding-bottom: 2em;
    }

    .image-23 {
        max-width: 80%;
    }

    .swiper-wrapper-2 {
        overflow: visible;
    }

    .container-2 {
        background-color: #fff;
    }

    .div-block-12 {
        top: 253px;
        left: 2%;
    }

    .nl-3-adv-reasons-block-item-2 {
        grid-column-gap: 1em;
        grid-row-gap: 1em;
        flex-flow: column-reverse;
        justify-content: space-between;
        align-items: center;
    }

    .nl-3-adv-reasons-block-item-2.reversed {
        grid-column-gap: 1em;
        grid-row-gap: 1em;
        flex-flow: row;
        justify-content: space-between;
        align-items: center;
    }

    .nl-3-adv-reasons-text-2 {
        max-width: 100%;
    }

    .nl-3-adv-reasons-img-2.new-size {
        width: 300px;
        height: 300px;
    }

    .nl-3-adv-reasons-block-item-3 {
        grid-column-gap: 1em;
        grid-row-gap: 1em;
        flex-flow: column-reverse;
        justify-content: space-between;
        align-items: center;
    }

    .nl-3-adv-reasons-block-item-3.reversed {
        grid-column-gap: 1em;
        grid-row-gap: 1em;
        grid-column-gap: 1em;
        grid-row-gap: 1em;
        flex-flow: row;
        justify-content: space-between;
        align-items: center;
    }

    .nl-3-adv-reasons-text-3 {
        max-width: 100%;
    }

    .nl-3-adv-reasons-img-3.new-size {
        width: 300px;
        height: 300px;
    }

    .paragraph-19 {
        font-weight: 700;
    }

    .nl-sidebar-inner-2 {
        flex-flow: column;
        align-items: center;
        width: 80%;
        padding-left: 4em;
        padding-right: 4em;
        display: flex;
    }

    .nl-2-h1-2.sidebar-heading {
        text-align: center;
    }

    .par-v4-content-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .header-text-main {
        margin-left: 20px;
        margin-right: 20px;
        font-size: 40px;
        line-height: 46px;
    }

    .paragraph-23 {
        text-align: center;
    }

    .hero-title-wrapper {
        margin-left: 0;
    }

    .nl-2-h1-4.sidebar-heading {
        text-align: center;
    }

    .nl-2-h1-4.margin-new.font-pace {
        margin-top: 0;
    }

    .nl-2-h1-4.new-padding {
        margin-top: 1.5em;
    }

    .paragraph-35 {
        font-weight: 700;
    }

    .nl-footer-wrapper-2 {
        width: 100%;
    }

    .cta-section-btn-5.fixed-cta {
        background-color: #23b000;
        margin-top: 0;
        margin-bottom: .75em;
    }

    .paragraph-39 {
        font-weight: 700;
    }

    .bold-text-35 {
        line-height: 43px;
    }

    .bold-text-36 {
        font-size: 40px;
        line-height: 38px;
    }

    .image-30 {
        width: 100%;
    }

    .paragraph-42, .paragraph-44 {
        font-weight: 700;
    }

    .header-wrap-container {
        grid-column-gap: 80px;
        grid-row-gap: 80px;
    }

    .marquee-msg-container {
        flex: none;
    }

    .marquee-message {
        font-size: 16px;
    }

    .promo-text.new-back.text-color-mod {
        text-align: center;
    }

    .promo-text.new-size {
        text-align: center;
        line-height: 25px;
    }

    .comparison-cards-box {
        grid-column-gap: 2em;
        grid-row-gap: 2em;
        flex-flow: column;
        position: relative;
    }

    .eq-v2-main-wrapper-3 {
        width: 100%;
        padding-bottom: 2em;
    }

    .comparison-card {
        justify-content: center;
        align-items: flex-start;
        width: 100%;
        position: sticky;
        top: 0;
    }

    .comparison-card.z-index-0 {
        z-index: 0;
    }

    .comparison-card.z-index-0.new-style-adj {
        justify-content: center;
        align-items: center;
    }

    .z2a-d-content-wrapper {
        width: 100%;
    }

    .article-heading {
        font-size: 45px;
        line-height: 110%;
    }

    .z2a-d-content-wrapper-inner {
        padding-left: 1.5em;
        padding-right: 1.5em;
    }

    .features-img-3 {
        border-radius: 20px;
    }

    .paragraph-47 {
        font-weight: 700;
    }

    .nl-6-testimonial-2 {
        flex-flow: column;
        justify-content: flex-start;
        align-items: center;
        width: 32%;
        padding-left: 1.25em;
        padding-right: 1.25em;
    }

    .nl-6-testimonial-body-2 {
        text-align: center;
    }

    .quick-stack-3, .quick-stack-4 {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .tgl-header-wrapper {
        flex-flow: column;
    }

    .tgl-hero-img {
        margin-bottom: 20px;
        margin-left: auto;
    }

    .tgl-mobile-cta-section-inner {
        width: 100%;
        padding-top: 5em;
    }

    .tgl-cta-product-img {
        width: 100%;
    }

    .image-6.desktop {
        display: none;
    }

    .image-6.mobile {
        display: block;
    }

    .swiper-wrapper {
        overflow: visible;
    }

    .slider-substrate {
        object-fit: cover;
        min-height: 400px;
    }

    .cta-box-inner {
        grid-column-gap: 3em;
        grid-row-gap: 3em;
    }

    .cta-box-inner.less-space {
        grid-column-gap: 2.5em;
        grid-row-gap: 2.5em;
    }

    .image-7 {
        max-width: 90%;
    }

    .testimonial {
        flex-flow: column;
        max-width: none;
        padding-left: .5em;
        padding-right: .5em;
    }

    .testimonial.testimonial-v2 {
        max-width: 48%;
    }

    .t-content {
        font-size: 16px;
    }

    .testimonials-box {
        flex-flow: wrap;
        align-content: flex-start;
        align-items: stretch;
    }

    .cta-box {
        padding-top: 3em;
        padding-bottom: 3em;
    }

    .eq-v2-content.align-left {
        justify-content: flex-start;
        align-items: center;
    }

    .slider-img {
        width: 100%;
    }

    .eq-v2-footer-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .eq-v2-footer-logo {
        margin-bottom: 1em;
    }

    .eq-v2-footer-link {
        font-size: 14px;
    }

    .image-8 {
        max-height: 60px;
    }

    .aso-img-box {
        grid-column-gap: 15px;
        grid-row-gap: 15px;
        padding-top: 2em;
        padding-bottom: 2em;
    }

    .aso-img-item {
        max-height: 31px;
    }

    .mid-article-img.mobile {
        display: block;
    }

    .mid-article-img.desktop {
        display: none;
    }

    .heading-10 {
        line-height: 110%;
    }

    .eq-v2-testimonial-inside-article.new-style {
        justify-content: flex-start;
        align-items: center;
    }

    .t-body {
        text-align: center;
    }

    .nl-logo {
        max-height: 30px;
    }

    .nl-content-piece.cta-section {
        padding: 3em 1.5em;
    }

    .features-list {
        grid-column-gap: 2.5em;
        grid-row-gap: 2.5em;
    }

    .features-list-item {
        flex-direction: column;
    }

    .features-list-item-info {
        max-width: 100%;
    }

    .features-img {
        border-radius: 15px;
    }

    .cta-section-steps {
        grid-column-gap: 40px;
        grid-row-gap: 40px;
        text-align: center;
        flex-direction: column;
        align-items: center;
        margin-top: 4em;
        margin-bottom: 4em;
        display: flex;
    }

    .cta-section-step {
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        flex-direction: column;
        align-items: center;
    }

    .cta-section-step.d-f-row {
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        flex-direction: column;
    }

    .cta-section-btn.fixed-cta {
        padding-left: 1em;
        padding-right: 1em;
    }

    .paragraph-11 {
        text-align: center;
        font-size: 18px;
    }

    .nl-footer-wrapper {
        width: 100%;
    }

    .hero-img {
        object-fit: cover;
        min-height: 400px;
    }

    .mobile-fixed-cta {
        padding-left: 2em;
        padding-right: 2em;
    }

    .nl-2-header-wrapper {
        grid-column-gap: 80px;
        grid-row-gap: 80px;
        flex-flow: row;
        padding-left: 60px;
        padding-right: 60px;
    }

    .nl-2-logo {
        max-height: 25px;
    }

    .nl-2-heading.h-df {
        font-size: 40px;
    }

    .nl-2-article-section {
        padding-left: 1.5em;
        padding-right: 1.5em;
    }

    .nl-2-p.new-space {
        margin-top: 22px;
    }

    .nl-2-p.space-pad-adj.margin-adjust-top-1 {
        margin-top: 0;
    }

    .nl-2-p.new-pace {
        margin-top: 30px;
    }

    .nl-2-p.pace {
        margin-top: -15px;
    }

    .nl-2-adv-item-img {
        object-fit: cover;
        border-radius: 20px;
        min-height: 200px;
    }

    .nl-sidebar-inner {
        width: 100%;
    }

    .a-break-all {
        word-break: break-all;
    }

    .testimonials-wrapper {
        grid-column-gap: 10px;
        grid-row-gap: 10px;
        justify-content: center;
        align-items: center;
    }

    .t-img {
        flex: none;
        max-width: 48%;
    }

    .about-author {
        text-align: center;
    }

    .nl-3-adv-hero-description {
        padding-left: 2em;
        padding-right: 2em;
    }

    .nl-3-adv-h.fc-w {
        font-size: 33px;
    }

    .nl-3-adv-reasons-block, .nl-3-adv-reasons-block.space-gap-new {
        grid-column-gap: 5em;
        grid-row-gap: 5em;
    }

    .nl-3-adv-reasons-img {
        max-width: 100%;
    }

    .nl-3-adv-footer {
        margin-top: .125em;
    }

    .nl-4-interview-content-wrapper {
        max-width: none;
    }

    .hero-section-left {
        padding-left: 1.5em;
        padding-right: 1.5em;
    }

    .nl-4-p.about-author {
        font-size: 18px;
    }

    .nl-4-p.benefits-item-p {
        text-align: center;
    }

    .nl-4-main-article {
        padding-left: 1.5em;
        padding-right: 1.5em;
    }

    .nl-4-interview-bubble-left {
        padding: 1.5em 1.5em 1.5em 3em;
    }

    .nl-4-interview-bubble-right {
        padding-left: 2em;
        padding-right: 2em;
    }

    .nl-4-cta-btn {
        background-image: linear-gradient(160deg, #a5d0f7, #0063a3);
        font-size: 16px;
    }

    .nl-4-cta-btn.bubble-cta {
        padding-left: 1em;
        padding-right: 1em;
    }

    .nl-4-cta-sub {
        font-size: 14px;
    }

    .nl-4-benefits-item {
        max-width: 46%;
        padding: 1.75em;
    }

    .nl-4-benefits-wrapper {
        align-items: stretch;
    }

    .nl-5-content {
        margin-top: 1em;
    }

    .nl-5-hero-img {
        border-radius: 10px;
    }

    .nl-5-article-sidebar-inner {
        flex-flow: column;
        position: relative;
    }

    .author-card {
        position: sticky;
        top: 0;
    }

    .author-card._2nd-card {
        top: 25%;
    }

    .nl-5-aa {
        flex-flow: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .paragraph-15 {
        text-align: center;
    }

    .nl-5-testomonials-v1.nl-5-1 {
        flex-flow: column;
        justify-content: flex-start;
        align-items: center;
    }

    .nl-5-testomonials-item {
        grid-column-gap: 1em;
        grid-row-gap: 1em;
        flex-flow: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 2em;
    }

    .nl-5-testomonials-item.nl-5-1 {
        width: 70%;
        padding-top: 0;
        padding-left: 0;
    }

    .nl-5-testimonial-item-img {
        border-radius: 20px;
        max-width: 40%;
    }

    .nl-5-testimonial-item-img.nl-5-1 {
        border-radius: 0;
    }

    .nl-5-testimonial-p {
        margin-bottom: 0;
    }

    .nl-5-facts-box {
        grid-column-gap: 2em;
        grid-row-gap: 2em;
        flex-flow: wrap;
        justify-content: center;
        align-items: stretch;
    }

    .nl-5-facts-box-item {
        max-width: 45%;
    }

    .nl-5-1-cta-box-wrapper {
        padding-left: 3em;
        padding-right: 3em;
    }

    .nl-6-article {
        padding-bottom: 3em;
    }

    .nl-6-cta-box-wrapper {
        padding-left: 2.5em;
        padding-right: 2.5em;
    }

    .nl-6-sidebar-wrapper {
        padding-top: 0;
    }

    .nl-6-testimonials {
        flex-flow: column;
    }

    .nl-6-testimonial {
        width: 100%;
    }

    .features-list-item-2 {
        flex-direction: column;
    }

    .features-img-2 {
        border-radius: 15px;
    }

    .features-list-item-info-2 {
        max-width: 100%;
    }

    .cta-box-2 {
        padding-top: 3em;
        padding-bottom: 3em;
    }

    .image-22 {
        max-width: 90%;
    }

    .testimonials-box-2 {
        flex-direction: column;
    }

    .slider-img-2 {
        width: 50%;
    }

    .eq-v2-heading-4 {
        font-size: 40px;
        line-height: 48px;
    }

    .testimonials-box-3 {
        flex-direction: column;
    }

    .eq-v2-main-wrapper-2 {
        padding-bottom: 2em;
    }

    .image-23 {
        max-width: 90%;
    }

    .swiper-wrapper-2 {
        overflow: visible;
    }

    .image-26 {
        height: 300px;
    }

    .heading-12.small-text {
        font-size: 30px;
    }

    .quick-stack {
        text-align: left;
    }

    .div-block-15.product-benefit, .div-block-16.product-benefit {
        justify-content: flex-start;
        align-items: center;
    }

    .text-block-9 {
        text-align: left;
    }

    .nl-3-adv-reasons-block-item-2 {
        justify-content: space-between;
        align-items: center;
    }

    .nl-3-adv-reasons-block-item-2.reversed {
        flex-flow: column;
    }

    .nl-3-adv-reasons-img-2 {
        max-width: 100%;
    }

    .nl-3-adv-h-2.new-font {
        text-align: center;
    }

    .nl-3-adv-h-2.new-font.small-size-28.modi-font {
        text-align: center;
        font-size: 30px;
        line-height: 38px;
    }

    .text-block-10 {
        text-align: left;
    }

    .nl-3-adv-reasons-block-item-3 {
        justify-content: space-between;
        align-items: center;
    }

    .nl-3-adv-reasons-block-item-3.reversed {
        flex-flow: column;
    }

    .nl-3-adv-reasons-img-3 {
        max-width: 100%;
    }

    .nl-3-adv-h-3.new-font {
        text-align: center;
    }

    .nl-3-adv-h-3.new-font.small-size-28.modi-font {
        text-align: center;
        font-size: 30px;
        line-height: 38px;
    }

    .paragraph-19 {
        text-align: center;
        font-size: 18px;
    }

    .nl-sidebar-inner-2 {
        width: 100%;
    }

    .nl-2-article-section-2, .par-v4-content-wrapper-extra-paddings {
        padding-left: 1.5em;
        padding-right: 1.5em;
    }

    .header-text-main {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        font-size: 32px;
        line-height: 42px;
    }

    .main-content {
        margin-left: 20px;
        margin-right: 20px;
    }

    .nl-3-adv-h-4.new-font {
        text-align: center;
    }

    .nl-3-adv-h-4.new-font.small-size-28.modi-font {
        text-align: center;
        font-size: 30px;
        line-height: 38px;
    }

    .offer-box-22, .offer-box-22.new-border {
        flex-flow: column;
    }

    .testimonial-wrapper {
        flex-flow: column;
        justify-content: flex-start;
        align-items: center;
    }

    .paragraph-35 {
        text-align: center;
        font-size: 18px;
    }

    .nl-footer-wrapper-2 {
        width: 100%;
    }

    .cta-section-btn-5.fixed-cta {
        padding-left: 1em;
        padding-right: 1em;
    }

    .paragraph-39 {
        text-align: center;
        font-size: 18px;
    }

    .paragraph-40 {
        font-size: 16px;
    }

    .paragraph-42 {
        text-align: center;
        font-size: 18px;
    }

    .testimonials-box-4 {
        flex-direction: column;
    }

    .testimonial-img-wrapper {
        grid-column-gap: 6px;
        grid-row-gap: 6px;
    }

    .paragraph-44 {
        text-align: center;
        font-size: 18px;
    }

    .bold-text-42, .bold-text-43, .bold-text-44, .bold-text-45, .bold-text-46, .bold-text-47, .bold-text-48, .bold-text-49 {
        font-size: 16px;
    }

    .header-banner-wrapper {
        overflow: hidden;
    }

    .marquee-msg-container {
        flex: none;
    }

    .eq-v2-main-wrapper-3 {
        padding-bottom: 2em;
    }

    .comparison-card.z-index-0.new-style-adj {
        justify-content: center;
        align-items: center;
    }

    .testimonial-2, .testimonial-3 {
        max-width: none;
    }

    .z2a-d-about-article {
        flex-direction: column;
    }

    .article-heading {
        font-size: 39px;
        line-height: 101%;
    }

    .features-list-item-3 {
        flex-direction: column;
    }

    .features-list-item-img-2 {
        width: 100%;
    }

    .features-img-3 {
        border-radius: 15px;
    }

    .features-list-item-info-3 {
        max-width: 100%;
    }

    .image-35 {
        width: 568px;
        max-width: 100%;
        max-height: none;
    }

    .paragraph-47 {
        text-align: center;
        font-size: 18px;
    }

    .lpi-content {
        width: 100%;
        padding-top: 2em;
        padding-left: 1em;
        padding-right: 1em;
    }

    .plain-bg-vid.vid-1x1 {
        aspect-ratio: 1;
    }

    .plain-bg-vid-2.no-corner-radius {
        width: 100%;
        max-width: 100%;
    }

    .plain-bg-vid-2.no-corner-radius.new-space, .nl-6-testimonial-2 {
        width: 100%;
    }

    .quick-stack-3 {
        max-width: 100%;
        padding: 0;
    }

    .cell-33 {
        justify-content: flex-start;
        align-items: center;
    }

    .plain-bg-vid-3.no-corner-radius {
        width: 100%;
        max-width: 100%;
    }

    .cell-32 {
        justify-content: flex-start;
        align-items: center;
    }

    .quick-stack-4 {
        max-width: 100%;
        padding: 0;
    }

    .cell-34 {
        justify-content: flex-start;
        align-items: center;
    }

    .hf-embedding {
        border-radius: 30px;
        padding: 3em;
    }
}

@media screen and (max-width: 479px) {
    .tgl-main-head {
        font-size: 32px;
    }

    .tgl-hero-img {
        margin-bottom: 20px;
    }

    .bold-text {
        font-size: 28px;
    }

    .tgl-update-section.new-color {
        padding-left: .5em;
        padding-right: .5em;
    }

    .tgl-cta-btn.tgl-mcb-cta-btn {
        margin-bottom: 0;
    }

    .bold-text-4 {
        font-size: 32px;
    }

    .paragraph-4 {
        font-size: 14px;
    }

    .tgl-mobile-cta-section-inner {
        padding-top: 5em;
        padding-left: 2em;
        padding-right: 2em;
    }

    .tgl-cta-product-img {
        width: 100%;
    }

    .tgl-mobile-cta-box-h {
        font-size: 28px;
        line-height: 110%;
    }

    .tgl-mobile-cta-box-p {
        line-height: 140%;
    }

    .cta-claim-box.new-ver {
        padding-left: 0;
        padding-right: 0;
    }

    .button {
        font-size: 17px;
    }

    .eq-v2-preamble {
        font-size: 18px;
    }

    .eq-v2-hashtags {
        flex-wrap: wrap;
        place-content: center;
        width: 100%;
    }

    .eq-v2-heading {
        font-size: 34px;
        line-height: 110%;
    }

    .image-7 {
        max-width: 100%;
    }

    .testimonial {
        justify-content: flex-start;
        align-items: center;
        padding-left: 1em;
        padding-right: 1em;
    }

    .testimonial.testimonial-v2 {
        max-width: 100%;
    }

    .t-content {
        text-align: center;
    }

    .claim-h {
        font-size: 22px;
    }

    .claim-h.bigger-font {
        font-size: 28px;
    }

    .eq-v2-h2 {
        font-size: 32px;
        line-height: 105%;
    }

    .cta-box {
        padding-left: 1em;
        padding-right: 1em;
    }

    .eq-v2-content.align-left {
        justify-content: flex-start;
        align-items: center;
    }

    .slider-img.nlc-img, .slider-img.last-img {
        width: 75%;
    }

    .image-8 {
        max-height: 50px;
    }

    .heading-10 {
        font-size: 28px;
        line-height: 120%;
    }

    .eq-v2-testimonial-inside-article {
        flex-direction: column;
        align-items: flex-start;
    }

    .t-author-img {
        max-height: 60px;
    }

    .nl-logo {
        max-height: 25px;
    }

    .nl-content-piece.cta-section.nl-2-content-piece {
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        padding: 3em 1em;
    }

    .nl-content-piece.cta-section.lpi-cta-section {
        padding-left: 1.5em;
        padding-right: 1.5em;
    }

    .nl-headline {
        font-size: 38px;
    }

    .features-img {
        border-radius: 15px;
        width: 100%;
        max-height: none;
    }

    .features-list-item-text-h {
        font-size: 28px;
        line-height: 100%;
    }

    .nl-cta-section-h1 {
        font-size: 28px;
    }

    .cta-section-steps {
        grid-column-gap: 50px;
        grid-row-gap: 50px;
        align-items: center;
        margin-top: 4em;
        margin-bottom: 4em;
    }

    .cta-section-steps.mt-0 {
        margin-top: 0;
    }

    .cta-section-step {
        align-items: center;
    }

    .cta-section-item-step-description.nl-p {
        text-align: center;
    }

    .cta-section-btn {
        padding-left: 1em;
        padding-right: 1em;
        font-size: 18px;
    }

    .cta-section-btn.fixed-cta {
        padding: 10px 1em;
    }

    .hero-img {
        object-fit: cover;
        min-height: 330px;
    }

    .mobile-fixed-cta {
        padding-left: 1.5em;
        padding-right: 1.5em;
    }

    .nl-2-header-wrapper {
        grid-column-gap: 17px;
        grid-row-gap: 17px;
        flex-flow: column;
    }

    .nl-2-main-section.padding-adjust.new-smal-srn-mar-top.only-mob-margin-top {
        margin-top: -50px;
    }

    .nl-2-heading {
        font-size: 38px;
    }

    .nl-2-heading.h-df {
        font-size: 29px;
        line-height: 127%;
    }

    .nl-2-heading.h-df.new-font-height {
        font-size: 29px;
    }

    .nl-2-heading.h-df.new-font-height.new-font-size-adj {
        font-size: 32px;
    }

    .nl-2-article-section {
        padding-left: 1em;
        padding-right: 1em;
    }

    .nl-2-p.new-space {
        margin-top: 10px;
    }

    .nl-2-adv-item-img {
        border-radius: 10px;
        min-height: 100px;
    }

    .nl-2-h1 {
        font-size: 25px;
        line-height: 112%;
    }

    .nl-2-h1.new-color {
        text-align: left;
        margin-top: 2em;
    }

    .nl-2-quote-block {
        padding: 2em 1.5em;
    }

    .nl-sidebar-inner {
        width: 100%;
        padding-left: 2em;
        padding-right: 2em;
    }

    .nl-sidebar-inner.mar-cta-box-top {
        padding-top: 0;
    }

    .nl-2-article-head.margin-left-new2 {
        padding-right: 1em;
    }

    .testimonials-wrapper {
        grid-column-gap: 20px;
        grid-row-gap: 20px;
        position: relative;
    }

    .t-img {
        max-width: 90%;
        position: sticky;
    }

    .t-img.t-1 {
        top: 5%;
    }

    .t-img.t-2 {
        top: 10%;
    }

    .t-img.t-3 {
        top: 15%;
    }

    .nl-3-adv-header-wrapper.new-style-head {
        flex-flow: column;
    }

    .nl-3-adv-header-wrapper.blk-fri-banner-3.new-space-adj {
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        flex-flow: column;
    }

    .nl-3-adv-logo {
        max-height: 25px;
    }

    .nl-3-adv-hero-heading-h1 {
        font-size: 36px;
        line-height: 90%;
    }

    .about-author {
        text-align: left;
        font-size: 14px;
        line-height: 135%;
    }

    .nl-3-adv-hero-description {
        padding-left: .75em;
        padding-right: .75em;
        font-size: 18px;
    }

    .nl-3-adv-main {
        padding-left: .75em;
        padding-right: .75em;
    }

    .nl-3-adv-p {
        font-size: 18px;
    }

    .nl-3-adv-h {
        font-size: 28px;
        line-height: 120%;
    }

    .nl-3-adv-h.fc-w {
        font-size: 24px;
        line-height: 135%;
    }

    .nl-3-adv-reasons-img {
        border-radius: 20px;
    }

    .nl-3-adv-reasons-text-h.nl-3-adv-h {
        font-size: 32px;
        line-height: 110%;
    }

    .nl-3-adv-main-conclusion {
        padding-left: 1.5em;
        padding-right: 1.5em;
    }

    .nl-3-adv-main-cta-button {
        font-size: 18px;
    }

    .nl-3-adv-footer {
        margin-top: .125em;
    }

    .hero-section-left {
        padding-top: 1.75em;
        padding-bottom: 1.75em;
    }

    .nl-4-logo {
        max-height: 25px;
        margin-bottom: 1.5em;
    }

    .nl-4-headline {
        font-size: 34px;
        line-height: 120%;
    }

    .nl-4-author-section {
        flex-flow: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .nl-4-author-img {
        max-height: 35px;
    }

    .nl-4-author-p {
        font-size: 16px;
    }

    .nl-4-p {
        font-size: 18px;
    }

    .nl-4-p.about-author {
        text-align: left;
    }

    .nl-4-p.benefits-item-p {
        font-size: 14px;
    }

    .nl-4-main-article {
        padding-left: .75em;
        padding-right: .75em;
    }

    .nl-4-interview-bubble-left {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        border-bottom-right-radius: 30px;
        padding-left: 2em;
    }

    .nl-4-interview-question {
        font-size: 24px;
    }

    .nl-4-interview-bubble-right {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        border-bottom-left-radius: 30px;
        padding-top: 2.5em;
        padding-bottom: 2.5em;
    }

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

    .nl-4-cta-btn {
        background-image: linear-gradient(160deg, #82c2fc, #004673);
        padding-left: 1.5em;
        padding-right: 1.5em;
    }

    .nl-4-footer {
        margin-left: 1em;
        margin-right: 1em;
    }

    .nl-5-content {
        margin-top: 1em;
    }

    .nl-5-footer-wrapper {
        grid-column-gap: 2em;
        grid-row-gap: 2em;
        flex-flow: column;
        justify-content: space-between;
        align-items: center;
    }

    .nl-5-header-logo {
        max-height: 25px;
    }

    .nl-5-heading {
        font-size: 32px;
    }

    .nl-5-about-article {
        flex-flow: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .nl-5-hero-img {
        object-fit: cover;
        min-height: 230px;
    }

    .nl-5-p.nl-5article-info {
        line-height: 140%;
    }

    .nl-5-p.nl-5-1-cta-box-p {
        font-size: 16px;
    }

    .author-card {
        padding: 1em;
    }

    .nl-5-author-name {
        font-size: 18px;
    }

    .nl-5-h1 {
        font-size: 26px;
    }

    .nl-5-interview-question-box {
        padding: 1.5em;
    }

    .nl-5-cta-btn {
        padding: .75em 1em;
    }

    .paragraph-15 {
        text-align: center;
        line-height: 130%;
    }

    .paragraph-15.nl-5-1-cta-box-btn-p {
        font-size: 14px;
    }

    .nl-5-video {
        border-radius: 10px;
    }

    .nl-5-testomonials-item {
        padding: 1.25em;
    }

    .nl-5-testomonials-item.nl-5-1 {
        width: 100%;
    }

    .nl-5-facts-box-item {
        max-width: 100%;
    }

    .background-video-4 {
        max-height: 250px;
    }

    .sticky-cta-section-v1 {
        grid-column-gap: 1.2em;
        grid-row-gap: 1.2em;
        display: flex;
    }

    .nl-5-1-authors {
        grid-column-gap: 1em;
        grid-row-gap: 1em;
        flex-flow: column;
        margin-top: 1em;
        margin-bottom: .75em;
    }

    .nl-5-1-author {
        flex-flow: row;
        justify-content: flex-start;
        align-items: flex-start;
        margin-top: 0;
        margin-bottom: 0;
    }

    .nl-5-1-cta-box-wrapper {
        padding-left: 1.5em;
        padding-right: 1.5em;
    }

    .nl-5-1-cta-box-img {
        width: 100%;
    }

    .nl-6-article-pd {
        flex-flow: row;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .nl-6-article-headline {
        font-size: 32px;
        line-height: 120%;
    }

    .nl-6-authore-name {
        font-size: 12px;
    }

    .nl-6-padding-wrapper {
        width: 100%;
        padding-left: .5em;
        padding-right: .5em;
    }

    .nl-6-hero-img {
        object-fit: cover;
        height: 300px;
    }

    .nl-6-p {
        font-size: 16px;
    }

    .nl-6-h {
        font-size: 24px;
    }

    .nl-6-p-cta-btn {
        padding-left: 1em;
        padding-right: 1em;
        font-size: 16px;
    }

    .nl-6-cta-box-wrapper {
        padding-left: 1.25em;
        padding-right: 1.25em;
    }

    .nl-6-cta-box-product-h {
        font-size: 21px;
    }

    .nl-6-cta-box-product-p {
        font-size: 16px;
    }

    .features-img-2 {
        border-radius: 15px;
        width: 100%;
        max-height: none;
    }

    .features-list-item-text-h-2 {
        font-size: 28px;
        line-height: 100%;
    }

    .cta-box-2 {
        padding-left: 1em;
        padding-right: 1em;
    }

    .button-4 {
        font-size: 17px;
    }

    .eq-v2-h2-2 {
        font-size: 32px;
    }

    .slider-img-2.nlc-img, .slider-img-2.last-img {
        width: 75%;
    }

    .eq-v2-hashtags-2 {
        flex-wrap: nowrap;
        place-content: center;
        width: 80%;
    }

    .eq-v2-heading-4 {
        font-size: 33px;
        line-height: 37px;
    }

    .eq-v2-main-wrapper-2 {
        padding-bottom: 2em;
    }

    .eq-v2-hero-img-2.new-img {
        margin-bottom: 1em;
    }

    .header-elements.new-color {
        max-width: 100%;
        padding-right: 20px;
    }

    .div-block-12.floatin-sec {
        justify-content: center;
        align-items: center;
        width: 300px;
        height: 500px;
    }

    .image-26 {
        height: 200px;
    }

    .div-block-13.time-text-wrapper {
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }

    .cell, .cell-4 {
        justify-content: flex-start;
        align-items: center;
    }

    .quick-stack {
        padding-top: 20px;
    }

    .cell-2 {
        justify-content: flex-start;
        align-items: center;
    }

    .div-block-15.product-benefit {
        justify-content: flex-start;
        align-items: center;
        margin-top: 0;
        padding-top: 0;
    }

    .image-27 {
        margin-top: 0;
    }

    .cell-3, .cell-5, .cell-6 {
        justify-content: flex-start;
        align-items: center;
    }

    .div-block-16.product-benefit {
        justify-content: flex-start;
        align-items: center;
        margin-top: 0;
        padding-top: 0;
    }

    .image-28 {
        margin-top: 0;
    }

    .cell-7 {
        justify-content: flex-start;
        align-items: center;
    }

    .nl-3-adv-reasons-img-2 {
        border-radius: 20px;
    }

    .nl-3-adv-reasons-img-2.new-size {
        width: 300px;
        height: 300px;
    }

    .nl-3-adv-h-2 {
        font-size: 32px;
        line-height: 120%;
    }

    .nl-3-adv-h-2.new-font {
        text-align: center;
        font-size: 26px;
    }

    .nl-3-adv-h-2.new-font.small-size-28 {
        font-size: 28px;
    }

    .nl-3-adv-h-2.new-font.small-size-28.modi-font {
        text-align: center;
        font-size: 26px;
        line-height: 32px;
    }

    .nl-3-adv-reasons-img-3 {
        border-radius: 20px;
    }

    .nl-3-adv-reasons-img-3.new-size {
        width: 300px;
        height: 300px;
    }

    .nl-3-adv-h-3 {
        font-size: 32px;
        line-height: 120%;
    }

    .nl-3-adv-h-3.new-font {
        text-align: center;
        font-size: 26px;
    }

    .nl-3-adv-h-3.new-font.small-size-28 {
        font-size: 28px;
    }

    .nl-3-adv-h-3.new-font.small-size-28.modi-font {
        text-align: center;
        font-size: 26px;
        line-height: 32px;
    }

    .adv-logo-header {
        max-height: 60px;
    }

    .cta-section-btn-2 {
        padding-left: 1em;
        padding-right: 1em;
        font-size: 18px;
    }

    .cta-section-btn-2.mid-text-cta.cta-green.new-space {
        width: 100%;
        padding-right: 1em;
    }

    .nl-2-heading-2 {
        font-size: 38px;
    }

    .nl-cta-section-h1-2 {
        font-size: 28px;
    }

    .nl-sidebar-inner-2 {
        width: 100%;
        padding-left: 2em;
        padding-right: 2em;
    }

    .nl-2-article-section-2 {
        padding-left: 1em;
        padding-right: 1em;
    }

    .cta-section-item-step-description-2.nl-p {
        text-align: center;
    }

    .hero-image-wrapper {
        height: 350px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .par-v4-subheading {
        font-size: 21px;
    }

    .mob-hd1 {
        font-size: 30px;
    }

    .par-v4-p {
        line-height: 150%;
    }

    .bold-text-10 {
        line-height: 112%;
    }

    .par-v4-heading {
        font-size: 36px;
        font-weight: 800;
        line-height: 100%;
    }

    .bold-text-8 {
        padding-right: 0;
    }

    .mob-size {
        font-size: 27px;
        line-height: 32px;
    }

    .header-text-main {
        margin-top: 10px;
        margin-left: 10px;
        margin-right: 10px;
        font-size: 41px;
        line-height: 35px;
    }

    .main-content {
        margin-left: 10px;
        margin-right: 10px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .nl-3-adv-h-4 {
        font-size: 32px;
        line-height: 120%;
    }

    .nl-3-adv-h-4.new-font {
        text-align: center;
        font-size: 26px;
    }

    .nl-3-adv-h-4.new-font.small-size-28 {
        font-size: 28px;
    }

    .nl-3-adv-h-4.new-font.small-size-28.modi-font {
        text-align: center;
        font-size: 20px;
        line-height: 26px;
    }

    .button-5 {
        padding-left: 60px;
        padding-right: 60px;
    }

    .button-6 {
        font-size: 17px;
    }

    .nl-2-h1-4.new-space {
        font-size: 24px;
        line-height: 135%;
    }

    .nl-2-h1-4.space-new {
        margin-top: 1.1em;
        font-size: 24px;
        line-height: 135%;
    }

    .nl-2-h1-4.margin-new {
        margin-top: -1em;
        margin-bottom: -3px;
        font-size: 24px;
        line-height: 135%;
    }

    .nl-2-h1-4.margin-new.padding-font-adj {
        font-size: 24px;
        line-height: 135%;
    }

    .nl-2-h1-4.margin-new.font-pace, .nl-2-h1-4.new-padding {
        font-size: 24px;
    }

    .nl-2-h1-4.spacing-adj {
        font-size: 24px;
        line-height: 135%;
    }

    .nl-2-h1-4.padding-adj {
        font-size: 24px;
    }

    .nl-2-h1-4.padding-adj.new-adj, .nl-2-h1-4.padding-adj.new-adjust {
        line-height: 135%;
    }

    .nl-2-h1-4.pad-space {
        font-size: 24px;
        line-height: 135%;
    }

    .nl-2-h1-4.new-pace {
        font-size: 24px;
    }

    .nl-2-h1-4.new-pace.padding-new {
        line-height: 135%;
    }

    .nl-2-h1-4.space, .nl-2-h1-4.padding-con {
        font-size: 24px;
        line-height: 135%;
    }

    .nl-cta-section-h1-3 {
        font-size: 28px;
    }

    .cta-section-btn-4, .cta-section-btn-5 {
        padding-left: 1em;
        padding-right: 1em;
        font-size: 18px;
    }

    .cta-section-btn-5.fixed-cta {
        padding: 10px 1em;
    }

    .bold-text-35 {
        font-size: 27px;
        line-height: 32px;
    }

    .div-block-29 {
        flex-flow: column;
        width: 250px;
        display: flex;
    }

    .div-block-30 {
        width: 250px;
    }

    .bold-text-36 {
        font-size: 32px;
        line-height: 31px;
    }

    .paragraph-40 {
        font-size: 14px;
    }

    .bold-text-37 {
        font-size: 32px;
    }

    .bold-text-37.new-size {
        font-size: 22px;
        line-height: 30px;
    }

    .paragraph-42 {
        line-height: 119%;
    }

    .bold-text-38 {
        font-size: 28px;
    }

    .testimonial-img-wrapper {
        flex-flow: column;
    }

    .cta-section-btn-6 {
        padding-left: 1em;
        padding-right: 1em;
        font-size: 18px;
    }

    .nl-cta-section-h1-4 {
        font-size: 28px;
    }

    .text-span-13.new-space-adjust {
        line-height: 135%;
    }

    .header-wrap-container {
        grid-column-gap: 12px;
        grid-row-gap: 12px;
        flex-flow: column;
        justify-content: space-between;
        align-items: center;
    }

    .header-banner-wrapper.blackfriday-head-banner {
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        flex-flow: column;
    }

    .marquee-msg-container {
        flex: none;
    }

    .marquee-message {
        font-size: 16px;
    }

    .black-friday-img {
        max-width: 89%;
    }

    .comparison-cards-box {
        margin-top: 1.5em;
    }

    .bold-text-30 {
        font-size: 32px;
    }

    .eq-v2-main-wrapper-3 {
        padding-bottom: 2em;
    }

    .eq-v2-main-wrapper-3.new-feature-adj.new-pad-adj {
        padding-left: 10px;
        padding-right: 10px;
    }

    .eq-v2-h2-3 {
        font-size: 32px;
        line-height: 105%;
    }

    .eq-v2-heading-5 {
        width: 100%;
        font-size: 36px;
        line-height: 110%;
    }

    .eq-v2-author-2 {
        flex-flow: column;
    }

    .eq-author-info-2 {
        justify-content: space-between;
        align-items: center;
    }

    .bold-text-50 {
        font-size: 32px;
    }

    .eq-v2-h2-4 {
        font-size: 32px;
        line-height: 105%;
    }

    .eq-v2-heading-6 {
        width: 100%;
        font-size: 36px;
        line-height: 110%;
    }

    .eq-author-info-3 {
        justify-content: space-between;
        align-items: center;
    }

    .alt-comparison-card-2 {
        padding-left: 10px;
        padding-right: 10px;
    }

    .bold-text-51 {
        font-size: 14px;
    }

    .bold-text-53 {
        line-height: 106%;
    }

    .z2a-d-h {
        font-size: 26px;
        line-height: 110%;
    }

    .article-heading {
        font-size: 24px;
        line-height: 110%;
        display: block;
    }

    .button-7 {
        width: 100%;
        min-width: 0%;
        padding-left: 0;
        padding-right: 0;
    }

    .features-list-item-img-2 {
        width: 100%;
    }

    .features-img-3 {
        border-radius: 15px;
        width: 100%;
        max-height: none;
        margin-bottom: 0;
    }

    .features-list-item-text-h-3 {
        font-size: 28px;
        line-height: 100%;
    }

    .bold-text-55 {
        font-size: 25px;
    }

    .pcp-box-ul {
        padding-left: 2em;
    }

    .pcp-box-li.par-v4-p {
        font-size: 20px;
    }

    .bold-text-56 {
        font-size: 32px;
        line-height: 116%;
    }

    .bold-text-57 {
        font-size: 32px;
    }

    .paragraph-47 {
        line-height: 114%;
    }

    .lpi-main-heading {
        font-size: 28px;
        line-height: 115%;
    }

    .lpi-list-box {
        padding-left: 1em;
        padding-right: 1em;
    }

    .lpi-cv {
        width: 100%;
    }

    .h2 {
        font-size: 24px;
        font-weight: 700;
    }

    .h2.h-cta-section {
        text-align: center;
    }

    .insta-frame {
        max-width: 100%;
    }

    .cta-section-btn-7 {
        padding-left: 1em;
        padding-right: 1em;
        font-size: 18px;
    }

    .lpa-sticky-section-btn {
        padding-left: 2.5em;
        padding-right: 2.5em;
    }

    .plain-bg-vid {
        width: 100%;
        max-width: none;
        height: 225px;
    }

    .plain-bg-vid.vid-1x1 {
        height: auto;
    }

    .plain-bg-vid-2.no-corner-radius {
        width: 100%;
        max-width: 100%;
        max-height: 400px;
    }

    .plain-bg-vid-2.no-corner-radius.new-space {
        max-width: 100%;
    }

    .quick-stack-3 {
        width: 320px;
        max-width: none;
    }

    .plain-bg-vid-3.no-corner-radius {
        width: 100%;
        max-width: 100%;
        max-height: 400px;
    }

    .quick-stack-4 {
        width: 320px;
        max-width: none;
    }
}

#w-node-_7d6d6eec-e957-0e55-8ba9-0da0745ec757-261ac923, #w-node-bc38c72a-6132-66cf-b224-8854e94643a4-261ac923, #w-node-e73bc798-dfc8-fc1a-7a7c-88aa16d40323-261ac923, #w-node-_2291c3f2-13d6-d507-ac08-0296bb9ba5fb-261ac923, #w-node-_8f222d46-c39d-f0e6-5a80-d8e6481785ca-261ac923, #w-node-_93371a01-0d24-a7b6-5272-a5bb3114e7e1-261ac923 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
}

#w-node-_193ca15a-3fa9-98f1-ec32-bdec838fe2f3-07a61649, #w-node-_5989d504-b5ef-4b6c-0251-e4251fa11761-45203bec {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

#w-node-_29918b34-eece-1764-4cd2-049dd04bb0e6-15a22370 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
}

#w-node-_44ec64b1-6915-4fb6-d7aa-7d3b9c413650-15a22370 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_6bbfbf85-8e5c-4450-c612-6d2b347efc9d-d8ea66bf, #w-node-ec6c7102-a2c7-8522-efc2-3b6594bca0aa-0e0b29de, #w-node-_6bbfbf85-8e5c-4450-c612-6d2b347efc9d-7aad5ac1, #w-node-ec6c7102-a2c7-8522-efc2-3b6594bca0aa-d1d3b21f {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

#w-node-d0f65d2f-6d6d-e038-f71f-72f69690bdce-859e511e, #w-node-d0f65d2f-6d6d-e038-f71f-72f69690bdce-e304fea1 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    display: grid;
}

@media screen and (max-width: 767px) {
    #w-node-_193ca15a-3fa9-98f1-ec32-bdec838fe2f3-07a61649, #w-node-_5989d504-b5ef-4b6c-0251-e4251fa11761-45203bec {
        grid-template-rows: auto;
        grid-template-columns: 1fr 1fr 1fr;
    }

    #w-node-_6bbfbf85-8e5c-4450-c612-6d2b347efc9d-d8ea66bf, #w-node-ec6c7102-a2c7-8522-efc2-3b6594bca0aa-0e0b29de, #w-node-_6bbfbf85-8e5c-4450-c612-6d2b347efc9d-7aad5ac1, #w-node-ec6c7102-a2c7-8522-efc2-3b6594bca0aa-d1d3b21f {
        grid-template-rows: auto;
        grid-template-columns: 1fr 1fr;
    }

    #w-node-d0f65d2f-6d6d-e038-f71f-72f69690bdce-859e511e, #w-node-d0f65d2f-6d6d-e038-f71f-72f69690bdce-e304fea1 {
        grid-template-rows: auto;
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 479px) {
    #w-node-_193ca15a-3fa9-98f1-ec32-bdec838fe2f3-07a61649, #w-node-_5989d504-b5ef-4b6c-0251-e4251fa11761-45203bec, #w-node-_6bbfbf85-8e5c-4450-c612-6d2b347efc9d-d8ea66bf, #w-node-ec6c7102-a2c7-8522-efc2-3b6594bca0aa-0e0b29de, #w-node-_6bbfbf85-8e5c-4450-c612-6d2b347efc9d-7aad5ac1, #w-node-ec6c7102-a2c7-8522-efc2-3b6594bca0aa-d1d3b21f {
        grid-template-rows: auto;
        grid-template-columns: 1fr;
    }
}


@font-face {
    font-family: 'Inria Sans';
    src: url('../fonts/inriasans-bold-webfont.woff2') format('woff2'), url('../fonts/inriasans-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inria Sans';
    src: url('../fonts/inriasans-lightitalic-webfont.woff2') format('woff2'), url('../fonts/inriasans-lightitalic-webfont.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Inria Sans';
    src: url('../fonts/inriasans-regular-webfont.woff2') format('woff2'), url('../fonts/inriasans-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inria Sans';
    src: url('../fonts/inriasans-bolditalic-webfont.woff2') format('woff2'), url('../fonts/inriasans-bolditalic-webfont.woff') format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Inria Sans';
    src: url('../fonts/inriasans-italic-webfont.woff2') format('woff2'), url('../fonts/inriasans-italic-webfont.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Inria Sans';
    src: url('../fonts/inriasans-light-webfont.woff2') format('woff2'), url('../fonts/inriasans-light-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inria Serif';
    src: url('../fonts/inriaserif-bold-webfont.woff2') format('woff2'), url('../fonts/inriaserif-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.woff2') format('woff2'), url('../fonts/Inter-Bold.woff') format('woff'), url('../fonts/Inter-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Niramit';
    src: url('../fonts/Niramit-BoldItalic.woff2') format('woff2'), url('../fonts/Niramit-BoldItalic.woff') format('woff'), url('../fonts/Niramit-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Niramit';
    src: url('../fonts/Niramit-Italic.woff2') format('woff2'), url('../fonts/Niramit-Italic.woff') format('woff'), url('../fonts/Niramit-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Niramit';
    src: url('../fonts/Niramit-Regular.woff2') format('woff2'), url('../fonts/Niramit-Regular.woff') format('woff'), url('../fonts/Niramit-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Niramit';
    src: url('../fonts/Niramit-Bold.woff2') format('woff2'), url('../fonts/Niramit-Bold.woff') format('woff'), url('../fonts/Niramit-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nobile';
    src: url('../fonts/Nobile-Regular.woff2') format('woff2'), url('../fonts/Nobile-Regular.woff') format('woff'), url('../fonts/Nobile-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nobile';
    src: url('../fonts/Nobile-BoldItalic.woff2') format('woff2'), url('../fonts/Nobile-BoldItalic.woff') format('woff'), url('../fonts/Nobile-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Nobile';
    src: url('../fonts/Nobile-Italic.woff2') format('woff2'), url('../fonts/Nobile-Italic.woff') format('woff'), url('../fonts/Nobile-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Nobile';
    src: url('../fonts/Nobile-Bold.woff2') format('woff2'), url('../fonts/Nobile-Bold.woff') format('woff'), url('../fonts/Nobile-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nobile';
    src: url('../fonts/Nobile-MediumItalic.woff2') format('woff2'), url('../fonts/Nobile-MediumItalic.woff') format('woff'), url('../fonts/Nobile-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Nobile';
    src: url('../fonts/Nobile-Medium.woff2') format('woff2'), url('../fonts/Nobile-Medium.woff') format('woff'), url('../fonts/Nobile-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
/* latin */
@font-face {
    font-family: 'Droid Sans';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/droidsans/v18/SlGVmQWMvZQIdix7AFxXkHNSbQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
    font-family: 'Droid Sans';
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/droidsans/v18/SlGWmQWMvZQIdix7AFxXmMh3eDs1Zw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 100;
    src: url(https://fonts.gstatic.com/s/lato/v24/S6u-w4BMUTPHjxsIPx-mPCLQ7A.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 100;
    src: url(https://fonts.gstatic.com/s/lato/v24/S6u-w4BMUTPHjxsIPx-oPCI.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI9w2_FQft1dw.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI9w2_Gwft.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHjxsAUi-qJCY.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHjxsAXC-q.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI5wq_FQft1dw.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI5wq_Gwft.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 900;
    src: url(https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI3wi_FQft1dw.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 900;
    src: url(https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI3wi_Gwft.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 100;
    src: url(https://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHh30AUi-qJCY.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 100;
    src: url(https://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHh30AXC-q.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh7USSwaPGR_p.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh7USSwiPGQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjxAwXjeu.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjx4wXg.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVSwaPGR_p.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVSwiPGQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 900;
    src: url(https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh50XSwaPGR_p.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 900;
    src: url(https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh50XSwiPGQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 100;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxC7mw9c.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 100;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRzS7mw9c.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 100;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxi7mw9c.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 100;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxy7mw9c.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 100;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 200;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxC7mw9c.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 200;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRzS7mw9c.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 200;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxi7mw9c.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 200;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxy7mw9c.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 200;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxC7mw9c.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRzS7mw9c.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxi7mw9c.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxy7mw9c.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxC7mw9c.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRzS7mw9c.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxi7mw9c.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxy7mw9c.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxC7mw9c.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRzS7mw9c.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxi7mw9c.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxy7mw9c.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 600;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxC7mw9c.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 600;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRzS7mw9c.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 600;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxi7mw9c.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 600;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxy7mw9c.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 600;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxC7mw9c.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRzS7mw9c.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxi7mw9c.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxy7mw9c.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 800;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxC7mw9c.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 800;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRzS7mw9c.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 800;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxi7mw9c.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 800;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxy7mw9c.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 800;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 900;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxC7mw9c.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 900;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRzS7mw9c.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 900;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxi7mw9c.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 900;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxy7mw9c.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 900;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 100;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 100;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 100;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 100;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 100;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 200;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 200;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 200;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 200;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 200;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 900;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 900;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 900;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 900;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 900;
    src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 300;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtE6F15M.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 300;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWvU6F15M.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 300;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtU6F15M.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 300;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuk6F15M.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 300;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWu06F15M.woff2) format('woff2');
    unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 300;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWxU6F15M.woff2) format('woff2');
    unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 300;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqW106F15M.woff2) format('woff2');
    unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 300;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtk6F15M.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 300;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWt06F15M.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 300;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtE6F15M.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWvU6F15M.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtU6F15M.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuk6F15M.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWu06F15M.woff2) format('woff2');
    unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWxU6F15M.woff2) format('woff2');
    unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqW106F15M.woff2) format('woff2');
    unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtk6F15M.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWt06F15M.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 600;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtE6F15M.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 600;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWvU6F15M.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 600;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtU6F15M.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 600;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuk6F15M.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 600;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWu06F15M.woff2) format('woff2');
    unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 600;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWxU6F15M.woff2) format('woff2');
    unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 600;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqW106F15M.woff2) format('woff2');
    unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 600;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtk6F15M.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 600;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWt06F15M.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 600;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 700;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtE6F15M.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 700;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWvU6F15M.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 700;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtU6F15M.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 700;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuk6F15M.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 700;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWu06F15M.woff2) format('woff2');
    unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 700;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWxU6F15M.woff2) format('woff2');
    unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 700;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqW106F15M.woff2) format('woff2');
    unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 700;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtk6F15M.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 700;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWt06F15M.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 700;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 800;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtE6F15M.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 800;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWvU6F15M.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 800;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtU6F15M.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 800;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuk6F15M.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 800;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWu06F15M.woff2) format('woff2');
    unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 800;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWxU6F15M.woff2) format('woff2');
    unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 800;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqW106F15M.woff2) format('woff2');
    unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 800;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtk6F15M.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 800;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWt06F15M.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 800;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format('woff2');
    unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format('woff2');
    unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format('woff2');
    unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format('woff2');
    unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format('woff2');
    unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format('woff2');
    unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format('woff2');
    unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format('woff2');
    unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format('woff2');
    unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format('woff2');
    unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format('woff2');
    unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format('woff2');
    unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format('woff2');
    unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format('woff2');
    unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format('woff2');
    unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 200;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752FD8Ghe4.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 200;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752HT8Ghe4.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 200;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752Fj8Ghe4.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 200;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752Fz8Ghe4.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 200;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752GT8G.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752FD8Ghe4.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752HT8Ghe4.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752Fj8Ghe4.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752Fz8Ghe4.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752GT8G.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752FD8Ghe4.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752HT8Ghe4.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752Fj8Ghe4.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752Fz8Ghe4.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752GT8G.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752FD8Ghe4.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752HT8Ghe4.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752Fj8Ghe4.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752Fz8Ghe4.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752GT8G.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 600;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752FD8Ghe4.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 600;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752HT8Ghe4.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 600;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752Fj8Ghe4.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 600;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752Fz8Ghe4.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 600;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752GT8G.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752FD8Ghe4.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752HT8Ghe4.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752Fj8Ghe4.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752Fz8Ghe4.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752GT8G.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}