:root {
    --color-royal-blue: #01346b;
    --color-sky-blue: #1a73e8;
    --color-light-blue: #f5faff;
    --color-very-dark-blue: #012144;
    --color-dark-sky-blue: #0250a5;
    --color-selective-yellow: #d3a76c;
    --color-latte: #ceb395;
    --color-snow-gray: #f7f7f7;
    --color-text-gray: #4e4e4e;
    --spacing: 26px;
}


/* background-color: var(--color-very-dark-blue); 
   background: linear-gradient(to bottom, var(--color-very-dark-blue) 50%, var(--color-royal-blue) 100%); */

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: "Barlow", sans-serif;
    color: var(--color-very-dark-blue);
    font-size: 17px;
}

body {
    max-width: 100vw;
    overflow-x: hidden;
}

h1, h2, h3, h4, .h1, .h2 {
    font-family: "Bebas Neue", sans-serif;
}

h1, h2, h3, h4, h5, p, .h1, .h2 {
    margin-top: 0;
    margin-bottom: var(--spacing);
}

.h1, .h2 {
    font-weight: bold;
}

p {
    line-height: 1.5;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

iframe {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

a:hover {
    color: var(--color-sky-blue);
}

footer a:hover {
    color: var(--color-selective-yellow);
}

.container {
    width: 100%;
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing);
    padding-right: var(--spacing);
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 75px;
}

.navbar-toggler {
    display: none;
    background: none;
    border: 0;
    width: 24px;
    height: 20px;
    background-image: none;
    position: relative;
    border-bottom: 2px solid var(--color-very-dark-blue);
    transition: all 300ms linear;
}

.navbar-toggler:after, .navbar-toggler:before {
    width: 24px;
    position: absolute;
    height: 2px;
    background-color: var(--color-very-dark-blue);
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms linear;
}

.navbar-toggler:after {
    top: 9px;
}

.navbar-toggler.active {
    border-color: transparent;
}

.navbar-toggler.active:before {
    transform: translateY(9px) rotate(-45deg);
}

.navbar-toggler.active:after {
    transform: rotate(45deg);
}

.cta {
    display: inline-block;
    font-family: inherit;
    font-size: 20px;
    line-height: 1;
    font-weight: 600;
    color: var(--color-light-blue);
    background-color: var(--color-selective-yellow);
    border: 3px solid var(--color-selective-yellow);
    padding: 19px 36px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.cta:hover {
    background-color: transparent;
    color: var(--color-selective-yellow);
}

.skeleton {
    position: relative;
    background-color: rgba(0, 0, 0, 0.11);
     animation: skeleton 2s ease-in-out 0.5s infinite; 
    overflow: hidden;
}

.skeleton::after {
    -webkit-animation: wave 2s linear 0.5s infinite;
    animation: wave 2s linear 0.5s infinite;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.04), transparent);
    content: '';
    position: absolute;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}

@keyframes skeleton {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}

@keyframes wave {
    0% {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    50% {
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
    }
}

/* HEADER */

header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing) 0;
    background-color: #FFF;
    z-index: 998;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing) * 2);
}

.logo a {
    display: block;
}

.logo img {
    height: 50px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

header .cta {
    font-size: 18px;
    line-height: 16px;
    padding: 12.5px 25px;
    white-space: nowrap;
}

header .cta:not(.full) {
    background-color: transparent;
    border-color: var(--color-latte);
    color: var(--color-latte);
}

header .cta:not(.full):hover {
    background-color: var(--color-latte);
    color: var(--color-light-blue);
}

header.active {
    box-shadow: 0 0 #000, 0 0 #000, 0 0 #000, 0 0 #000, 0 1px 2px 0 rgba(0,0,0,.05);
}

header.active .logo img {
    height: 45px;
}

header.active .cta {
    padding: 12.5px 25px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: var(--spacing);
}

/* NAV */

nav ul {
    display: flex;
    align-items: center;
    gap: var(--spacing);
}

nav ul li {
    display: flex;
    align-items: center;
    height: 40px;
}

nav ul li a {
    white-space: nowrap;
    font-weight: 500;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 40px;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
    padding: calc(var(--spacing) / 2);
    flex-direction: column;
    gap: calc(var(--spacing) / 2);
    z-index: 1;
}

/* HERO */

.hero {
    padding: 50px 0 100px 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: calc(var(--spacing) * 2);
}

h1, .h1 {
    font-size: 85px;
    line-height: 90px;
    margin-bottom: calc(var(--spacing) / 2);
}

.heading-text p {
    font-size: 20px;
    line-height: 30px;
}

.heading-text .cta {
    margin-top: calc(var(--spacing) / 3);
}

.heading-img img {
    width: 500px;
}

.heading-img.skeleton {
    width: 500px;
    min-width: 500px;
    height: 500px;
}

/* SECTION */

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 75px;
}

