@charset "UTF-8";
/* ------------------------------------------------------------- *
 * Fonts
/* ------------------------------------------------------------- */
@font-face {
    font-family: 'Roboto Serif';
    src: url('../fonts/roboto/RobotoSerif-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Serif';
    src: url('../fonts/roboto/RobotoSerif-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Serif';
    src: url('../fonts/roboto/RobotoSerif-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Serif';
    src: url('../fonts/roboto/RobotoSerif-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Serif';
    src: url('../fonts/roboto/RobotoSerif-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Serif';
    src: url('../fonts/roboto/RobotoSerif-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
/* ------------------------------------------------------------- *
 * Global variables
/* ------------------------------------------------------------- */
:root {
    --main-font: 'Roboto Serif', serif;
    --white: #FFFFFF;
    --light: #FFE7DE;
    --blue: #00AFD9;
    --yellow: #f9d722;
    --dark: #161719;
    --gray-1: #F9F9F9;
    --gray-2: #E5EBEE;
    --text: #363B3F;
    --purple: #c050ff;
    --border-r: 10px;
    --shadow-1: 0 4px 4px rgba(255, 277, 234, .3);
}
/* ------------------------------------------------------------- *
 * General
/* ------------------------------------------------------------- */
*, :after, :before { -webkit-box-sizing: border-box; box-sizing: border-box; }

html,body { padding: 0; margin: 0; width: 100%; height: 100%; min-height: 100vh; }

body {
    position: relative;
    font-family: var(--main-font);
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    line-height: normal;
    color: var(--dark);
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}
main {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 6px;
    width: 100%;
    overflow-x: initial;
}
p { 
    color: var(--dark);
    margin: 0 0 20px; 
    font-weight: 300;
    line-height: 1.3;
}
a {
    color: var(--blue);
    text-decoration: none;
    outline: none;
    cursor: pointer;
}
a,button {
    -webkit-transition: .2s linear;
    -o-transition: .2s linear;
    transition: .2s linear;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0; 
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
img {
    display: block;
    border-style: none;
    width: 100%;
    max-width: 100%;
    height: auto;
}
b, strong {
    font-weight: bold;
    font-weight: 600;
}
button {
    font-family: var(--main-font);
    outline: none;
    border: 0;
    padding: 0;
    line-height: normal;
    background: transparent;
    cursor: pointer;
}
button:focus { 
    outline: none; 
}
.hide {
    display: none;
}
.w-100 {
    width: 100%!important;
}
.section-title h4,
h4.section-title {
    font-size: 20px;
    margin-top: 0;
}
/* Selection */
::-moz-selection {
    color: var(--white);
    text-shadow: none;
    background: var(--blue);
}
::selection {
    color: var(--white);
    text-shadow: none;
    background: var(--blue);
}
::-moz-selection {
    color: var(--white);
    text-shadow: none;
    background: var(--blue);
}
::-webkit-selection {
    color: var(--white);
    text-shadow: none;
    background: var(--blue);
}
/* Section */
section {
    position: relative;
    padding: 50px 0;
}
@media (max-width: 767px) {
    section {
        padding: 40px 0;
    }
}
/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 14px;
}
.container-fluid {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 14px;
    padding-right: 14px;
}
@media (max-width: 767px) {
    .container {
        padding: 0 8px;
    }
}
/* ------------------------------------------------------------- *
 * Buttons
/* ------------------------------------------------------------- */
.btn {
    position: relative;
    background: var(--blue);
    padding: 12px;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    min-height: 46px;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    box-shadow:inset 1px 1px 2px 0px rgba(255,255,255,.25),
   3px 3px 5px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1)
}
.btn img {
    width: 16px;
    height: 16px;
}
.btn-anim {
    overflow: hidden;
}
.btn-anim:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn1 3s ease-in-out infinite;
}
@-webkit-keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
@media (max-width: 767px) {
    .btn {
        font-size: 14px;
    }
}
/* ------------------------------------------------------------- *
 * Header
/* ------------------------------------------------------------- */
.header {
    background: var(--gray-2);
    padding: 8px 0;
}
.header .container {
    padding: 0 8px;
}
.header .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.header .logo {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
}
.header .logo span {
    color: var(--blue);
}
.header .logo img {
    width: 155px;
}
.header .header-nav ul li {
    display: inline-block;
    padding: 0 9px;
}
.header .header-nav ul li a {
    font-size: 14px;
    font-weight: 300;
    color: var(--dark);
}
.header .btn {
    font-size: 14px;
    font-weight: normal;
    width: 160px;
}
.header .group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 17px;
    cursor: pointer;
}
.burger span {
    display: block;
    height: 2px;
    background-color: var(--dark);
    border-radius: 2px;
}
@media (max-width: 767px) {
    .header .container {
        padding: 0 14px;
    }
    .header .logo img {
        width: 120px;
    }
    .burger {
        display: flex;
    }
    .header-nav {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #fff;
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 0 0 14px;
        border-bottom: 1px solid var(--gray-2);
        z-index: 10;
    }
    .header-nav.active {
        display: flex;
    }
    .header-nav ul {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .header-nav li {
        margin: 6px 0;
    }
    .header .btn {
        font-size: 12px;
        font-weight: normal;
        padding: 12px;
        min-height: auto;
        border-radius: 4px;
        width: auto;
    }
}
/* ------------------------------------------------------------- *
 * Welcome
/* ------------------------------------------------------------- */
.welcome {
    padding: 0;
    background: var(--gray-2);
}
.welcome .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}
.welcome .text {
    max-width: 500px;
}
.welcome .text .title {
    font-size: 36px;
    font-weight: 600;
    line-height: 115%;
    margin-bottom: 9px;
    color: var(--blue);
}
.welcome .text .title span {
    color: var(--dark);
}
.welcome .text p {
    font-size: 16px;
    font-weight: 200;
    line-height: 140%;
    margin: 0;
    color: var(--dark);
}
.welcome .banner {
    width: 600px;
    margin-top: -20px;
}
.welcome .button {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 26px;
    gap: 16px;
}
.welcome .button span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-style: italic;
    font-weight: 200;
    color: var(--dark);
}
.welcome .button span img {
    width: 32px;
}
.welcome .btn {
    font-weight: normal;
    width: 220px;
}
@media (max-width: 767px) {
    .welcome {
        background-size: 260%;
    }
    .welcome .container {
        padding: 0;
    }
    .welcome .row {
        flex-direction: column;
        padding: 20px 20px 0 20px;
        overflow: hidden;
        border-radius: 12px;
        overflow: hidden;
    }
    .welcome .text {
        margin-right: auto;
    }
    .welcome .text .title {
        font-size: 26px;
    }
    .welcome .text p {
        font-size: 14px;
        font-weight: 200;
        line-height: 130%;
        margin-bottom: 6px;
        max-width: 350px;
    }
    .welcome .banner {
        width: 110%;
        margin: 0 -90px 0 0px;
    }
    .welcome .button {
        margin-top: 20px;
        gap: 6px;
    }
    .welcome .button span {
        margin: 0 auto;
    }
    .welcome .button span img {
        width: 32px;
        transform: rotate(72deg);
    }
    .welcome .button .btn-white {
        min-height: 40px;
        width: 100%;
    }
}
/* ------------------------------------------------------------- *
 * Intro
/* ------------------------------------------------------------- */
.intro {
    margin-bottom: 50px;
    text-align: center;
}
.intro .title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 5px;
    text-transform: capitalize;
    color: var(--blue);
}
.intro .subtitle {
    display: inline-block;
    font-size: 22px;
    font-weight: normal;
}
.intro .subtitle span {
    font-weight: 500;
    color: var(--blue);
}
.intro .relevance {
    font-size: 13px;
    font-weight: 500;
    margin-top: 14px;
}
.intro .relevance span {
    font-weight: normal;
    opacity: .7;
}
@media (max-width: 767px) {
    .intro {
        margin-bottom: 20px;
    }
    .intro .title {
        font-size: 22px;
    }
    .intro .subtitle {
        font-size: 15px;
        padding: 4px 10px;
    }
}
/* ------------------------------------------------------------- *
 * Offers
/* ------------------------------------------------------------- */
.offerwall {
/*    background: var(--gray-1);*/
    border-radius: 8px;
}
.offerwall .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}
.offerwall .offer {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0 0 calc((100% - 42px) / 4);
    max-width: calc((100% - 42px) / 4);
    box-sizing: border-box;
    background: var(--gray-1);
    border: 1px solid #ECECEC;
    border-radius: 6px;
    padding: 18px 14px;
    min-height: 308.33;
    gap: 14px;
}
.offerwall .offer-logo {
    max-width: 165px;
    margin: 0 auto;
}
.offerwall .offer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 0;
}
.offerwall .offer-info li {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
}
.offerwall .offer-info li .text {
    font-size: 14px;
    color: var(--dark);
}
.offerwall .offer-info li .value {
    font-weight: 600;
    color: var(--dark);
}
.offerwall .offer-present-text {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}
.offerwall .offer-present-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}
.offerwall .offer-present-inner div {
    font-size: 15px;
    font-weight: 500;
    flex: 0 0 calc((100% - 10px) / 2);
    max-width: calc((100% - 10px) / 2);
    text-align: center;
}
.offerwall .offer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}
.offerwall .offer-links a {
    text-align: center;
    font-size: 12.35px;
    font-weight: normal;
    flex: 0 0 calc((100% - 12px) / 2);
    max-width: calc((100% - 12px) / 2);
}
.offerwall .offer-hot-label {
    position: absolute;
    top: -9px;
    left: 14px;
    font-size: 11px;
    font-weight: normal;
    color: var(--dark);
    background: var(--yellow);
    border-radius: 6px;
    padding: 5px 9px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}
