@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --default-color: #0855c4;
    --default-lighten-color: #0095ff;
    --default-catifsh-color: rgb(0, 0, 0);
    --default-header-color: #003266;
    --default-footer-color: #04386e;
    --btn-text: #fff;
    overflow-x: hidden;
}

*, :after, :before {
    box-sizing: border-box
}

li, ol, ol[class], ul, ul[class] {
    margin: 0;
    padding: 0
}

blockquote, body, dd, dl, figcaption, figure, h1, h2, h3, h4, li, ol[class], p, ul[class] {
    margin: 0
}

body {
    line-height: 1.5;
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed
}

body.-toggle,
html.-toggle {
    overflow: hidden
}

li, ol[class], ul[class] {
    list-style: none
}

a {
    text-decoration: none
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto
}

img {
    display: block;
    max-width: 100%
}

button, input, select, textarea {
    border: none;
    font: inherit
}

[role=button], button {
    cursor: pointer
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important
    }
}

body {
    background: #fff;
    color: rgb(255, 255, 255);
    font-family: "Ubuntu", sans-serif;
    font-size: 16px;
    letter-spacing: .5px;
    line-height: 1.4
}

@media (max-width:768px) {
    body {
        font-size: 14px;
        overflow-x: hidden
    }
}

.container {
    margin-left: auto;
    margin-right: auto;
    max-width:1220px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

.header {
    background: #090f1e;
    padding: 24px 0;
    border-bottom: 1px solid #141b2e;
}

.header-wrap {
    grid-gap: 20px;
    align-items: center;
    display: grid;
    grid-template-columns: max-content 1fr;
}

.header-logo__img {
    height: auto;
    width: 180px;
}

.menu-wrap {
    grid-gap: 20px;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr max-content max-content;
}

.main-nav {
    padding-right: 45px;
    text-align: right;
}

.main-nav__list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 32px;
}

.nav-item {
    font-size: 16px;
    position: relative;
    font-weight: bold;
}

.nav-item__link {
    color: #fff;
}

.main-nav__list li:hover>a {
    color: var(--default-color);

}

.header-lang {
    display: flex;
    align-items: center;
    color: #fff;
}