.section-title p {
    margin-bottom: 0;
}

.breadcrumbs-bx {
    margin-bottom: calc(var(--spacing) / 1.25);
}

.breadcrumbs-bx li {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

.breadcrumbs-bx li:last-child {
    margin-right: 0;
}

.breadcrumbs-bx li a {
    color: var(--text-gray);
    font-weight: 400;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.breadcrumbs-bx li a:hover {
    color: var(--color-sky-blue);
}

.breadcrumbs-bx li:not(:last-child):after {
    position: absolute;
    content: '/';
    font-size: 16px;
    color: var(--text-gray);
    right: -20px;
    font-weight: normal;
    top: 0;
}

h2, .h2 {
    font-size: 59px;
    margin-bottom: 0;
}

h2 span {
    color: var(--color-sky-blue);
}

.section-title .subtitle {
    width: 100%;
    max-width: 450px;
    font-size: 18px;
    line-height: 1.25;
    margin: 0 auto;
}

.more-link {
    margin-top: var(--spacing);
    display: flex;
    justify-content: flex-end;
    text-decoration: underline;
}

/* TRUSTPILOT */

.trust-pilot {
    background-color: var(--color-snow-gray);
}

.testimonials {
    display: flex;
    gap: 24px;
}

.testimonials .slick-track {
    display: flex;
}

.testimonials .slick-slide {
    height: auto;
}

.testimonial {
    width: 100%;
}

.ts {
    padding: 24px;
    background-color: #FFF;
    border-bottom: 1px solid #e8e9eb;
    height: 100%;
    margin: 0 16px;
}

.ts-body {
    height: 100%;
}

.ts-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #696a6a;
}

.ts-comment {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 16px;
    height: calc(100% - 28px);
}

.ts-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ts-stars img {
    height: 20px;
}

.ts-date {
    font-size: 14px;
    color: #696a6a;
}

.ts-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ts-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ts-name {
    color: #9ea9a7;
    margin-top: 16px;
    font-size: 15px;
}

.ts-doe span {
    font-weight: 600;
}

.ts-rated {
    margin-top: calc(var(--spacing) / 2);
    text-align: center;
}

.ts-rated a {
    font-weight: 500;
    text-decoration: underline;
    text-wrap: nowrap;
}

.ts-rated img {
    position: relative;
    top: 3px;
    display: inline-block;
    width: 90px;
}

/* SCAMS */

.scams .container img {
    max-width: 100%;
    max-height: 40px;
}

.scams-container {
    margin: 0 var(--spacing);
}

.scams-container .slick-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-next, .slick-prev {
    background-size: cover!important;
    width: 24px;
    height: 24px;
    background-color: transparent;
}

.slick-next {
    background-image: url(../img/arrow-right1.svg)!important;
}

.slick-prev {
    background-image: url(../img/arrow-left1.svg)!important;
}

.types-of-scams .slick-next {
    background-image: url(../img/arrow-right-white1.svg)!important;
}

.types-of-scams .slick-prev {
    background-image: url(../img/arrow-left-white1.svg)!important;
}

.slick-next:before, .slick-prev:before {
    content: none;
    opacity: 1;
}

/* WHY US */

/*.why-us {*/
/*    background-color: var(--color-snow-gray);*/
/*}*/

.why-us-inner {
    display: flex;
    flex-wrap: wrap;
}

.why-us-point {
    position: relative;
    width: 50%;
    min-height: 215px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing);
    color: var(--color-light-blue);
}

.why-us-point:nth-child(1) {
    color: var(--color-light-blue);
}

.why-us-point:nth-child(1):after,
.why-us-point:nth-child(3):after,
.why-us-point:nth-child(1):before,
.why-us-point:nth-child(4):before {
    content: '';
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translate(0, -50%);
    border-radius: 50%;
    box-shadow: none;
}

.why-us-point:nth-child(1):before {
    top: auto;
    bottom: -30px;
    right: 50%;
    transform: translate(-50%, 0);
}

.why-us-point:nth-child(4):before {
    top: auto;
    top: -30px;
    right: 50%;
    transform: translate(-50%, 0);
}

.why-us-point:nth-child(1),
.why-us-point:nth-child(1):before,
.why-us-point:nth-child(1):after {
    background-color: var(--color-very-dark-blue);
    z-index: 4;
}