.offerwall .offer-hot-label.alternate {
    background: var(--yellow);
}
.offerwall .offer-hot-label:before {
    content: "";
    background-image: url('../img/fire.svg');
    background-size: cover;
    background-repeat: no-repeat;
    width: 13px;
    height: 13px;
}
.offerwall .offer-button {
    margin-top: 6px;
}
@media (max-width: 1200px) {
    .offerwall {
        padding-left: 65px;
        padding-right: 65px;
    }
    .offerwall .offer {
        flex: 0 0 calc((100% - 28px) / 3);
        max-width: calc((100% - 28px) / 3);
    }
    .offerwall .offer-present-text,
    .offerwall .offer-present-inner div {
        font-size: 14px;
    }
    .offerwall .offer-links a {
        max-width: 130px;
    }
}
@media (max-width: 992px) {
    .offerwall {
        padding-left: 0;
        padding-right: 0;
    }
    .offerwall .offer {
        flex: 0 0 calc((100% - 14px) / 2);
        max-width: calc((100% - 14px) / 2);
    }
    .offerwall .container {
        max-width: 620px;
    }
}
@media (max-width: 767px) {
    .offerwall {
        border-radius: 20px 20px 0 0;
    }
    .offerwall .row {
        gap: 6px;
    }
    .offerwall .offer {
        padding: 16px 8px;
        gap: 11px;
        flex: 0 0 calc((100% - 6px) / 2);
        max-width: calc((100% - 6px) / 2);
        min-height: 300px;
    }
    .offerwall .container {
        max-width: 620px;
    }
    .offerwall .offer-logo {
        max-width: 135px;
    }
    .offerwall .offer-hot-label {
        padding: 5px 6px;
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
        font-size: 10.2px;
    }
    .offerwall .offer-info li {
        align-items: flex-start;
    }
    .offerwall .offer-info li .text {
        font-size: 13px;
        max-width: 100px;
    }
    .offerwall .offer-info li .value {
        font-size: 14px;
    }
    .offerwall .offer-present-inner {
        flex-direction: column;
        gap: 1px;
    }
    .offerwall .offer-present-text {
        max-width: 140px;
        margin: 0 auto;
    }
    .offerwall .offer-present-text,
    .offerwall .offer-present-inner div {
        font-size: 12px;
    }
    .offerwall .offer-present-inner div {
        flex: 1;
        max-width: 100%;
    }
    .offerwall .offer-links {
        gap: 4px;
    }
    .offerwall .offer-links a {
        font-size: 10px;
        flex: 0 0 calc((100% - 4px) / 2);
        max-width: calc((100% - 4px) / 2);
    }
    .offerwall .offer-button .btn {
        font-size: 12px;
    }
}
@media (max-width: 365px) {
    .offerwall .offer-links a {
        flex: 1;
        width: 100%;
    }
}
/* ------------------------------------------------------------- *
 * Offers Placeholder
/* ------------------------------------------------------------- */
.offer-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 0 0 calc((100% - 42px) / 4);
    max-width: calc((100% - 42px) / 4);
    height: 336.33px;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 18px 14px;
    background: var(--gray-1);
    overflow: hidden;
    position: relative;
}
.skel {
    background-color: var(--gray-2);
    background: linear-gradient(90deg, var(--gray-2) 0px, #fff 40px, var(--gray-2) 80px);
    background-size: 600px;
    border-radius: 6px;
    animation: placeholderShimmer 1.4s ease infinite;
}
.skel-logo {
    width: 165px;
    height: 84px;
    margin: 0 auto;
}
.skel-info,
.skel-link {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4px;
}
.skel-info span {
    width: 45%;
    height: 18px;
}
.skel-text {
    width: 92%;
    margin: 0 auto;
    height: 16px;
}
.skel-link span {
    width: 46%;
    height: 20px;
}
.skel-button {
    width: 100%;
    height: 46px;
}
@keyframes placeholderShimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: 600px 0;
    }
}
@media (max-width: 767px) {
    .offer-placeholder {
        height: 341.5px;
        flex: 0 0 calc((100% - 6px) / 2);
        max-width: calc((100% - 6px) / 2);
    }
    .skel-logo {
        width: 135px;
        height: 69px;
    }
    .skel-info span,
    .skel-link span {
        width: 45%;
        height: 20px;
    }
}
/* ------------------------------------------------------------- *
 * Offers
/* ------------------------------------------------------------- */
img[src$="logo-w.svg"] {
  width: 150px;
  height: auto;
  display: block;
}
.footer {
    padding: 24px 0;
    background: var(--blue)
}
.footer .row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer .footer-top,
.footer .footer-bottom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer .logo {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}
.footer .logo span {
    color: var(--blue);
}
.footer .logo img {
    width: 150px;
}
.footer .footer-menu li {
    display: inline-block;
    padding: 0 9px;
}
.footer .footer-menu li a {
    color: var(--white);
    font-size: 14px;
}
.footer .footer-menu li a:hover {
    text-decoration: underline;
}
.footer .footer-bottom .copy {
    font-size: 12px;
    color: var(--gray-1);
}
.footer .footer-bottom .legal a {
    font-size: 12px;
    color: var(--gray-1);
    text-decoration: underline;
}
.footer .footer-bottom .legal a:hover {
    color: var(--blue);
}
.footer .footer-text {
    font-size: 12px;
    color: var(--gray-1);
    opacity: .6;
}
.footer .divider {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--gray-1);
    opacity: .2;
}
.space {
    display: flex;
    padding: .2px 0;
    width: 100%;
}
@media (max-width: 767px) {
    .footer .container {
        padding: 0 15px;
    }
    .footer .footer-text {
        font-size: 10px;
        text-align: center;
    }
    .footer .footer-top {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }
    .footer .footer-menu {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
/* ------------------------------------------------------------- *
 * Offers Details
/* ------------------------------------------------------------- */
.offerdetails {
    background: var(--gray-1);
}
.offerdetails .details-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
}
.offerdetails .list-item {
    width: calc((100% - 28px) / 3);
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    justify-content: center;
    font-size: 13px;
    color: #636363;
}
.offerdetails .list-item a,
.offerdetails .list-item a:hover {
    color: var(--dark);
    text-decoration: none;
}
.offerdetails .list-item a {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px;
    border-radius: 12px;
    background-color: var(--white);
    border: 1px solid var(--gray-2);
}
.offerdetails .creditor-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
}
.offerdetails .creditor-heading .title {
    font-size: 18px;
    font-weight: normal;
    text-transform: capitalize;
}
.offerdetails .creditor-heading .icon {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.9697 7.53034C13.6768 7.23745 13.6768 6.76257 13.9697 6.46968C14.2626 6.17678 14.7374 6.17678 15.0303 6.46968L20.0303 11.4697C20.3232 11.7625 20.3232 12.2374 20.0303 12.5303L15.0303 17.5303L15.0165 17.5438C14.7226 17.8232 14.258 17.8187 13.9697 17.5303C13.6813 17.242 13.6768 16.7774 13.9562 16.4835L13.9697 16.4697L18.4393 12L13.9697 7.53034Z' fill='%231455FE'/%3E%3Cpath opacity='0.5' d='M19.5 11.25C19.9142 11.25 20.25 11.5858 20.25 12C20.25 12.4142 19.9142 12.75 19.5 12.75L19.5 11.25ZM9.50001 12.75C8.54666 12.75 7.13332 12.4702 5.93678 11.6087C4.70199 10.7196 3.75 9.24443 3.75 6.99999C3.75001 6.58578 4.08579 6.24999 4.5 6.24999C4.91421 6.24999 5.24999 6.58578 5.25 6.99999C5.25 8.75554 5.96468 9.78039 6.81322 10.3913C7.70001 11.0298 8.78669 11.25 9.50001 11.25L19.4999 11.25C19.5 11.2501 19.5 11.2607 19.5 12C19.5 12.7393 19.5 12.7498 19.4999 12.75L9.50001 12.75Z' fill='%231455FE'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}
.offerdetails .creditor-body .list {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin-bottom: 10px;
}
.offerdetails .creditor-body .list:last-child {
    margin-bottom: 0;
}
.offerdetails .creditor-body .list .text {
    -webkit-flex-basis: 30%;
    flex-basis: 30%;
    margin-right: 15px;
    opacity: .6;
    font-size: 12px;
}
.offerdetails .creditor-body .list .value {
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    font-size: 12px;
}
@media (max-width: 992px) {
    .offerdetails .container {
        max-width: 620px;
    }
    .offerdetails .list-item {
        width: calc((100% - 14px) / 2);
    }
}
@media (max-width: 767px) {
    .offerdetails .list-item {
        width: 100%
    }
}
/* ------------------------------------------------------------- *
 * FAQ
/* ------------------------------------------------------------- */
.faq {
    background: var(--gray-1);
}
.accordion {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.accordion-item {
    flex: 0 0 calc((100% - 14px) / 2);
    max-width: calc((100% - 14px) / 2);
    padding: 20px 16px;
    border-radius: 10px;
    background: var(--white);
    transition: all .2s ease-in;
}
.accordion-header {
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}
.accordion-header .accordion-title {
    width: 70%;
    color: var(--dark);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    margin: 0;
    transition: all .2s ease-in;
}
.accordion-header .accordion-title span {
/*    font-weight: 600;*/
}
.accordion-header .arrow-accord {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 25px;
    height: 25px;
    transition: all .2s;
}
.accordion-header .arrow-accord span {
    width: 17px;
    height: 1.2px;
    background: var(--blue);
    transition: all .2s;
}
.accordion-header .arrow-accord span:nth-child(2) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(90deg);
}
.accordion-item.active .arrow-accord span:nth-child(2) {
    transform: translate(-50%,-50%) rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 16px 0 0 0;
    max-width: 94%;
}
.accordion-content p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    opacity: 1;
    margin-top: 0;
    margin-bottom: 14px;
    transition: all .2s ease-in;
}
.accordion-content p:last-child {
    margin-bottom: 0;
}
.accordion-content ul {
    padding-left: 14px;
}
.accordion-content ul li {
    font-size: 14px;
    list-style: disc;
}
.accordion-item.active .accordion-content {
    display: block;
}
@media (max-width: 767px) {
    .accordion {
        flex-direction: column;
    }
    .accordion-item {
        flex: 1;
        max-width: 100%;
    }
    .accordion-header .accordion-title {
        width: calc(100% - 65px);
        font-size: 14px;
        font-weight: 500;
    }
    .accordion-header .arrow-accord {
        width: 20px;
        height: 20px;
    }
    .accordion-header .arrow-accord span {
        width: 14px;
    }
    .accordion-content p {
        font-size: 12px;
        margin-bottom: 0;
    }

}
/* ------------------------------------------------------------- *
 * Home SEO Text
/* ------------------------------------------------------------- */
.seo-text h1 {
    font-size: 28px;
    margin-top: 0!important;
}
.seo-text h2 {
    font-size: 22px;
}
.seo-text h1,
.seo-text h2 {
    font-weight: 600;
    margin: 20px 0;
}
.seo-text strong {
    font-weight: 600;
}
.seo-text ul li {
    list-style: disc;
}
.seo-text ul {
    margin-left: 14px;
    margin-bottom: 20px;
}
.seo-text ol li {
    margin-bottom: 8px;
}
.seo-text ol li:last-child {
    margin-bottom: 0;
}
.seo-text p,
.seo-text ol li {
    font-weight: 300;
}
@media (max-width: 1200px) {
    .seo-text h1 {
        font-size: 24px;
    }
    .seo-text h2 {
        font-size: 20px;
    }
}
@media (max-width: 992px) {
    .seo-text h1 {
        font-size: 22px;
    }
    .seo-text h2 {
        font-size: 18px;
    }
    .seo-text ol {
        padding-left: 26px;
    }
    .seo-text p,
    .seo-text ol li,
    .seo-text ul li {
        font-size: 13px;
    }
    .seo-text ol li {
        margin-bottom: 6px;
    }
    .seo-text ol li:last-child {
        margin-bottom: 0;
    }
    .seo-text h1,
    .seo-text h2,
    .seo-text ol,
    .seo-text p {
        margin-bottom: 18px;
    }
}
@media (max-width: 767px) {
    .seo-text h1 {
        font-size: 18px;
    }
    .seo-text h2 {
        font-size: 16px;
    }
    .seo-text ol,
    .seo-text ul {
        padding-left: 14px;
    }
    .seo-text p:last-child {
        margin-bottom: 0;
    }
}