.btn {
    background-image: linear-gradient(80deg,#31bc69 -8%,#089e4e 93%);
    box-shadow: 0 6px 18px #0ea1514d;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 42px;
    text-transform: uppercase;
	width: fit-content;
}

.btn a {
    color: var(--btn-text);
    display: block;
    padding: 0 42px;
    font-weight: bold;   
}

.btn:hover {
    opacity: .86
}

.menu-mob-btn {
    background: var(--default-color) url(../assets/img/mob-menu-icon.svg) no-repeat 50%;
    background-size: 15px;
    border: 1px solid var(--default-color);
    border-radius: 4px;
    display: none;
    height: 42px;
    justify-self: flex-end;
    width: 42px;
}

.menu-mob-btn.-toggle {
    background: var(--default-color) url(../assets/img/mob-menu-close-icon.svg) no-repeat 50%;
    background-size: 15px
}

.main {
    background-color: #090f1e;
	margin-bottom: -35px;
    padding-bottom: 10px;
}

/*POST*/
.post-entry p:not(:last-child) {
    margin-bottom: 24px;
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    line-height: 1.2;
    margin-bottom: 14px
}

.post-entry h1 {
    font-size: 32px
}

.post-entry h2 {
    font-size: 28px
}

.post-entry h3 {
    font-size: 24px
}

.post-entry h4 {
    font-size: 20px
}


.post-entry table {
    font-size: 14px;
    margin-bottom: 24px;
    width: 100%;
	display: block;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap; 
}

.post-entry table tr:first-child {
    background: var(--default-color) !important
}

.post-entry table tr:first-child td {
    color: #fff;
    font-weight: 700
}

.post-entry table tr:nth-child(odd) {
    background: var(--default-lighten-color)
}

.post-entry table tr td {
    padding: 16px 12px
}

.post-entry .wp-block-image {
    margin-bottom: 24px
}

.post-entry .wp-block-image img {
	border-radius:15px;
    margin: 0 auto;
}

.post-entry img {
    height: auto !important;
}

.post-entry ol {
    counter-reset: num;
    list-style-type: none;
    margin-bottom: 24px;
    margin-left: 32px
}

.post-entry ol li {
    margin: 0 0 16px;
    padding: 0;
    position: relative
}

.post-entry ol li:before {
    background: var(--default-color);
    border-radius: 50%;
    color: #fff;
    content: counter(num);
    counter-increment: num;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    height: 24px;
    left: -32px;
    line-height: 24px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 24px
}

.wp-block-quote{
    margin-bottom:1.2rem;
    background-color: var(--default-color);
    color: #FFFFFF;
    padding:40px;
    padding-left:80px;
    position: relative;
        border-radius: 8px;
}
.wp-block-quote::before{
    position: absolute;
    left:20px;
    top:20px;
    width:40px;
    height:40px;
content: url("data:image/svg+xml,%3Csvg fill='%23FFFFFF' width='40px' height='40px' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z'/%3E%3C/svg%3E");
}

@media(max-width:580px){
    .wp-block-quote{
        padding:24px;
        padding-left:56px;
    }
    .wp-block-quote::before{
        top:16px;
        left:16px;
        width:24px;
        height:24px;
content: url("data:image/svg+xml,%3Csvg fill='%23FFFFFF' width='24px' height='24px' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z'/%3E%3C/svg%3E");
    }
	main {
		padding-top: 35px;
	}
	main>div.container {
		padding-top: 55px;
	}
}

/*AUTHOR*/
.author-block {
    grid-gap: 30px;
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 20px;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, .078);
    display: grid;
    grid-template-columns: max-content 1fr;
    margin-bottom: 32px;
    padding: 32px
}

@media (max-width:768px) {
    .author-block {
        grid-gap: 20px;
        grid-template-columns: 1fr;
        padding: 20px 16px
    }
}

.author-block .author-block__photo img {
    border-radius: 50%;
    height: 168px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 168px
}

.author-block .author-block__top-grid {
    grid-gap: 20px;
    display: grid;
    grid-template-columns: 1fr max-content;
    margin-bottom: 20px
}

@media (max-width:768px) {
    .author-block .author-block__top-grid {
        grid-gap: 20px;
        grid-template-columns: 1fr
    }
}

.author-block .author-block__line {
    color: #828282;
    font-size: 18px
}

.author-block .author-block__name {
    color: #2d2d2c;
    font-size: 24px;
    font-weight: 700
}

.author-block .author-block__socials {
    display: flex;
    gap: 10px
}

.author-block .author-block__socials .author-block__socials__item {
    background: #f2f2f2;
    border-radius: 4px;
    display: inline-block;
    height: 32px;
    overflow: hidden;
    width: 32px
}

.author-block .author-block__socials .author-block__socials__item:hover {
    opacity: .86
}

.author-block .author-block__socials .author-block__socials__item i {
    display: inline-block;
    height: 32px;
    width: 32px
}

.author-block .author-block__socials .author-block__socials__item i.icon-fb {
    background: url(../assets/img/icon-fb.svg) no-repeat 50%;
    background-size: 22px
}

.author-block .author-block__socials .author-block__socials__item i.icon-tw {
    background: url(../assets/img/icon-tw.svg) no-repeat 50%;
    background-size: 22px
}

.author-block .author-block__socials .author-block__socials__item i.icon-email {
    background: url(../assets/img/icon-email.svg) no-repeat 50%;
    background-size: 22px
}

.author-block .author-block__text {
    color: #2d2d2c;
    font-size: 18px
}

.author-block .author-block__text p:not(:last-child) {
    margin-bottom: 20px
}