.why-us-point:nth-child(2),
.why-us-point:nth-child(2):after{
    background-color: var(--color-royal-blue);
    z-index: 1;
}

.why-us-point:nth-child(3),
.why-us-point:nth-child(3):after{
    background-color: var(--color-dark-sky-blue);
    z-index: 3;
}

.why-us-point:nth-child(4),
.why-us-point:nth-child(4):before,
.why-us-point:nth-child(4):after {
    background-color: var(--color-sky-blue);
    z-index: 2;
}

.why-us-point:nth-child(2),
.why-us-point:nth-child(4) {
    padding-left: 60px;
}

.why-us-point:nth-child(2) {
    padding-bottom: 50px;
}

.why-us-point-title {
    font-size: 22px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* TYPES OF SCAMS */

.types-of-scams .container {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.types-of-scams a {
    display: block;
}

.types-of-scams .slick-slide {
    margin: 0 15px;
}

.types-of-scams .slick-list {
    margin: 0 -15px;
}

.types-of-scams .slick-prev,
.types-of-scams .slick-next {
    position: absolute;
    top: 45px;
    padding: 25px;
    background-size: 24px 24px!important;
    background-position: 50%;
    background-repeat: no-repeat;
    background-color: var(--color-latte);
    border-radius: 50%;
    z-index: 1;
}

.types-of-scams .slick-prev {
    left: 15px;
}

.types-of-scams .slick-next {
    right: 15px;
}

.scam {
    height: 315px;
    padding: 25px;
    background: var(--color-light-blue);
}

.scam img {
    height: 111px;
    display: block;
    margin: 0 auto 15px auto;
}

.scam-title {
    font-size: 22px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 15px;
}

.scam-text {
    color: var(--color-text-gray);
}

/* BLOG */

.bp {
    display: flex!important;
    flex-direction: column;
    gap: calc(var(--spacing) / 2);
    margin: 0 calc(var(--spacing) / 2);
}

.bp .bp-img {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: 50%;
}

.bp-categories {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing) / 2);
}

.bp-chip {
    text-transform: capitalize;
    padding: 5px 10px;
    background-color: var(--color-snow-gray);
}

.bp-title {
    font-weight: 600;
    line-height: 1.25;
    font-size: 22px;
}

.bp-link {
    font-weight: 500;
    text-decoration: underline;
}

/* READY */

.ready {
    background-color: var(--color-snow-gray);
    text-align: center;
}

.ready .container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing);
}

.ready .section-title {
    margin-bottom: 0;
}

.ready .section-title .subtitle {
    width: 100%;
    max-width: 550px;
}

.trustpilot a,
.trustpilot a div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.trustpilot a strong {
    font-weight: 500;
}

.trustpilot .tp-stars {
    width: 75px;
}

.trustpilot .tp-logo {
    width: 90px;
}

/* PAGE BOTTOM */

.page-bottom {
    position: relative;
}

/* NEWSLETTER */

/* Стили для формы подписки */
.newsletter {
    width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    padding: 0;
}

.newsletter .container {
    padding: 50px;
    background-color: var(--color-royal-blue);
    color: var(--color-light-blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: calc(var(--spacing) * 2);
}

/* Стили для поля телефона без флага */
.phone-group {
    position: relative;
    width: 100%;
}

.phone-group .iti {
    width: 100%;
}

.phone-group .iti__selected-flag {
    display: none; /* Скрываем флаг */
}

.phone-group .iti__selected-dial-code {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-very-dark-blue);
    font-size: 13px;
    z-index: 2;
}

.phone-group input[type="tel"] {
    padding-left: 60px !important; /* Отступ для кода страны */
    width: 100%;
    border: none;
    font-weight: 500;
    font-size: 13px;
    color: var(--color-very-dark-blue);
    padding: 15px 20px;
    background: var(--color-light-blue);
    height: 50px;
    outline: 0;
}

/* Остальные стили формы */
.mc-fields-flex {
    display: flex;
    align-items: flex-start;
    gap: calc(var(--spacing) / 2);
    margin-bottom: calc(var(--spacing) / 2);
}

.newsletter #mc_embed_signup {
    background: none; 
    clear: left; 
    font: inherit; 
    width: auto; 
}

#mc_embed_signup_scroll {
    width: 100%;
}

#mc_embed_signup_scroll h2,
#mc_embed_signup_scroll .indicates-required,
#mc_embed_signup_scroll .helper_text {
    display: none;
}

.mc-field-group {
    position: relative;
    width: 100%;
}

.newsletter form input {
    width: 100%;
    border: none;
    font-weight: 500;
    font-size: 13px;
    color: var(--color-very-dark-blue);
    padding: 15px 20px;
    background: var(--color-light-blue);
    height: 50px;
    outline: 0;
}

