@charset "UTF-8";
/* ------------------------------------------------------------- *
 * Fonts
/* ------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
/* ------------------------------------------------------------- *
 * Global variables
/* ------------------------------------------------------------- */
:root {
    --main-font: 'Rubik', sans-serif;
    --bg-body: linear-gradient(147.28deg,#e7f9ff,#f9fefe 23.44%,#fff9f3 48.44%,#eff8fa 77.6%,#e9f8fb);
    --white: #FFFFFF;
    --black: #242e4b;
    --gray-1: #F1F3F8;
    --gray-2: #edf2f4;
    --blue: #547add;
    --light-blue: #85d3ff;
    --green: #4ec857;
    --orange: #f6ae2d;
    --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: 1.2;
    color: var(--text);
    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(--text);
    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(--green);
}
::selection {
    color: var(--white);
    text-shadow: none;
    background: var(--green);
}
::-moz-selection {
    color: var(--white);
    text-shadow: none;
    background: var(--green);
}
::-webkit-selection {
    color: var(--white);
    text-shadow: none;
    background: var(--green);
}
/* 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(--orange);
    padding: 12px;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    min-height: 46px;
    border-radius: 4px;
    text-transform: uppercase;
    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;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
}
.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;
        text-transform: capitalize;
    }
}
@media (max-width: 374px) {
    .btn {
        padding: 12px 6px;
        text-transform: capitalize;
    }
}
/* ------------------------------------------------------------- *
 * Header
/* ------------------------------------------------------------- */
.header {
    background: var(--white);
    padding: 20px 0;
}
.header .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.header .logo {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
}
.header .logo span {
    color: var(--green);
}
.header .logo img {
    width: 135px;
}
.header .header-nav ul li {
    display: inline-block;
    padding: 0 9px;
}
.header .header-nav ul li a {
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
}
.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(--black);
    border-radius: 2px;
}
@media (max-width: 767px) {
    .header .container {
        padding: 0 14px;
    }
    .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;
    }
}
/* ------------------------------------------------------------- *
 * Intro
/* ------------------------------------------------------------- */
.intro {
    margin-bottom: 30px;
    text-align: center;
}
.intro .title {
    font-size: 32px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 7px;
}
.intro .subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 14px;
    color: var(--black);
}
.intro .relevance {
    font-size: 13px;
    font-weight: 500;
    margin-top: 14px;
}
.intro .relevance span {
    font-weight: 400;
    opacity: .7;
}
@media (max-width: 767px) {
    .intro {
        margin-bottom: 30px;
    }
    .intro .title {
        font-size: 20px;
    }
    .intro .subtitle {
        font-size: 15px;
        padding: 4px 10px;
    }
}
/* ------------------------------------------------------------- *
 * Offers
/* ------------------------------------------------------------- */
.offerwall {
    background: var(--bg-body);
}
.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(--white);
    border: 1px solid var(--gray-1);
    border-radius: 4px;
    padding: 18px 14px;
    gap: 14px;
    box-shadow: 0 0 6px 1px rgb(48 135 247 / 8%);
}
.offerwall .offer-logo {
    max-width: 165px;
    margin: 0 auto;
}
.offerwall .offer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 0 14px 0;
/*    border-top: 1px solid var(--gray-2);*/
    border-bottom: 1px solid var(--gray-2);
}
.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(--text);
}
.offerwall .offer-info li .value {
    font-weight: 500;
    color: var(--black);
}
.offerwall .offer-present-text {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 4px;
}
.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: 500;
    flex: 0 0 calc((100% - 12px) / 2);
    max-width: calc((100% - 12px) / 2);
}
.offerwall .offer-hot-label {
    font-size: 11px;
    font-weight: 400;
    color: var(--white);
    background: var(--light-blue);
    /* border-radius: 12px; */
    padding: 5px 9px;
    width: calc(100% + 28px);
    margin-left: -14px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.offerwall .offer-hot-label.alternate {
    background: var(--purple);
}
.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 {
        padding-top: 30px;
    }
    .offerwall .row {
        gap: 6px;
    }
    .offerwall .offer {
        padding: 16px 8px;
        gap: 11px;
        flex: 0 0 calc((100% - 6px) / 2);
        max-width: calc((100% - 6px) / 2);
    }
    .offerwall .container {
        max-width: 620px;
    }
    .offerwall .offer-logo {
        max-width: 135px;
    }
    .offerwall .offer-hot-label {
        padding: 5px 6px;
        width: calc(100% + 16px);
        margin-left: -8px;
        font-size: 10.2px;
    }
    .offerwall .offer-info li .text {
        font-size: 13px;
    }
    .offerwall .offer-info li .value {
        font-size: 13px;
    }
    .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);
    }
}
@media (max-width: 370px) {
    .offerwall .offer-links a {
        font-size: 9px;
        flex: 1;
        width: 100%;
    }
}
/* ------------------------------------------------------------- *
 * Offers
/* ------------------------------------------------------------- */
.footer {
    padding: 24px 0;
    background:var(--black);
}
.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(--green);
}
.footer .logo img {
    width: 135px;
}
.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(--orange);
}
.footer .footer-text {
    font-size: 12px;
    color: var(--gray-1);
    opacity: .6;
}
.footer .divider {
    display: block;
    width: 100%;
    height: 1px;
    background: #424243;
}
@media (max-width: 767px) {
    .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-2);
}
.offerdetails .table {
    width: 100%;
}
.offerdetails .table thead {
    border-bottom: 1px solid #333;
}
.offerdetails .table tbody tr:nth-child(2n),
.offerdetails .table thead {
    background: var(--gray-2);
}
.offerdetails .table td {
    border: 0 solid transparent;
    color: #636363;
}
.offerdetails .table td,
.offerdetails .table th {
    padding: 5px;
}
.offerdetails .table th {
    height: 68px;
}
.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(--text);
    text-decoration: none;
}
.offerdetails .list-item a {
    width: 100%;
    display: block;
    padding: 10px;
    border-radius: 10px;
    background-color: var(--white);
    border: 1px solid var(--gray-2);
}
@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-2);
    padding-top: 0;
}
.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(--text);
    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(--green);
    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;
    }
}
/* show-more — glassmorphism */
#show-more-btn {
    background: rgba(255,255,255,0.5) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(84,122,221,0.3) !important;
    color: #547add !important;
    font-weight: 600 !important;
}
#show-more-btn:hover {
    background: rgba(255,255,255,0.65) !important;
}

/* tighter spacing: header → greeting */
main { gap: 0 !important; }
.offerwall { padding-top: 6px !important; }
#greeting-block, .gr-banner { margin-top: 0 !important; }

/* tighter: greeting сразу под header */
main { gap: 0 !important; }
.offerwall { padding-top: 6px !important; }
.offerwall .intro { display: none !important; }
.offerwall .row { margin: 0 !important; }
#greeting-block, .gr-banner { margin-top: 0 !important; }

/* 80px отступ до футера */
.offerwall { padding-bottom: 80px !important; }