/*FAQ*/
.faq-block {
    margin-bottom: 32px;
    margin-top: 32px
}

.faq-block .faq-block--title {
    color: rgb(255, 255, 255);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px
}

.faq-block .faq-block--subtitle {
    color: #000;
    font-size: 16px;
    margin-bottom: 16px;
    margin-top: -4px
}

.faq-block .faq-block--items .faq-block--items__item:not(:last-child) {
    margin-bottom: 16px
}

.faq-block .faq-block--items .faq-block--items__item .faq-block--items__item--header {
    background: linear-gradient(86.37deg,#d062ff 2.96%,#7bb0ff 99.68%),linear-gradient(90deg,#ed6ea0 0%,#ec8c69 100%);
    border: 1px solid var(--default-color);
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    padding: 20px;
    position: relative
}

.faq-block .faq-block--items .faq-block--items__item .title-faq {
    max-width: 80%;
    width: 80%
}

.faq-block .faq-block--items .faq-block--items__item .title-faq:after {
    background: var(--default-color) url(../assets/img/icon-arrow-b.svg) no-repeat 50%;
    background-size: 14px;
    border-radius: 4px;
    content: "";
    height: 42px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    width: 42px
}

.faq-block .faq-block--items .faq-block--items__item .faq-block--items__item--content {
    display: none
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--header {
    background: var(--default-color);
    color: #fff
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--header:after {
    background: var(--default-color) url(../assets/img/icon-arrow-b.svg) no-repeat 50%;
    background-size: 14px;
    transform: translateY(-50%) rotate(-90deg)
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content {
    display: block;
    padding: 20px
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content p:not(:last-child) {
    margin-bottom: 8px
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content a {
    color: #0855cc
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content a:hover {
    color: #0b4e35
}

/*WP STYLE*/
.wp-block-media-text .wp-block-media-text__media {
    float: right;
    max-width: 50%;
    margin-left: 20px;
    margin-bottom: 20px;
}

.alignright{
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .alignright {
        max-width: 100%;
        margin: 16px auto 24px auto;
        float: none;
        order: 2;
    }
}

.alignleft{
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}
/*footer*/
footer {
    background: #090f1e;
    color: #fff;
	padding: 0 20px;
}
.logocontainer {
	display: flex;
    align-items: center;
    margin-bottom: 45px;
}
.logo-container {
	display: flex;
    width: 48px;
    height: 19px;
}
.logocontainer-line {
	margin-left: 20px;
    margin-right: 18px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .2) 9.92%, rgba(0, 0, 0, 0) 100%);
}

.footermain {
	display: flex;
    align-items: flex-start;
    width: 100%;
}
@media (max-width: 1200px) {
    .footermain {
        flex-wrap: wrap;
    }
}
.footersupport {
	width: 100px;
}
.footersupport strong {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.footersupport small {
	color: #8692aca6;
    font-size: 10px;
}

.footer-clmn {
	margin-left: 80px;
}
@media (max-width: 1299px) {
    .footer-clmn {
        margin-left: 35px;
    }
}
.footer_clmn-left {
	max-width: 320px;
    width: 100%;
}

.footer-clmn strong {
	font-weight: 600;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: #5a647a;
    margin-bottom: 40px;
    display: block;
}

.footer-link ul{
	margin-top: 10px;
}

.footer-link ul li {
	margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-link ul li small {
	color: #8692aca6;
    font-size: 13px;
    font-weight: 400;
    display: block;
    max-width: 207px;
    width: 100%;
}

.footer-link ul li a {
	color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 13px;
    font-weight: 300;
    position: relative;
    transition: .3s;
}

.footer-app {
	display: flex;
    align-items: flex-start;
    margin-left: auto;
}
.footer-app-row {
	position: relative;
}
.footer_app {
	align-items: center;
    background-color: transparent;
    border: 1px solid #444;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    padding: 4px 15px;
    transition: .3s;
}

.footer_app_for_apple {
	width: 158px;
}
.footer_app_fl {
	display: flex;
    align-items: center;
}

.icon_apple svg {
    fill: #fff;
    width: 24px;
}

.footer_app_wrap {
    margin-left: 10px;
}

.footer_app_wrap small {
    color: hsla(0, 0%, 100%, .5);
    font-size: 10px;
    display: block;
}

.footer_app_wrap span {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    display: block;
}

.footer_app_arrow {
    align-items: center;
    background-color: #464646;
    border-radius: 100%;
    display: flex;
    height: 14px;
    justify-content: center;
    width: 14px;
}

.footer_app_arrow svg {
    fill: #fff;
    max-width: 6px;
    transform: rotate(-90deg);
}

.footer_app_for_android {
    margin-top: 8px;
}
.icon_android svg, .icon_windows svg {
    width: 28px;
}

.footer_for_windows {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
    margin-left: 8px;
    padding: 10px;
    justify-content: flex-start;
}

.footer_app_cnt {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.footer_item {
    margin-top: 50px;
}

.separator {
    background: linear-gradient(90deg, hsla(0, 0%, 100%, .2) 9.92%, transparent);
    height: 1px;
    width: 100%;
}

.footer_content {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    width: 100%;
}
.footer_socials {
    display: flex;
    align-items: center;
}

.footer_socials a {
    border-radius: 10px;
    height: 35px;
    justify-content: center;
    margin-left: 10px;
    transition: .3sease-out;
    width: 35px;
    display: flex;
    align-items: center;
}

.footer_socials a svg {
    max-width: 65%;
}

.telegram_link {
    background: linear-gradient(240.2deg, #0fb1d6, #08c 61.34%);
}

.x_link {
    background: linear-gradient(135deg, #ffffff, #ffffff);
}

.facebook_link {
    background: linear-gradient(135deg, #82a4e9, #4267b2);
}

.instagram_link {
    background: linear-gradient(214.99deg, #7e2bf4 7.65%, #ed146e 51.93%, #ffc90c 95.29%);
}

.footer_brands {
    display: flex;
    align-items: center;
}

.footer_brand {
    margin: 0 25px;
}

@media (max-width: 1200px) {
    .footer_brand {
        margin: 0 10px;
    }
}

.footer_brands svg {
    height: 25px;
}

.footer-lang_fl {
    display: flex;
    align-items: center;
}

.head-lang {
    position: relative;
    display: flex
;
    z-index: 99;
}

.head-lang_block {
    cursor: pointer;
    align-items: center;
    background-color: rgba(78, 93, 134, .3);
    border-radius: 6px;
    display: flex
;
    height: 24px;
    justify-content: space-between;
    padding: 0 8px;
    transition: .3s;
    width: 64px;
    position: relative;
}

footer .head-lang_block {
    height: 35px;
    padding: 0 8px;
}

footer .header-button {
    width: 35px;
    height: 35px;
    background: linear-gradient(92.58deg, #1e283f 0%, rgba(20, 27, 46, .6) 99.71%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin: 0 10px;
}

.partners {
    display: flex
;
    width: 100%;
    align-items: center;
    border-bottom: 1px solid hsla(0, 0%, 100%, .2);
    border-top: 1px solid hsla(0, 0%, 100%, .2);
    justify-content: space-between;
    padding: 30px 0;
    gap: 13px;
}

@media (max-width: 1200px) {
    .footer__partners {
        flex-wrap: wrap;
        justify-content: center;
        grid-gap: 5px;
    }
}

.partners svg {
    height: 22px;
    transition: 0.3s;
}

.partners svg .svg__color {
    opacity: 0;
    transition: 0.3s;
}

.partners svg:hover .svg__color {
    opacity: 1;
}

.partners svg:hover .svg__mono {
    opacity: 0;
}

.partners svg .svg__mono {
    transition: 0.3s;
}

.footer_descr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.footer_descr p {
    color: #34405e;
    font-size: 10px;
    font-weight: 700;
    text-align: left;
}

.footer_plus {
    display: flex
;
    align-items: center;
}

.eighteen {
    color: #77829b66;
    font-size: 16px;
    font-weight: 800;
    line-height: 16px;
}

/*footer mobile styles*/

@media (max-width: 970px) {
    .footer_content {
        flex-wrap: wrap;
        position: relative;
		justify-content: center;
    }
}

@media (max-width: 570px) {
    .footer_brands {
        flex-wrap: wrap;
        grid-gap: 10px;
		justify-content: center;
        width: 100%;
        margin-top: 35px;
        margin-bottom: 25px;
    }
	.footer_brand {
		margin: 0 5px;
	}
	.footer_brand svg {
		height: 18px;
	}
	    .partners {
        flex-wrap: wrap;
        justify-content: center;
        grid-gap: 15px;
    }
	.footersupport {
    width: 13%;
}
	.footer-clmn {
		display: none;
	}
}

/*fixed footer*/
#fixed_footer {
	display: none;
}

@media (max-width: 910px) {
    #fixed_footer {
        align-items: center;
        background-color: #090f1e;
        border-top: 1px solid #1f2841;
        bottom: -1px;
        display: flex;
        left: 0;
        padding: 8px 0;
        position: fixed;
        width: 100%;
        z-index: 90;
    }
	    .fixed_footer_row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
}
	    .fixed_footer_link {
        display: flex;
        justify-content: center;
        width: 100%;
	}
		.fixed_footer_wrap {
        align-items: center;
        display: flex;
        flex-direction: column;
    }	
	    .fixed_footer_row path, .fixed_footer_row svg {
        fill: #fff;
    }
	    .fixed_footer_row svg {
        max-height: 20px;
    }
	    .fixed_footer_link_title {
        font-weight: 500;
        color: #ffffff;
        font-size: 11px;
        text-align: center;
        margin-top: 5px;
    }
	.fixed_footer_nolink {
        align-items: center;
        background-color: #0854c3;
        border-radius: 290486px;
        box-shadow: 0 1px 10px 0 #083f92;
        display: flex;
        height: 43px;
        justify-content: center;
        width: 200px;
	}
		.fixed_footer_nolink svg {
        height: 28px;
    }
	
}

/*MOBILE*/
@media (max-width:768px) {
    .menu-mob-btn {
        display: block
    }

    .header-logo__img {
        max-height: 42px;
        max-width: 180px;
        width: auto;
    }

    .menu-wrap {
        grid-gap: 16px;
        background: #000;
        display: none;
        grid-template-columns: 86px 1fr;
        height: calc(100% - 82px);
        left: 0;
        padding: 20px;
        place-content: flex-start;
        position: fixed;
        top: 82px;
        width: 100%;
    }

    .menu-wrap.-toggle {
        display: grid
    }

    .main-nav {
        grid-column: 1 / 3;
        grid-row: 1;
        margin-bottom: 64px;
        padding: 0;
        text-align: left;
        padding-right: 44px;
    }

    .main-nav__list {
        display: block;
    }

    .main-nav__list li:not(:last-child) {
        border-bottom: 1px solid hsla(0, 0%, 100%, .1);
        display: block;
        margin-bottom: 20px;
        padding-bottom: 20px
    }

    .header .btn {
        grid-row: 2;
        text-align: center;
    }

    .header .btn a {
        padding: 0 10px;
    }
}

/* banner */

        .banner-container {
            display: flex;
            gap: 10px;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .banner-main {
            width: 60%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 20px;
        }

        .banner-side {
            display: flex;
            flex-direction: column;
            gap: 10px;
            width: 40%;
        }

        .banner-item {
            width: 100%;
            height: 320px;
            background-size: cover;
            background-position: center;
            border-radius: 8px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: white;
            text-align: center;
            padding: 20px;
        }

        .banner-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 8px;
        }

        .banner-content {
            position: relative;
            z-index: 1;
			text-align: left;
   			width: -webkit-fill-available;
        }

        .banner-button {
			margin-top: 10px;
			padding: 10px 20px;
			background: #fff;
			color: #090f1e;
			border: none;
			border-radius: 12px;
			cursor: pointer;
			font-size: 16px;
			text-decoration: none;
			font-weight: 600;
			box-shadow: 0 10px 35px #0003;
        }

        .side-item {
            width: 100%;
            height: 50%;
        }

.banner-header {
			color: #fff;
			box-sizing: inherit;
			font-family: -apple-system,SF Pro Display,-apple-system,SF Pro Text,sans-serif;
			font-weight: 800;
			letter-spacing: .33px;
			text-shadow: 0 3px 5px rgba(9,15,30,.2);
			max-width: 100%;
			width: 100%;
			font-size: 30px;
			line-height: 106%;
			white-space: pre-line;
		}

        @media (max-width: 768px) {
            .banner-container {
                display: flex;
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }
            .banner-main,
            .banner-side {
                width: 100%;
            }
            .banner-side {
                flex-direction: row;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
            }
            .banner-item, .side-item {
                width: 100%;
                flex: 0 0 100%;
                scroll-snap-align: center;
            }
        }

/*grid*/

        .grid-container {
            display: flex;
            gap: 15px;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
			justify-content: space-between;
			margin: 15px 0 15px 0;
        }

        .grid-item {
            display: flex;
            align-items: center;
            background-image: linear-gradient(110deg,#1e283f,rgba(20,27,46,.6) 100%);
            padding: 15px;
            border-radius: 8px;
            text-decoration: none;
            color: #fff;
            width: calc(25% - 15px);
            min-width: 200px;
			justify-content: space-between;
        }
		
		.grid-item:hover {
			scale: 1.1;
}

        .grid-icon {
            width: 50px;
            height: 50px;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
			font-size: 35px;
        }

        .grid-text {
            display: flex;
            flex-direction: column;
        }

        .grid-title {
            font-size: 18px;
            font-weight: bold;
        }

        .grid-subtitle {
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .grid-container {
                flex-direction: column;
                align-items: center;
            }
            .grid-item {
                width: 100%;
            }
        }

/*upper header*/
#upper-header {
    display: flex;
    justify-content: space-between;
    padding: 15px 15px;
    position: relative;
    background-color: #090f1f;
}
.header-left, .header-right {
	display: flex;
    align-items: center;
}
.upheader-left {
	display: flex;
    align-items: center;
    gap: 8px;
}
.upheader-left a {
	align-items: center;
    background-color: rgba(78, 93, 134, .3);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    padding: 4px;
    text-decoration: none;
    transition: .2s;
    width: 24px;
    height: 24px;
}
.upheader-left a svg {
	fill: #fff;
    height: 15px;
    width: 15px;
}
.upheader-money {
	display: flex;
    align-items: center;
    background-image: linear-gradient(285.39deg, #ffb800 -4.36%, #fff173 115.87%);
    border-radius: 50px;
    height: 24px;
    justify-content: space-between;
    padding: 0 8px;
    width: 100%;
}
.upheader-money img {
	max-height: 42px;
    margin-left: -13px;
}
.upheader-money span {
	color: #090f1e;
    font-size: 12px;
    font-weight: 600;
}
.upheader-money svg {
	fill: #795805;
    margin-left: 8px;
    width: 8px;
}
.upheader-promo {
	display: flex;
    align-items: center;
    background-color: rgba(78, 93, 134, .3);
    border-radius: 6px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    height: 25px;
    padding-right: 35px;
    position: relative;
    transition: .2s;
    width: 141px;
}
.upheader-promo-icon {
	    align-items: center;
    background: linear-gradient(86.37deg, #d062ff 2.96%, #7bb0ff 99.68%), linear-gradient(90deg, #ed6ea0, #ec8c69);
    border-radius: 100%;
    box-shadow: 0 5px 15px rgba(201, 85, 255, .4);
    display: flex;
    justify-content: center;
    padding: 6px;
    transform: translateX(-10px);
    width: 28px;
    height: 28px;
}
.upheader-promo-icon svg {
	width: 18px;
}
.upheader-promo img{
	max-height: 56px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(30%) rotate(-13deg);
}
.upheader-app {
    display: flex;
    align-items: center;
}
.upheader-app:before {
    background-color: #fff;
    content: "";
    height: 15px;
    margin: 0 14px;
    opacity: .2;
    width: 1px;
}
.upheader-windows {
    display: flex
;
    align-items: center;
    font-size: 10px;
}
.upheader-windows-block {
    display: inline-block;
    line-height: 14px;
    margin-right: 10px;
}
.upheader-windows-block span {
    display: block;
    font-size: 10px;
    font-weight: 600;
}
.upheader-windows-block small {
    display: block;
    color: hsla(0, 0%, 100%, .5);
    font-weight: 600;
}
.upheader-windows a {
	width: 24px;
}
.upheader-windows:after {
    background-color: #fff;
    content: "";
    height: 15px;
    margin: 0 10px;
    opacity: .2;
    width: 1px;
}
.upheader-app-android {
    align-items: center;
    background-color: rgba(78, 93, 134, .3);
    border-radius: 6px;
    display: flex;
    height: 24px;
    justify-content: center;
    padding: 0 8px;
    position: relative;
}
.upheader-app-android a {
    display: flex;
    z-index: 99;
}
.upheader-app-android a svg{
	width: 13px;
}
.upheader-app-android a + a {
    margin-left: 6px;
}
.upheader-app:after {
    background-color: #fff;
    content: "";
    height: 15px;
    margin: 0 10px;
    opacity: .2;
    width: 1px;
}
.upheader-lang {
	position: relative;
    display: flex;
    z-index: 99;
}
.upheader-lang-block {
	cursor: pointer;
    align-items: center;
    background-color: rgba(78, 93, 134, .3);
    border-radius: 6px;
    display: flex;
    height: 24px;
    justify-content: space-between;
    padding: 0 8px;
    transition: .3s;
    width: 64px;
    position: relative;
}
.upheader-lang-block span {
	font-size: 12px;
    text-transform: uppercase;
}
.upheader-lang-block img {
	max-width: 16px;
    border-radius: 50%;
    height: 16px;
    object-fit: cover;
}
.upheader-lang-block:after {
	content: "";
    position: absolute;
    top: 9px;
    right: 31px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    width: 3px;
    height: 3px;
    transform: rotate(135deg);
    transition: 0.3s;
    opacity: 0.8;
}
@media (max-width: 768px) {
	.upheader-money, .header-left {
		display: none;
}
	.upheader-promo {
		width: 30%;
	}
	#upper-header {
		justify-content: space-around;
		top: 100px;
	}
	header.header {
	position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
	height: 100px;
	}
}
/*hero*/
.hero-section { padding: 80px 0; color: #fff; }
.hero-left h1 { font-size: 2.5rem; margin-bottom: .5em; }
.hero-code { display:flex; margin:1em 0; }
.hero-code input { background: rgba(255,255,255,0.2); border:none; padding:.5em; color:#fff; }
.copy-btn { margin-left:.5em; cursor:pointer; }
.hero-button { display:inline-block; padding:.75em 1.5em; background:#007bff; color:#fff; text-decoration:none; border-radius:4px; }
.hero-verified { font-size:.8em; margin-bottom:.5em; text-transform: uppercase; }


.hero-section {
  position: relative;   
  background: none !important;
  z-index: 0;
  display: flow-root;       
}


.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: url('http://localhost/1winch/wp-content/uploads/2025/05/bg.webp') center/cover no-repeat;
  z-index: -1;          
  pointer-events: none; 
}

.hero-left {
    width: 80%;
}

.hero-content {
    display: grid;
    grid-template-columns: 400px 2fr;
    margin: 40px 0;
    gap: 40px;
    align-items: center;
    grid-template-columns: 2fr 400px;
}

.hero-right {
  background-color: #003E77;
  background-image:
    radial-gradient(
      circle at center,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0) 80%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 123, 255, 0.8) 0%,
      rgba(0, 123, 255, 0) 70%
    ),
    radial-gradient(
      circle at 20% 30%,
      rgba(117, 0, 255, 0.6) 0%,
      rgba(117, 0, 255, 0) 60%
    );

  padding: 32px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}


/* Verified pill */
.hero-verified {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}


.hero-bonus {
  font-size: 2rem;       
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 24px;
}


.hero-code {
  display: flex;
  width: 100%;
  max-width: 280px;
  margin-bottom: 24px;
}

.hero-code input {
  flex: 1;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  border-right: none;
  border-radius: 4px 0 0 4px;
  padding: 0.6em;
  color: #fff;
  font-size: 1rem;
}

.hero-code .copy-btn {
  background:#fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-left: none;
  border-radius: 0 4px 4px 0;
  padding: 0 1em;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background .2s;
}

.hero-code .copy-btn:hover {
  background: #fff8e8;
  color: #000;
}


.hero-arrow {
  width: 64px;
  height: 64px;
  background: url('http://localhost/1winch/wp-content/uploads/2025/05/chevron-down.png') no-repeat center;
  margin-bottom: 24px;
  animation: arrow-bounce 2s ease-in-out infinite;
}

@keyframes arrow-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}


.hero-button {
  display: block;
  width: 100%;
  max-width: 280px;
  padding: 0.75em;
  background: #007BFF;
  border-radius: 8px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: background .2s;
}

.hero-button:hover {
  background: #fff8e8;
  color: #000;
}


@media (max-width: 768px) {
  .hero-content {
    display: flex;           
    flex-direction: column;  
    align-items: stretch;
    gap: 24px;               
  }

  
  .hero-right {
    order: -1;               
    width: 100%;
    margin-bottom: 0;        
  }
  .hero-left {
    order: 0;
    width: 100%;
  }

  
  .hero-left h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75em;
  }
  .hero-left p {
    font-size: 1rem;
    line-height: 1.5;
  }


  .hero-code,
  .hero-button {
    max-width: 100%;
  }
  div > section > div.container {
    padding-left: 5px;
    padding-right: 5px;
    
  }
  section.hero-section {
    padding-top: 5px;
  }
}

/*howto*/
/* ============ HowTo Section ============ */
.howto {
  padding: 60px 0;
  color: #fff;
}

.howto h2 {
  font-size: 2rem;
  margin-bottom: .75em;
}

.howto p {
  max-width: 700px;
  margin-bottom: 1.5em;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
}

/* Контейнер шагов — колоночный флекс */
.howto__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px; /* расстояние между шагом и стрелкой/следующим шагом */
}

/* Сама карточка шага */
.step {
  width: 100%;
}

.step__body {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  padding: 16px 24px;
  border-radius: 8px;
}

/* Номер шага в кружочке */
.step__body span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  background: #00A3FF;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

/* Текст шага */
.step__text {
  font-size: 1rem;
  line-height: 1.4;
  color: #fff;
}

/* Блок со стрелками между шагами */
.howto__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* SVG-стрелки */
.howto__arrow svg {
  width: 24px;       /* подберите под свои иконки */
  height: auto;
  fill: rgba(255,255,255,0.4);
  margin: 4px 0;
  animation: arrow-bounce 1.5s ease-in-out infinite;
}

/* анимация “пульсации/подпрыгивания” */
@keyframes arrow-bounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

/* ========== Адаптив ========== */
@media (max-width: 768px) {
  .howto__block {
    gap: 16px;
  }
  .step__body {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .step__body span {
    margin-bottom: 8px;
  }
}