.newsletter form button,
.newsletter #mc_embed_signup input[type="submit"] {
    font-family: inherit;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    border: none;
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    color: var(--color-light-blue);
    background-color: var(--color-selective-yellow);
    border: 3px solid var(--color-selective-yellow);
    height: 50px;
    cursor: pointer;
    margin-bottom: 0;
    border-radius: 0;
    margin: 0;
}

.newsletter form button:hover,
.newsletter #mc_embed_signup input[type="submit"]:hover {
    background-color: transparent;
    color: var(--color-selective-yellow);
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .newsletter .container {
        flex-direction: column;
        padding: 30px;
    }
    
    .newsletter form {
        width: 100%;
    }
    
    .phone-group input[type="tel"] {
        padding-left: 50px !important;
    }
    
    .phone-group .iti__selected-dial-code {
        left: 10px;
    }
}

/* FOOTER */

footer {
    padding: 206.5px 0 var(--spacing) 0;
    background-color: var(--color-very-dark-blue);
    color: var(--color-light-blue);
}

footer .container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing);
}

.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer ul {
    display: flex;
    align-items: center;
    gap: var(--spacing);
}

footer p:last-child {
    margin-bottom: 0;
}

.footer-divider {
    width: 100%;
    height: 1px;
    margin-top: 40px;
    margin-bottom: var(--spacing);
    background-color: var(--color-light-blue);
    opacity: .15;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing);
}

.footer-bottom-left,
.footer-bottom-right {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing) / 2);
}

.copyrights {
    font-weight: 600;
}

.law-links a {
    text-decoration: underline;
}

.footer-bottom-right h3 {
    font-family: "Barlow", sans-serif;
    font-size: 17px;
    margin-bottom: 0;
}

.socials svg {
    width: 30px;
    height: 30px;
}

.socials a svg path {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.socials a:hover svg path {
    stroke: var(--color-selective-yellow);
}

footer .footer-links-left {
    display: flex;
    align-items: center;
    gap: var(--spacing);
}

footer .secured {
    display: flex;
    align-items: center;
    gap: var(--spacing);
}

footer .secured .secured-img {
    padding: 5px 10px;
    background-color: var(--color-light-blue);
    border-radius: 4px;
}

footer .secured img {
    height: 30px;
}

/* FAQ */

.faq-item {
    position: relative;
    cursor: pointer;
}

.faq-item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-royal-blue);
    opacity: .1;
}

.faq-q {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-right: 40px;
}

.faq-q:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    background-image: url(../img/chevron/chevron-down.svg);
    transition: transform .3s ease-out;
}
.faq-item.active .faq-q:after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-a {
    display: none;
    font-size: 16px;
    padding-bottom: 14px;
    line-height: 26px;
    color: var(--text-gray);
}

.faq-a p {
    margin: 0 0 10px 0;
}

/* ALL PAGES */

body > section:last-of-type {
    padding-bottom: 206.5px;
}

section.text {
    background-color: var(--color-snow-gray);
    text-align: center;
}

section.text .section-title {
    margin-bottom: 15px;
}

section.text p:last-child {
    margin-bottom: 0;
}

/* WARNING POPUP */

.warning-popup {
    display: none;
    position: fixed;
    bottom: var(--spacing);
    left: var(--spacing);
    width: 400px; 
    background-color: #FFF;
    padding: var(--spacing);
    box-shadow: 0 0 8px rgba(0,0,0,.16);
}

.warning-popup-title {
    color: #cd0000;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: calc(var(--spacing) / 2);
}

.warning-popup-list {
    list-style-type: decimal;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
}

.warning-popup-list li {
    line-height: 1.5;
}

.warning-popup-confirm {
    margin-top: calc(var(--spacing) / 2);
}

.warning-popup-confirm .cta {
    padding: 7.5px 22px;
    font-size: 17px;
    background-color: unset;
    color: var(--color-very-dark-blue);
    border-color: var(--color-very-dark-blue);
    cursor: pointer;
}

.warning-popup-confirm .cta:hover {
    background-color: var(--color-very-dark-blue);
    color: var(--color-light-blue);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    filter: blur(225px);
    z-index: 997;
}

.visitor-popup {
    position: fixed;
    width: 700px;
    text-align: center;
    max-width: 100%;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background-color: #FFF;
    padding: var(--spacing);
    box-shadow: 0 0 8px rgba(0, 0, 0, .16);
    z-index: 99999;
}

.visitor-popup p:last-child {
    margin-bottom: 0;
}
