@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');

@font-face {
    font-family: "Brush Script MT";
    src: url("../font/brushsci.ttf");
  }

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: "Onest", sans-serif;
    color: #938fa1;
    font-size: 18px;
    line-height: 30px;
}

body.page{
    margin: 0;
}

#page{
    overflow: hidden;
}

#primary{
    overflow: hidden;
}

.container{
    width: 1292px;
    margin: 0 auto;
}

h1{
    font-size: 54px;
    line-height: 66px;
    font-weight: 700;
    color: #21082F;
}

h2{
    font-size: 42px;
    line-height: 120%;
    font-weight: 700;
    color: #27252c;
}

h3{
    font-weight: 700;
    font-size: 28px;
    line-height: 129%;
    color: #27252c;
}

h4{
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
}

a{
    text-decoration: none;
}
/*
a:visited {
    color: #ffffff;
}
*/

.btn-pink:visited{
    color: #ffffff;
}
p{
    margin: 0;
}

/* HEADER */

header{
    padding: 16px 0;
    width: 100%;
    top: 0;
    z-index: 55555;
    transition: top 0.3s;
}

header.scrolled{
    background-color: #ffffff;
    position: fixed;
}

header .wrapper{
    display: flex;
    align-items: center;
}

header .site-branding{
    flex-basis: 7%;
}

header .site-branding .custom-logo-link img{
    vertical-align: middle;
    max-width: 70px;
}

header .main-navigation{
    flex-basis: 73%;
}

header .main-navigation ul{
    justify-content: flex-end;
    padding-right: 40px;
    column-gap: 40px;
}

header .main-navigation a{
    font-size: 18px;
    line-height: 16px;
    color: #27252c;
    transition: all 0.3s linear;
}

header .main-navigation a:hover{
    color: #b12ccd;
}

header .contact-button{
    flex-basis: 20%;
    text-align: right;
}

header .contact-button a{
    /*background-color: #7F25A4;*/
    color: #27252c;
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    transition: all 0.3s linear;
}

header .contact-button a:hover{
   /* background-color: #b12ccd;*/
   color: #CB4CE9;
}

header #primary-menu{
    max-width: fit-content;
    /*padding: 18px 24px;
    background-color: #f7f7f8;
    border-radius: 200px;*/
    column-gap: 40px;
    margin: 0 50px 0 auto;
}

header .menu .inactive{
    position: relative;
    width: fit-content;
}

header .menu .inactive a{
    color: #938fa1;
    pointer-events: none;
    cursor: default;
}

header .menu .inactive:after{
    content: 'Скоро';
    display: block;
    background: linear-gradient(
    90deg,
    rgba(228, 118, 255, 1) 0%,
    rgba(243, 78, 204, 1) 100%
  );
    border-radius: 40px;
    color: #ffffff;
    font-size: 10px;
    line-height: 18px;
    font-weight: 500;
    transform-origin: 0 0;
    transform: rotate(7.776deg) scale(1, 1);
    text-align: center;
    position: absolute;
    padding: 0 5px;
    top: -18px;
    right: -20px;
}

header .toggle-menu{
    display: none;
}

header .btn-pink{
    box-shadow: none;
}

header .btn-pink:hover{
    box-shadow: none;
}

/* FRONT PAGE */

.banner{
    /*height: 85vh;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;*/
    padding: 90px 0 130px;
}

.banner.hero-guide{
    background-image: none;
}

.banner .wrapper{
    display: flex;
    align-items: center;
}

.banner .left-column{
    max-width: 50%;
    flex-basis: 50%;
}

.banner .right-column{
    flex-basis: 50%;
}

.banner p.subtitle{
    margin-bottom: 0px;
}

.banner .subtitle span{
    position: relative;
    z-index: 55;
}

.banner .left-column h1{
    margin: 32px 0;
}

.banner h1 .accent-bg{
    background-color: #f2d2fc;
    border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
}

.banner h1 p{
    margin: 0;
}

.banner .buttons-wrapper{
    justify-content: flex-start;
    margin-top: 24px;
}

.banner .buttons-wrapper .mail{
    display: flex;
    align-items: center;
}

.banner .buttons-wrapper .mail svg{
    margin-left: 20px;
}

.banner .buttons-wrapper .btn-pink{
    padding: 18px 22px 18px 24px;
}

.banner .buttons-wrapper .btn-pink:hover{
    padding: 18px 16px 18px 24px;
}

.banner .contact-button{
    margin-top: 32px;
}

.banner .contact-button a{
    color: #27252C;
    display: flex;
    align-items: center;
    column-gap: 7px;
    transition: 0.3s all linear;
}

.banner .contact-button a:hover{
    color: #CB4CE9;
}

.accent-color{
    color: #CB4CE9;
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(2deg);
    }
}

img.emoji {
    animation: wiggle 0.9s infinite alternate;
}

.banner .top-row{
    background-image: url(../img/banner-bg.png);
    background-size: cover;
    border: 1px solid #F2D2FC;
    border-radius: 22px;
    position: relative;
    padding: 86px 30px 70px;
}

.banner .top-row .icons{
    display: flex;
    column-gap: 12px;
    position: absolute;
    top: -31px;
    left: 30px;
}

.banner .top-row .review{
    position: absolute;
    transition: all linear 0.3s;
    cursor: pointer;
}

.banner .top-row .review:hover{
    transform: rotate(1deg);
    transform-origin: right bottom;
}

.banner .top-row .review.first{
    right: -30px;
    top: -31px;
}

.banner .top-row .review.second{
    left: -20px;
    bottom: 66px;
}

.banner .top-row .review.third{
    left: 30%;
    bottom: -46px;
}

.banner .social-media{
    margin-top: 35px;
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.banner .social-media a{
    background-color: #27252c;
    width: 52px;
    height: 52px;
    display: inline-flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transition: all linear 0.3s;
}

.banner .social-media a:hover{
    transform: scale(1.1)!important;
    transition: all linear 0.3s!important;
}

.banner .right-column .icon{
    width: 60px;
    height: 64px;
    display: inline-flex;
    background: var(--white, #ffffff);
    border-radius: 10px;
    border-style: solid;
    border-color: var(--violet-eggplant-200, #f2d2fc);
    border-width: 1px;
    padding: 10px;
    box-shadow: 0px 12px 36px 0px rgba(187, 114, 168, 0.18);
    align-items: center;
    justify-content: center;
}

.banner .benefits{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 55px;
    row-gap: 84px;
    max-width: 554px;
    margin: 0 auto;
}

.banner .benefits .wrap{
    
}

.banner .benefits span{
     background: var(--white, #ffffff);
    border-radius: 40px;
    border-style: solid;
    border-color: var(--violet-eggplant-400, #dd7ef4);
    border-width: 1px;
    box-shadow: 0px 8px 10.6px 0px rgba(183, 86, 175, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 147px;
    height: 36px;
    color: var(--violet-eggplant-950, #44074b);
    font-size: 12px;
    line-height: 24px;
    font-weight: 500;
    transition: all linear 0.3s;
    cursor: pointer;
    position: relative;
}

.banner .benefits span:hover{
    transform: rotate(1deg);
    transform-origin: right bottom;
}

.banner .benefits span:after{
    content: '';
    display: block;
    width: 8px;
    height: 81.5px;
    background-image: url('../img/arrow-bottom.svg');
    background-size: cover;
    position: absolute;
    z-index: 555;
    bottom: -81.5px;
    pointer-events: none;
}

.banner .benefits span:before{
    content: '';
    display: block;
    width: 55px;
    height: 8px;
    background-image: url('../img/arrow-right-dots.svg');
    background-size: cover;
    position: absolute;
    z-index: 555;
    right: -55px;
}

.banner .benefits span:first-child:after{
    
}

.banner .benefits span:nth-child(3):before, .banner .benefits span:nth-child(6):before, 
.banner .benefits span:nth-child(8):before, .banner .benefits span:nth-child(8):after{
    display: none;
}

.banner .benefits span:nth-child(3):after, .banner .benefits span:nth-child(6):after{
    transform: rotate(180deg);
}

.banner .benefits span:nth-child(4):after{
    background-image: url('../img/fourth-arrow.svg');
    bottom: 16px;
    right: -55px;
    width: 56px;
    height: 124px;
}

.banner .benefits span:nth-child(5):before{
    background-image: url('../img/fifth-arrow.svg');
    width: 28px;
    height: 119px;
    right: -28px;
    bottom: 14px;
}

.banner .benefits span:nth-child(7):after{
    background-image: url('../img/seven-arrow.svg');
    width: 28px;
    height: 124px;
    left: -33px;
    bottom: 14px;
}

.banner .benefits span:nth-child(7){
    grid-column-start: 2;
    grid-column-end: 3;
    background: var(--violet-eggplant-400, #dd7ef4);
    border-color: var(--violet-eggplant-600, #b12ccd);
    color: #ffffff;
}

.banner .benefits span:nth-child(8){
    grid-column-start: 3;
    grid-column-end: 4;
}

.banner .benefits span:nth-child(3){
    background: #34cc84;
    border-color: var(--system-colors-green-400, #11845b);
    color: #ffffff;
}

.banner .benefits span img.emoji{
    margin-right: 5px!important;
}

.banner .review{
    background: var(--white, #ffffff);
    border-radius: 10px;
    border-style: solid;
    border-color: var(--scarpa-flow-300, #b9b7c2);
    border-width: 1px;
    padding: 10px;
    color: var(--scarpa-flow-500, #767186);
    font-size: 11px;
    line-height: 15px;
    font-weight: 400;
    width: 170px;
    height: 107px;
}

.banner .review .photo-name{
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    column-gap: 5px;
}

.banner .review img{
    width: 19px;
    height: 19px;
}

.responsive-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.responsive-wrapper .top-row {
  transform-origin: center center;
  transition: transform 0.3s ease;
  width: 650px;
}

@media (max-width: 1200px) {
  .responsive-wrapper .top-row {
    transform: scale(0.9);
  }
}

@media (max-width: 992px) {
  .responsive-wrapper .top-row {
    transform: scale(0.75);
  }
}

@media (max-width: 768px) {
  .responsive-wrapper .top-row {
    transform: scale(0.6);
  }
}

@media (max-width: 480px) {
  .responsive-wrapper .top-row {
    transform: scale(0.5);
  }
}


.useful-block{
    padding: 90px 0;
    background: linear-gradient(180deg, #fff 0%, #f2f5fa 100%);
}

.useful-block h2{
    text-align: center;
}

.useful-block p.subtitle{
    margin: 32px auto 56px;
    max-width: 564px;
    text-align: center;
}

.useful-block .wrapper{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 48px;
}

.useful-block .wrapper .item:first-child{
    grid-column-start: 1;
    grid-column-end: 4;
}

.useful-block .wrapper .item:nth-child(2){
    grid-column-start: 4;
    grid-column-end: 7;
}

.useful-block .wrapper .item:nth-child(3){
    grid-column-start: 1;
    grid-column-end: 3;
}

.useful-block .wrapper .item:nth-child(4){
    grid-column-start: 3;
    grid-column-end: 5;
}

.useful-block .wrapper .item:nth-child(5){
    grid-column-start: 5;
    grid-column-end: 7;
}

.useful-block .wrapper .item{
    background-color: #ffffff;
    border-radius: 18px;
    border: 1px solid #dadada;
    transition: all 0.3s linear;
    overflow: hidden;
    cursor: pointer;
}

.useful-block h3{
    font-size: 28px;
    transition: all 0.3s linear;
}

.useful-block .item:hover h3{
    color: #9C23B1;
}

.useful-block .wrapper .item:hover{
    box-shadow: 0 8px 17px 0 rgba(21, 33, 69, 0.11);
}

.useful-block .image-block{
    max-height: 329px;
    overflow: hidden;
    position: relative;
}

.useful-block .image-block::before {
  content: "";
  position: absolute;
  inset: 0;
    background: linear-gradient(153deg, #cd4fed0a 0%, #af3793c4 100%);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.useful-block .item:hover .image-block::before{
    opacity: .6;
}

.useful-block .item:nth-child(3) .image-block, .useful-block .item:nth-child(4) .image-block, .useful-block .item:nth-child(5) .image-block{
    max-height: 228px;
}

.useful-block .item:hover .image-block{
    background: #f7f7f8, linear-gradient(153deg, rgba(175, 55, 147, 0.2) 0%, rgba(205, 79, 237, 0.2) 100%);
    mix-blend-mode: multiply;   
}

.useful-block .image-block span.note{
    border-radius: 40px;
    padding: 6px 22px;
    width: 221px;
    height: 36px;
    background-color: #ffffff;
    position: absolute;
    z-index: 444;
    right: 20px;
    bottom: 30px;
    font-weight: 400;
    font-size: 14px;
    line-height: 171%;
    color: #44074B;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    transition: all 
linear 0.3s;
}

.useful-block .item:hover .image-block span.note{
    box-shadow: 0 20px 36px 0 rgba(21, 33, 69, 0.16);
    transform: rotate(2deg);
    transform-origin: right bottom;
    color: #B12CCD;
}

.useful-block .image-block span.note svg{
    transition: all 
linear 0.3s;
}

.useful-block .item:hover .image-block span.note svg{
    box-shadow: 0 6px 5px 0 rgba(229, 114, 114, 0.36);
}

.useful-block .image-block span.free-note, .useful-block .image-block span.soon-note{
    background-color: #05C168;
    border-radius: 40px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    line-height: 112%;
    color: #fff;
    width: 84px;
    height: 46px;
    transition: all 0.3s linear;
    position: absolute;
    z-index: 444;
    right: 20px;
    top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.useful-block .item:hover .image-block span.free-note{
    box-shadow: 0 20px 36px 0 rgba(21, 33, 69, 0.16);
     transform: rotate(2deg);
    transform-origin: right bottom;
}

.useful-block .image-block span.soon-note{
    background-color: #938FA1;
    display: none;
}

.useful-block .image-block span.soon-note.active{
    display: inline-flex;
}


.useful-block .item .text-block{
    padding: 48px 42px;
    border-top: 1px solid #dadada;
}

.useful-block .item .info-text{
    margin: 20px 0;
    color: #938FA1;
}

.useful-block .item span.link{
    color: #27252c;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    column-gap: 3px;
    transition: all 0.3s linear;
}



.useful-block .item a span.link:after{
    content: '';
    display: inline-block;
    background-image: url('../img/chevron-right.svg');
    width: 16px;
    height: 16px;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 2px;
    transition: all 0.3s linear;
}

.useful-block .item:hover span.link{
    color: #CB4CE9;
}

.useful-block .item:hover span.link:after{
    background-image: url('../img/arrow-accent.svg');
    margin-left: 3px;
}

.no-hover {
  pointer-events: none;
}

.useful-block .item.no-hover span.link{
    pointer-events: auto;
    cursor: pointer;
}

.useful-block .item.no-hover:hover .image-block::before{
    display: none;
}

.useful-block .item.no-hover:hover h3{
    color: #27252c;
}

.about{
    background-color: #27252c;
    border-radius: 24px;
    padding: 120px 0 80px;
}

.about .wrapper{
    display: flex;
}

.about .left-column, .about .right-column{
    flex-basis: 50%;
}

.about p.subtitle{
    font-family: "Brush Script MT";
    font-size: 28px;
    line-height: 109%;
    font-weight: 400;
    font-style: italic;
    color: #dd7ef4;
}

.about h2{
    color: #ffffff;
    margin-bottom: 32px;
    margin-top: 25px;
}

.about .title-accent{
    background-color: rgba(227, 158, 255, 0.08);
    border-radius: 8px;
    padding-left: 8px;
    padding-right: 8px;
}

.about .about-text p{
    margin-bottom: 25px;
    color: #b9b7c2;
}

.about h4{
    margin-top: 40px;
    margin-bottom: 32px;
    color: #fff;
}

.about ul{
    margin-left: 20px;
    margin-bottom: 0;
}

.about ul li{
    color: #ffffff;
    font-size: 16px;
    line-height: 30px;
}

.about .slider-image{
    max-height: 530px;
    max-width: 470px;
}

.about .slider-image .slick-arrow{
    background-color: transparent;
    border: none;
    color: transparent;
    position: absolute;
    right: 0;
    top: 48%;
    background-image: url(../img/slider-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    z-index: 555;
    width: 30px;
    height: 30px;
}

.about .slider-image .slick-arrow.slick-prev{
    left: 0;
    transform: rotate(180deg);
}

.about svg path{
    fill: #27252C;
}

.about .social-media{
    display: inline-flex;
    align-items: center;
    column-gap: 12px;
    padding-left: 50px;
    margin-top: 10px;
}

.about .social-media a{
    background: rgba(255, 255, 255, 0.6);
    width: 52px;
    height: 52px;
    display: inline-flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transition: all 0.3s linear;
}

.about .social-media a:hover{
    transform: scale(1.1);
    background: #ffffff;
}

.about .topics-items{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.about .topics-items span{
    background: var(--darkbghighlight, rgba(227, 158, 255, 0.08));
    border-radius: 40px;
    padding: 6px 22px 6px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--white, #ffffff);
    font-size:  14px;
    line-height:  24px;
    font-weight:  400;
    transition: all 0.3s linear;
}

.about .topics-items span:hover{
    transform: rotate(1deg);
    transform-origin: right bottom;
}

.about .about-cooperation{
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.community-content{
    padding: 56px 0;
}

.community-content h2{
    text-align: center;
}

.community-content p.subtitle{
    max-width: 604px;
    margin: 16px auto 32px;
    text-align: center;
}

.community-content .list-items{
    display: flex;
    column-gap: 16px;
}

.community-content .list-items .item{
    background-color: #e39eff1f;
    border-radius: 20px;
    padding: 50px 32px;
}

.community-content .list-items .item h3{
    margin-top: 20px;
    margin-bottom: 20px;
}

.community-content .list-items .item p{
    max-width: 348px;
    margin-bottom: 20px;
}

.community-content .item a{
    color: #27252c;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    column-gap: 3px;
    transition: all 0.3s linear;
}

.community-content .item a:hover{
    color: #b12ccd;
}

.community-content .item a:after{
    content: '';
    display: inline-block;
    background-image: url('../img/chevron-right.svg');
    width: 16px;
    height: 16px;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 2px;
    transition: all 0.3s linear;
}

.community-content .item a:hover:after{
    background-image: url('../img/arrow-accent.svg');
    margin-left: 3px;
}

.help-block{
    padding: 90px 0;
}

.help-block h2{
    margin: 0 auto 24px;
    text-align: center;
}

.help-block p.subtitle{
    max-width: 784px;
    margin: 0 auto 90px;
    text-align: center;
}

.help-block .wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 48px;
}

.help-block .wrapper .left-top, .help-block .right-column{
    background-color: #f7f7f8;
    border-radius: 14px;
    padding: 48px 58px;
    transition: all 0.3s linear;
    position: relative;
}

.help-block .wrapper .left-top:hover{
    background: var(
    --gradient-card-bg-purple,
    linear-gradient(
      149.22deg,
      rgba(133, 78, 243, 0.16) 0%,
      rgba(228, 118, 255, 0) 100%
    ),
    linear-gradient(to left, #f7f7f8, #f7f7f8)
  );
  box-shadow: var(
    --card-shadow-grey-hover-box-shadow,
    0px 20px 36px 0px rgba(21, 33, 69, 0.16)
  );
  transform: rotate(-1deg);
    transform-origin: right bottom;
}

.help-block .right-column:hover{
    transform: rotate(1deg);
    transform-origin: right bottom;
     background: var(
    --gradient-card-bg-pink,
    linear-gradient(
      149.22deg,
      rgba(243, 78, 204, 0.16) 0%,
      rgba(228, 118, 255, 0) 100%
    ),
    linear-gradient(to left, #f7f7f8, #f7f7f8)
  );
  box-shadow: var(
    --card-shadow-grey-hover-box-shadow,
    0px 20px 36px 0px rgba(21, 33, 69, 0.16)
  );
}

.help-block .right-column .note-text{
    background: var(--white, #ffffff);
    border-radius: 15px;
    padding: 8px 16px 8px 16px;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    color: var(--violet-eggplant-950, #44074b);
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    width: 180px;
    height: 52px;
    position: absolute;
    right: 30px;
    top: 40px;
}

.help-block .wrapper .bottom-left-text{
    border: 1px solid #F2D2FC;
    border-radius: 14px;
    padding: 48px 58px;
    margin-top: 48px;
    background: linear-gradient(128deg, #f7f7fe 0%, #f1f8fe 48.56%, #fbf3f8 100%);
}

.help-block .wrapper .bottom-left-text .accent-text{
    color: #B12CCD;
    font-weight: 600;
}

.help-block p.icons{
    font-size: 42px;
}


.help-block .column h3{
    margin-top: 30px;
    margin-bottom: 10px;
}

.help-block .column p{
    color: #555161;
}

.help-block ul{
    margin-left: 25px;
}

.help-block li{
    color: #555161;
}

.help-block .right-column h3{
    margin-bottom: 23px;
}

.help-block .right-column li{
    color: #555161
}

.help-block .right-column p{
    margin-bottom: 0;
}

.help-block .column a{
    margin-top: 30px;
}

.social-links h2{
    text-align: center;
}

.social-links .social-items p.subtitle{
    margin: 32px auto 64px;
    max-width: 680px;
    text-align: center;
}

.social-links span.accent{
    background: #27252C;
}

.cooperation{
    padding: 70px 0 24px;
}

.cooperation .wrapper{
    display: flex;
    column-gap: 28px;
    background: var(
    --gradient-section-bg-pink,
    linear-gradient(
      111.15deg,
      rgba(242, 210, 252, 0.45) 0%,
      rgba(242, 210, 252, 1) 100%
    )
  );
  border-radius: 30px;
  padding: 96px 74px;
}

.cooperation .wrapper .column{
    flex-basis: 50%;
}

.cooperation .right-column{
    position: relative;
}

.cooperation h2{
    margin-top: 40px;
    font-size: 48px;
    max-width: 550px;
}

.cooperation span.accent{
    background: #27252c;
}

.cooperation .title-accent{
    background: #27252c;
    border-radius: 8px;
    padding-left: 8px;
    padding-right: 8px;
    color: #ffffff;
}

.cooperation p.info-text{
    margin: 24px 0;
}

.cooperation .social{
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.cooperation .social a{
    background-color: #27252c;
    width: 52px;
    height: 52px;
    display: inline-flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transition: all 0.3s linear;
}

.cooperation .social a:hover{
    transform: scale(1.1);
}

.cooperation .wpforms-container{
     background: var(--white, #ffffff)!important;
    border-radius: 20px!important;
    padding: 48px 40px 40px 40px!important;
    margin: 0!important;
}

.cooperation .wpforms-field-container{
    display: flex;
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 24px;
}

.cooperation #wpforms-194-field_1-container, .cooperation #wpforms-194-field_3-container{
    flex-basis: 48%;
    padding: 0;
}

.cooperation #wpforms-194-field_4-container, .cooperation #wpforms-194-field_5-container{
    flex-basis: 100%;
    padding: 0;
}

.cooperation .wpforms-field input, .cooperation .wpforms-field select{
    max-width: 100%;
    background-color: #f7f7f8!important;
    border-radius: 11px!important;
    border-width: 0!important;
    padding: 5px 16px!important;
    height: 54px;
}

.cooperation .wpforms-field textarea{
    background-color: #f7f7f8!important;
    border-radius: 11px!important;
    border-width: 0!important;
}

.cooperation .wpforms-field input:focus, .cooperation .wpforms-field select:focus, .cooperation .wpforms-field textarea{
    border-color: transparent!important;
    box-shadow: none!important;
}

.cooperation .wpforms-field label{
    margin-bottom: 4px!important;
    font-weight: 500;
}

.cooperation .wpforms-container .wpforms-submit-container{
    margin-top: 32px!important;
}

.cooperation .wpforms-container .wpforms-submit-container button{
    background: linear-gradient(90deg, rgba(228, 118, 255, 1) 0%, rgba(243, 78, 204, 1) 100%)!important;
    border-radius: 50px!important;
    padding: 18px 22px 18px 24px!important;
    box-shadow: 0px 14px 35.5px 0px rgba(238, 94, 224, 0.4)!important;
    display: inline-flex;
    align-items: center;
    column-gap: 5px;
    transition: all 0.3s linear!important;
    height: 54px!important;
    font-size: 16px!important;
    line-height: 18px!important;
    font-weight: 700;
}

.cooperation .wpforms-container .wpforms-submit-container button:hover{
    
}

.cooperation .wpforms-container .wpforms-submit-container button:after{
    content: '';
    display: inline-block;
    background-image: url(../img/arrow-right.svg);
    background-position: center;
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
}

.cooperation .policy-block{
    position: absolute;
    right: 0px;
    bottom: 38px;
    max-width: 235px;
}

.cooperation .policy-block p{
    color: #938fa1;
    font-size: 14px;
    line-height: 150%;
}

.cooperation .policy-block a{
    color: #27252c;
}

.video-block{
    padding: 90px 0;
}

.video-block h2{
    text-align: center;
    margin-bottom: 48px;
}

.video-block p.subtitle{
    text-align: center;
    max-width: 400px;
    margin: 16px auto 40px;
}

.video-block .wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
    background: var(
    --gradient-section-bg-pink,
    linear-gradient(
      111.15deg,
      rgba(242, 210, 252, 0.45) 0%,
      rgba(242, 210, 252, 1) 100%
    )
  );
    border-radius: 14px;
    padding: 48px;
}

.video-block .wrapper .item{
    background: var(--white, #ffffff);
    border-radius: 20px;
    padding: 30px 32px 30px 32px;
    transition: 0.3s all linear;
}

.video-block .wrapper .item:hover{
    box-shadow: var(
    --card-shadow-pink-hover-box-shadow,
    0px 20px 39px 0px rgba(187, 114, 168, 0.26)
  );
    transform: rotate(1deg);
    transform-origin: right bottom;
}

.video-block .item .video-poster{
    position: relative;
}

.video-block .item .video-poster:after{
    content: '';
    display: block;
    background-color: #681D72;
    mix-blend-mode: multiply;
    opacity: 0;
    border-radius: 10px;
    width: 100%;
    height: 95%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s all linear;
    

}

.video-block .item .video-poster:before{
     content: '';
    display: block;
    opacity: 0;
    border-radius: 10px;
    width: 100%;
    height: 96%;
    background-image: url('../img/play.svg');
    background-size: 41px;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s all linear;
}

.video-block .item:hover .video-poster:after{
    opacity: 0.3;
}

.video-block .item:hover .video-poster:before{
    opacity: 1;
}

.video-block .item .video-title{
    font-weight: 700;
    color: #21082f;
    margin-top: 20px;
    font-size: 16px;
}

.video-block .item iframe{
    max-height: 169px;
    border-radius: 10px;
}

.modal {
    position: absolute;
    z-index: 10000; /* 1 */
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
}

.modal.is-visible {
    visibility: visible;
}

.modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.active .modal-overlay{
    visibility: visible;
  opacity: 1;
}

.modal.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.modal-wrapper {
    position: fixed;
    z-index: 9999;
    top: 6em;
    left: 50%;
    width: 32em;
    margin-left: -16em;
    background-color: #efeef0;
    border-radius: 18px;
    border: 1px solid #dadada;
    box-shadow: 0px 4px 27.1px 0px rgba(239, 138, 202, 0.25);
    padding: 40px;
}

.modal-wrapper .um-center input[type="submit"].um-button{
    background-color: #7F25A4!important;
  color: #ffffff;
  font-size: 16px;
  line-height: 16px!important;
  font-weight: 700!important;
  padding: 16.5px 24px!important;
  border-radius: 76px!important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  column-gap: 4px;
  transition: all 0.3s linear;
}

.modal-wrapper .um-form form .um-col-alt{
    text-align: center;
}

.modal-wrapper .um-form form .um-col-alt .um-center{
    display: inline-block;
    position: relative;
}

.modal-wrapper .um-form form .um-col-alt .um-center:after{
    content: '';
    display: inline-block;
    background-image: url(../img/arrow-right.svg);
    background-position: center;
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
    position: absolute;
    z-index: 5555;
    right: 30px;
    top: 18px;
}

.modal-wrapper .um .um-field-label{
    margin: 0;
}

.modal-wrapper .um:not(.um-admin){
    margin-bottom: 10px!important;
}

.modal-wrapper .um-form .um-field .um-field-area input{
    background-color: #f7f7f8 !important;
  border-radius: 11px !important;
  border-width: 0 !important;
  padding: 5px 16px !important;
  height: 54px;
}

.modal-wrapper a#show-register, .modal-wrapper a#show-login{
    color: #7F25A4;
}

.modal-transition {
  transition: all 0.3s 0.12s;
  transform: translateY(-10%);
  opacity: 0;
}

.active .modal-transition {
  transform: translateY(0);
  opacity: 1;
}
.modal-close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1em;
    color: #aaa;
    background: none;
    border: 0;
    cursor: pointer;
  }
  
  .modal-close:hover {
    color: #777;
  }
  
  .cooperation .wpforms-field input.wpforms-error{
    border: 1px solid #FF5A65!important;
  }

  .wpforms-container em.wpforms-error{
    color: #FF5A65!important;
    margin-top: 0!important;
    position: absolute!important;
    top: 0px!important;
    right: 5px!important;
  }
  
  .wpforms-container em.wpforms-error::before{
    display: none!important;
  }

  select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    color: #000;
}

select:hover {
    border-color: #999;
}

.custom-option {
    background-color: #fff;
}

.custom-option:hover {
    background-color: #ccc;
}

.custom-option-hover {
    background-color: #ccc !important;
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.fade-in.visible {
    opacity: 1;
}

.wpforms-required-label{
    display: none;
}

div.wpforms-container-full .wpforms-confirmation-container-full{
    text-align: center;
    background: #ffffff !important;
    border: none !important;
    padding: 0 !important;
    position: relative;
    z-index: 5555555;
    margin-bottom: 0!important;
    padding-bottom: 10px !important;
}

.wpforms-confirmation-container-full p{
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 30px;
}

.wpforms-confirmation-container-full p.big-text{
    font-size: 32px!important;
    line-height: 40px!important;
}

dotlottie-player{
    margin: 0 auto!important;
}

.modal-wrapper .um-form .um-field .um-field-area input.um-error{
    border: 1px solid #FF5A65 !important;
}

.um-field-error{
    color: #FF5A65 !important;
    margin-top: 0 !important;
    position: absolute !important;
    top: 18px !important;
    right: 5px !important;
    background: transparent!important;
    padding: 0!important;
}

.um-field-arrow{
    display: none;
}

.modal h4{
    text-align: center;
    color: #27252c;
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 32px;
}

.modal p.subtitle{
    text-align: center;
    font-size: 18px;
    line-height: 30px;
}

.modal .um-field{
    padding: 20px 0 0 0;
}

.modal .um-field-label label{
    font-size: 16px!important;
    line-height: 18px!important;
}

.modal .form-container p{
    font-size: 16px;
    text-align: center;
    margin-top: 16px;
}

/* FOOTER */

footer{
    
    color: #b9b7c2;
    margin-bottom: 45px;
}

footer .top-footer{
    padding-bottom: 54px;
    border-bottom: 2px solid #43404c;
    padding: 62px 74px 50px;
    background-color: #27252c;
    border-radius: 24px 24px 0 0;
}

footer .wrapper{
    display: flex;
}

footer .logo{
    margin-bottom: 20px;
}

footer .logo img{
    max-width: 70px;
}

footer .logo-info{
    flex-basis: 50%;
}

footer .logo-info .info-text{
    max-width: 368px;
    color: #938fa1;
}

footer .footer-menu{
    flex-basis: 25%;
}

footer .footer-social{
    flex-basis: 25%;
    display: grid;
    justify-content: end;
}

footer h4{
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 190px;
}

footer .menu{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

footer a{
    color: #b9b7c2;
    transition: all 0.3s linear;
}

footer a:hover{
    color: #ffffff;
}

footer .main-navigation a{
    color: #b9b7c2;
    transition: all 0.3s linear;
}

footer .main-navigation a:hover{
    color: #ffffff;
}

footer .footer-social .social-items{
    display: flex;
    flex-wrap: wrap;
    row-gap: 18px;
    column-gap: 24px;
    max-width: 190px;
}

footer .footer-social .social-items a{
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all linear;
}

footer .footer-social .social-items a:hover{
    background-color: #ffffff;
}

footer .footer-social svg path{
    fill: rgb(39, 37, 44);
}

footer .bottom-footer{
    padding: 24px 74px 24px;
    background-color: #27252c;
    border-radius: 0 0 24px 24px;
}

footer .bottom-footer .wrapper{
    justify-content: space-between;
}

footer .privacy-policy a{
    color:#b9b7c2;
}

/* GUIDE PAGE */

.page-template-guide-page-template header.scrolled{
    position: static;
}
.hero-guide{
    padding: 64px 0 120px;
    background-image: url('../img/hero-bg.png');
}

.hero-guide h1{ 
    max-width: 844px;
    margin: 32px 0 76px;
}

h1{
    font-size: 72px;
    line-height: 86px;
}

.hero-guide .subtitle{
    color: #b12ccd;
    font-size: 20px;
    position: relative;
    cursor: pointer;
    z-index: 555;
}

.hero-guide .subtitle span{
    position: relative;
    z-index: 5;
}

.hero-guide .subtitle:before{
    content: '';
    display: block;
    background: var(--violet-eggplant-100, #f9e9fe);
    flex-shrink: 0;
    width: 217px;
    height: 17px;
    position: absolute;
    left: -6px;
    top: 11px;
    z-index: 0;
    transition: width 0.3s linear;
}

.subtitle .hover-subtitle {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    color: #3B3842;
}

.subtitle:hover .hover-subtitle {
    opacity: 1;
    visibility: visible;
}
.hero-guide .subtitle:hover:before{
    width: 491px;
}

.tabs-content-section{
    position: relative;
}

.tabs-content-section .tabs-wrapper .bottom-line{
    display: none;
}

.tabs-wrapper{
    width: 100%;
    position: absolute;
    top: -44px;
}

.tabs-wrapper.fixed{
    position: fixed;
    top: 0px;
    background-image: url(../img/hero-bg.png);
    background-position: center;
    background-size: cover;
    padding-top: 64px;
    width: 100%;
    z-index: 55;
    background-color: #ffffff;
}

.tabs-wrapper.fixed .bottom-line{
    height: 32px;
    background-color: #ffffff;
    display: block;
}

.tabs-items{
    display: flex;
    margin: 0;
    list-style: none;
    align-items: flex-end;
    /*position: absolute;
    top: -44px;*/
    cursor: pointer;
    /*padding: 32px 0 64px;
    position: sticky;
    top: 32px;
    background-color: #fff;
    z-index: 555;
    background-image: url(../img/hero-bg.png);
    background-position: center;
    background-size: cover;*/
}

.tabs-items li{
    border-radius: 12px 12px 0px 0px;
    padding: 7px 18px 7px 18px;
    background-color: #ffffff;
    color: #555161;
    font-size: 14px;
    line-height: 24px;
    box-shadow: inset 0px -2px 4px 0px rgba(0, 0, 0, 0.05);
    max-height: 38px;
    
}

.tabs-items li.active{
    background: var(
    --gradient-section-bg-dark,
    linear-gradient(122.05deg, rgba(44, 41, 51, 1) 0%, rgba(40, 35, 54, 1) 100%)
  );
  padding: 7px 28px 7px 28px;
  box-shadow: var(
    --card-shadow-pink-box-shadow,
    0px 20px 36px 0px rgba(187, 114, 168, 0.2)
  );
  color: #ffffff;
  font-size: 18px;
  line-height: 30px;
  max-height: 44px;
}

.tabs-items li:hover{
    background-color: rgb(239 238 241);
}

.guide-item{
    padding: 64px 0;
    /*max-height: 85vh;
    overflow-y: auto; 
    overflow-x: hidden;*/
}

.guide-item h2{
    margin-bottom: 12px;
}

.guide-item .subtitle{
    color: #27252c;
}

.guide-item .wrapper-title{
    margin-top: 64px;
    display: flex;
    column-gap: 48px;
    padding: 32px 0;
    border-bottom: 1px solid #dad8df;
}

.guide-item .wrapper-item:last-child{
    border-bottom: none;
}

.guide-item .left-column{
    flex-basis: 60%;
}

.guide-item .right-column{
    flex-basis: 40%;
    max-width: 40%;
    overflow: hidden;
}

.guide-item .wrapper-title .col-title{
    background: #f9f8fd;
    border-radius: 6px;
    color: #555161;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    padding: 12px 16px;
    display: block;
}

.guide-item .wrapper-item{
    display: flex;
    padding: 32px 0;
    border-bottom: 1px solid #DAD8DF;
}
.guide-item .wrapper-item .right-column{
    padding-left: 34px;
}

.guide-item .wrapper-item .left-column{
    padding-right: 30px;
}

.guide-item .wrapper-item .left-column img.wp-smiley, .guide-item .wrapper-item .left-column img.emoji{
    border-radius: 3px;
    margin-right: 10px!important;
}

.guide-item .wrapper-item .left-column .image-block{
    padding-right: 30px;
}

.guide-item .wrapper-item .left-column img{
    width: 100%;
    border-radius: 20px;
    border: 1px solid #dad8df;
    margin-left: 40px;
    max-width: 100%;
}

.guide-item .wrapper-item h4{
    font-size: 24px;
    line-height: 28px;
    color: #27252c;
    padding-left: 40px;
}

.guide-item .wrapper-item .left-column p{
    color: #555161;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 16px;
    margin-top: 16px;
    padding-left: 40px;
}

.guide-item .wrapper-item .resourses-link{
    font-weight: 700;
    font-size: 18px;
    line-height: 111%;
    display: inline-flex;
    align-items: center;
    color: #27252C;
    padding-left: 40px;
    margin-bottom: 16px;
    transition: all 0.3s linear;
}

.guide-item.bonus .wrapper-item h4, .guide-item.bonus .wrapper-item .left-column p, .guide-item.bonus .wrapper-item .resourses-link{
    padding-left: 0;
}

.guide-item .wrapper-item .resourses-link:hover{
    color: #b12ccd;
}

.guide-item .wrapper-item .resourses-link svg{
    margin-left: 7px;
    transition: all 0.3s linear;
}

.guide-item .wrapper-item .resourses-link:hover svg{
    margin-left: 12px;
}

.guide-item .wrapper-item .resourses-link:hover svg path{
    stroke: #b12ccd;
}

.guide-item .external-link-preview{
    display: flex;
    border: 1px solid #dad8df;
    border-radius: 20px;
    column-gap: 2%;
    margin-bottom: 12px;
    transition: all 0.2s linear;
}

.guide-item .external-link-preview:hover{
    background-color:  #F7F7F8;
}

.guide-item .external-link-preview .text-col{
    flex-basis: 60%;
    padding: 10px;
}

.guide-item .external-link-preview .image-col{
    flex-basis: 38%;
}

.guide-item .external-link-preview h3{
    font-size: 16px;
    color: #27252c;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 5px;
}

.guide-item .external-link-preview p{
    font-size: 14px;
    line-height: 1.4;
    color: #767186;
    display: -webkit-box;      
  -webkit-line-clamp: 2;      
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 5px;
}

.guide-item .external-link-preview a{
    color: #27252c;
    font-weight: 400;
    line-height: 1.4;
    font-size: 14px;
}

.guide-item .external-link-preview a.hid-link{
    display: -webkit-box;      
  -webkit-line-clamp: 1;      
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.guide-item .external-link-preview img{
    height: 100%;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
}

.bonus .social-items{
    padding: 90px 0;
    background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(242, 245, 250, 1) 100%
    );
   
}
.bonus .social-items .wrapper{
     column-gap: 48px;
    display: flex;
}

.bonus .social-items .item{
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 32px 30px 32px;
    box-shadow: 
    0px 8px 16.6px 0px rgba(21, 33, 69, 0.11);
    transition: transform 0.3s ease;
    transform-origin: center center;
    cursor: pointer;
}

.bonus .social-items .item:hover{
    box-shadow: 0px 20px 36px 0px rgba(21, 33, 69, 0.16);
    transform: rotate(1deg);
}


.bonus .social-items .top-wrap{
    display: flex;
    justify-content: space-between;
}

.bonus .social-items .top-wrap img{
    margin-left: -9px;
    max-width: 66px;
}

.bonus .social-items h3{
    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
    color: #27252C;
    margin-bottom: 15px;
    margin-top: 10px;
}

.bonus .social-items p{
    color: #938FA1;
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 25px;
}

.bonus .social-items a{
    color: #21082F;
    font-size: 18px;
    line-height: 1px;
    font-weight: 700;
    display: flex;
    align-items: center;
    column-gap: 11px;
    transition: 0.2s all linear;
}

.bonus .social-items a:hover{
    color: #cb4ce9;
}

.bonus .social-items a:hover svg path{
    stroke: #cb4ce9;
}

.bonus .social-items span.quantity{
    color: #11845B;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    border-radius: 20px;
    padding: 0px 12px;
    background-color: #DEF2E6;
    border: 1px solid #7FDCA4;
    height: fit-content;
    margin-top: 11px;
}

.contact-form-question{
    padding: 32px 0 32px;
}

.contact-form-question .container{
    padding: 32px 20px;
    background: linear-gradient(128deg, #f7f7fe 0%, #f1f8fe 48.56%, #fbf3f8 100%);
    border: 1px solid var(--violet-eggplant-100);
    border-radius: 18px;
}

.contact-form-question h3{
    font-weight: 700;
    font-size: 28px;
    line-height: 129%;
    text-align: center;
    color: #27252c;
    margin-bottom: 10px;
}

.contact-form-question p.subtitle{
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #938fa1;
}

.buttons-wrapper{
    margin-top: 32px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.buttons-wrapper .button{
    border-radius: 50px;
    padding: 18px 16px 18px 24px;
    font-weight: 700;
    font-size: 16px;
    line-height: 113%;
    text-align: center;
    transition: all linear 0.3s;
}

.buttons-wrapper .mail{
    background: #f7f7f8;
    border: 1px solid #938fa1;
    color: #555161;
}

.buttons-wrapper .mail:hover{
    background:  #fcf4ff;
    border: 1px solid #eaaef9;
    transform: rotate(1deg);
    transform-origin: right bottom;
}

 .buttons-wrapper .telegram{
    box-shadow: 0 14px 36px 0 rgba(238, 94, 224, 0.4);
    background: linear-gradient(90deg, #e476ff 0%, #f34ecc 100%);
    color: #fff;
}

.strike-toggle:checked + label h4,
.strike-toggle:checked + label p {
    text-decoration: line-through;
    opacity: 1;
}

.strike-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.strike-toggle + label {
    position: relative;
    padding-left: 28px; 
    cursor: pointer;
}

.strike-toggle + label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    border: 2px solid #ccc;
    border-radius: 0px;  
    background: #fff;
    transition: all 0.2s ease;
}

.strike-toggle:checked + label::before {
    border: none;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'><path d='M10.575 18.275L20.2688 8.58125L18.3438 6.65625L10.575 14.425L6.65625 10.5063L4.73125 12.4312L10.575 18.275ZM2.875 24.875C2.11875 24.875 1.47135 24.6057 0.932813 24.0672C0.394271 23.5286 0.125 22.8813 0.125 22.125V2.875C0.125 2.11875 0.394271 1.47135 0.932813 0.932813C1.47135 0.394271 2.11875 0.125 2.875 0.125H22.125C22.8813 0.125 23.5286 0.394271 24.0672 0.932813C24.6057 1.47135 24.875 2.11875 24.875 2.875V22.125C24.875 22.8813 24.6057 23.5286 24.0672 24.0672C23.5286 24.6057 22.8813 24.875 22.125 24.875H2.875ZM2.875 22.125H22.125V2.875H2.875V22.125Z' fill='%2305C168'/></svg>") no-repeat center center;
    background-size: contain;
}


@media screen and (min-width: 1900px){
    .banner{
        background-position: 95%;
    } 
}

@media screen and (max-width: 1350px){
    .container{
        width: 90%;
    }

    h1{
        font-size: 46px;
        line-height: 60px;
    }
    h3{
        font-size: 28px;
    }
    header .main-navigation {
        flex-basis: 70%;
    }
    header .main-navigation a{
        font-size: 15px;
    }
    header .main-navigation ul {
        justify-content: flex-end;
        padding-right: 30px;
        column-gap: 30px;
    }
    header .contact-button {
        flex-basis: 15%;
        text-align: right;
    }

    footer .logo-info {
        flex-basis: 55%;
    }

    footer .footer-social {
        flex-basis: 30%;
    }

    .cooperation .policy-block{
        max-width: 210px;
    }

.cooperation h2{
    font-size: 36px;
    margin-top: 0;
}

    .banner .left-column {
        max-width: 50%;
        flex-basis: 50%;
        padding-right: 30px;
    }
    .cooperation #wpforms-194-field_1-container, .cooperation #wpforms-194-field_3-container{
        flex-basis: 47%;
    }
}

@media (min-width: 1024px) and (max-width: 1350px){
    .banner .buttons-wrapper .button{
        font-size: 12px;
    }
}

@media screen and (max-width: 1210px){
    .banner .wrapper{
        display: block;
    }
    .banner .left-column {
        max-width: 100%;
        flex-basis: 100%;
        padding-right: 0;
    }

    .banner .right-column {
       /* flex-basis: 80%;
        margin-top: 70px;*/
    }
}

@media screen and (max-width: 1200px){
    body{
        font-size: 16px;
        line-height: 24px;
    }
    .banner{
        background-size: 40%;
    }
    h3 {
        font-size: 24px;
        line-height: 32px;
    }

    .help-block h2{
        font-size: 42px;
        line-height: 58px;
    }
    .cooperation h2{
        font-size: 40px;
    }

    .cooperation .wpforms-container{
        padding: 35px 30px!important;
    }

    .cooperation #wpforms-194-field_1-container, .cooperation #wpforms-194-field_3-container{
        flex-basis: 47%;
    }
    .cooperation .policy-block {
        bottom: 40px;
    }
    .video-block .wrapper .item {
        padding: 15px;
    }

    .bonus .social-items .wrapper{
        column-gap: 20px;
    }

    .bonus .social-items{
        font-size: 24px;
    }

    .useful-block .wrapper{
        gap: 32px;
    }

}

@media screen and (max-width: 1100px){
    .cooperation .wrapper{
        padding: 76px 44px;
    }
}

@media screen and (max-width: 1040px){
    .useful-block h3{
        font-size: 24px;
    }

    .useful-block .item .text-block{
        padding: 28px 22px;
    }

    .help-block .wrapper{
        column-gap: 30px;
    }

    .tabs-items li{
        padding: 7px 10px 7px 10px;
        font-size: 11px;
    }
    .tabs-items li.active{
        font-size: 15px;
        padding: 7px 18px;
    }
    .cooperation .wpforms-container {
        padding: 35px 30px 50px 30px !important;
    }
    footer .logo-info .info-text{
        max-width: 300px;
    }
    footer .main-navigation a{
        font-size: 14px;
    }
}

@media screen and (max-width: 1000px){
    h1 {
        font-size: 36px;
        line-height: 44px;
    }
    h2{
        font-size: 30px;
    }
    h3 {
        font-size: 20px;
        line-height: 26px;
    }
    .help-block h2, .cooperation h2 {
        font-size: 36px;
        line-height: 46px;
    }

    .useful-block {
        padding: 50px 0;
    }

    .useful-block .item .text-block{
        padding: 30px 20px;
    }
    .useful-block .wrapper .item{
        flex-basis: 48%;
    }
    .useful-block .item .info-text {
        margin: 10px 0;
    }
    .help-block p.subtitle{
        margin-bottom: 30px;
    }
    .video-block .wrapper{
        padding: 28px;
    }
    .cooperation .wpforms-container {
        padding: 55px 30px !important;
    }
}

@media screen and (max-width: 992px){
    header #primary-menu{
        column-gap: 30px;
        margin: 0;
    }
    .hero-guide .tabs-items{
        flex-wrap: wrap;
    }
    .guide-item .wrapper-title{
        margin-top: 45px;
    }

    .guide-item .wrapper-item .left-column p{
        font-size: 16px;
        line-height: 22px;
    }

    .guide-item .wrapper-item h4{
        font-size: 20px;
        line-height: 24px;
    }
    .guide-item .external-link-preview h3{
        font-size: 14px;
    }

    .guide-item .external-link-preview p{
        font-size: 12px;
    }

    .guide-item .external-link-preview a{
        font-size: 12px;
    }

    .guide-item .external-link-preview .text-col{
        max-width: 50%;
    }
    .guide-item .external-link-preview .image-col{
        flex-basis: 50%;
    }
    footer .wrapper{
        flex-wrap: wrap;
    }
    footer .logo-info {
        flex-basis: 100%;
        margin-bottom: 30px;
    }
    footer .footer-menu{
        flex-basis: 50%;
    }
    footer .footer-social{
        flex-basis: 50%;
    }

    footer h4{
        margin-bottom: 20px;
    }

    .about{
        padding: 70px 20px;
    }

    .about .wrapper{
        display: block;
    }

    .about .left-column{
        text-align: center;
    }

    .about .slider-image{
        margin: 0 auto 40px;
    }

    .cooperation .policy-block {
        bottom: 60px;
        right: 20px;
        max-width: 150px;
    }
    .cooperation .policy-block p{
        font-size: 11px;
    }

    .cooperation .wrapper{
        column-gap: 10px;
    }

    .cooperation .wpforms-container {
        padding: 35px 20px !important;
    }

    .help-block{
        padding: 50px 0;
    }

    .video-block{
        padding: 50px 0;
    }
}

@media screen and (max-width:900px){
    header .site-branding {
        flex-basis: 10%;
    }
    header .main-navigation {
        flex-basis: 75%;
    }
    header .main-navigation a{
        font-size: 12px;
    }
    header .contact-button{
        flex-basis: 15%;
    }
    header .contact-button a{
        font-size: 15px;
    }
    .cooperation {
        padding: 30px 0 24px;
    }

    .tabs-content-section .container{
        width: 100%;

    }

    /*.tabs-wrapper{
        padding-left: 20px;
    }*/

    .guide-item{
        padding: 64px 20px;
    }

    .guide-item.bonus{
        padding: 64px 0;
    }

    .guide-item.bonus .container{
        padding: 0 20px;
    }

    .tabs-items {
        display: flex;
        flex-wrap: nowrap;     
        overflow-x: auto;      
        -webkit-overflow-scrolling: touch; 
        scrollbar-width: none;  
        }

    .tabs-items::-webkit-scrollbar {
        display: none; 
    }

    .tabs-items li {
        flex: 0 0 auto;   
    }

    .guide-item .external-link-preview img{
        max-height: 129px;
    }

    .cooperation .wrapper{
        display: block;
    }

    .cooperation .policy-block{
        bottom: 40px;
    }

    .cooperation .wrapper .column{
        margin-bottom: 30px;
    }
    
}

@media screen and (max-width: 800px){
    header .contact-button a{
        padding: 16.5px 20px;
    }
    .community-content .list-items .item{
        padding: 25px;
    }
    .about .wrapper {
        display: grid;
    }
    .about .slider-image{
        margin: 0 auto;
    }

    .about .left-column{
        text-align: center;
        margin-bottom: 30px;
        order: 2;
    }

    .about .right-column{
        order: 1;
    }

    .useful-block .wrapper {
        display: flex;
        flex-wrap: wrap;
    }
    .useful-block .wrapper .item{
        flex-basis: 100%;
    }

    .help-block .wrapper{
        grid-template-columns: 1fr;
    }

    .help-block .wrapper .column{
        margin-top: 48px;
    }
}

@media screen and (max-width: 767px){
    #page{
        overflow: hidden;
    }
    header .site-branding {
        flex-basis: 20%;
    }
    header .main-navigation {
        flex-basis: 20%;
        order: 3;
    }
    header .main-navigation.toggled .menu-landing-menu-container{
        display: none;
    }
    header .contact-button {
        flex-basis: 60%;
        order: 2;
    }
    header .contact-button a{
        font-size: 14px;
    }
    header .wrapper{
        justify-content: space-between;
    }

    header .wrapper a.btn-pink{
        display: none;
    }

    header .menu-main-menu-container{
       
    }

    header #primary-menu{
        background: var(--gradient-card-bg-colour, linear-gradient(90.97deg, rgba(247, 247, 254, 1) 0%, rgba(241, 248, 254, 1) 48.557692766189575%, rgba(251, 243, 248, 1) 100%));
        border-radius: 18px;
        border-style: solid;
        border-color: var(--violet-eggplant-100, #f9e9fe);
        border-width: 1px;
        padding: 32px;
        margin-bottom: 24px;
        max-width: 100%;
    }

    header .main-navigation a{
        font-size: 18px;
        line-height: 30px;
        color: #27252c;
    }
    header .site-branding .custom-logo-link img{
        max-width: 48px;
    }
    
    .main-navigation li{
        margin-bottom: 2vh;
    }

    .main-navigation li:last-child{
        margin-bottom: 0;
    }
    .toggle {
        cursor: pointer;
        overflow: hidden;
        width: 22px;
        padding: 0;
       border: none;
       background-color: transparent;
       margin: 0 0 0 auto;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      
    header .toggle-menu.activate{
        position: fixed;
        right: 0;
        border-radius: 0;
        top: 80px;
        padding: 24px;
        min-width: 100%;
        background-color: #ffffff;
        z-index: 555555;
        display: block;
        height: 110vh;
        display: block;
    }

    header .toggle-menu.activate h2{
        margin-bottom: 28px;
        font-size: 28px;
    }

    header #menu-main-menu{
        background: var(--gradient-card-bg-colour, linear-gradient(90.97deg, rgba(247, 247, 254, 1) 0%, rgba(241, 248, 254, 1) 48.557692766189575%, rgba(251, 243, 248, 1) 100%));
        border-radius: 18px;
        border-style: solid;
        border-color: var(--violet-eggplant-100, #f9e9fe);
        border-width: 1px;
        padding: 32px;
        margin-bottom: 24px;
        max-width: 100%;
    }


    header .toggled .menu-main-menu-container{
        display: none;
    }  

    header .toggle-menu.activate .menu-main-menu-container{
        display: block;
    }

    header .main-navigation.toggled .toggle-menu.activate .menu-landing-menu-container{
        display: block;
    }

    header .toggle-menu.activate ul{
        background: linear-gradient(90.97deg, #F7F7FE 16.53%, #F1F8FE 56.51%, #FBF3F8 98.86%);
        border-radius: 18px;
        border: 1px solid #FBF3F8;
        padding: 40px 30px;
    }

    header .toggle-menu.activate a.btn-pink{
        display: block;
        color: #ffffff;
        margin-top: 30px;
    }

    header .toggle-menu.activate .social-toggle{
        background: linear-gradient(144deg, #2c2933 0%, #282336 100%);
        border-radius: 18px;
        padding: 24px;
        display: flex;
        column-gap: 24px;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    header .toggle-menu.activate .social-toggle a{
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background-color: #43404C;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header .toggled .menu-toggle{
        width: 22px;
        height: 22px;
        background-image: url("data:image/svg+xml;utf8,<svg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M20.8137 21.4981C20.6581 21.5 20.5039 21.4692 20.3609 21.4075C20.2179 21.3459 20.0892 21.2548 19.9833 21.1402L1.00293 2.05198C0.528421 1.57478 0.528421 0.83511 1.00293 0.357904C1.47744 -0.119301 2.21293 -0.119301 2.68744 0.357904L21.6441 19.47C22.1186 19.9472 22.1186 20.6869 21.6441 21.1641C21.4069 21.4027 21.0984 21.522 20.8137 21.522V21.4981Z' fill='%2327252C'/><path d='M1.18627 21.4743C1.03069 21.4762 0.876436 21.4453 0.733423 21.3837C0.59041 21.322 0.461807 21.231 0.355882 21.1164C-0.118627 20.6392 -0.118627 19.8995 0.355882 19.4223L19.3363 0.357904C19.8108 -0.119301 20.5463 -0.119301 21.0208 0.357904C21.4953 0.83511 21.4953 1.57478 21.0208 2.05199L2.01667 21.1164C1.77941 21.355 1.47098 21.4743 1.18627 21.4743Z' fill='%2327252C'/></svg>");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    header .toggled .menu-toggle svg{
        display: none;
    }
      
    h1 {
        font-size: 30px;
        line-height: 38px;
        max-width: 55%;
    }
    h2 {
        font-size: 28px;
    }
    .banner{
        padding-top: 70px;
        height: auto;
        background-position: center right;
        background-size: 38%;
    }
    .banner h1 {
        margin: 20px 0;
    }
    .banner .left-column{
        max-width: 100%;
    }

    .banner p.info-text{
        font-size: 14px;
        line-height: 20px;
        max-width: 350px;
    }
    .banner .social-media a{
        width: 45px;
        height: 45px;
    }

    .social-media a svg, .cooperation .social a svg{
        width: 20px;
        height: 20px;
    }
    
    .about .wrapper, .help-block .wrapper, .cooperation .wrapper,
    .video-block .wrapper{
        display: block;
    }
    .useful-block .wrapper .item{
        margin-bottom: 20px;
    }
    .community-content .list-items .item{
        margin-bottom: 20px;
    }

    .about{
        padding: 80px 0;
    }

    .about .social-media{
        padding-left: 0;
    }

    .about .social-media a, .cooperation .social a{
        width: 45px;
        height:45px;
    }

    .about .right-column{
        margin-top: 40px;
    }

    .help-block h2, .cooperation h2{
        font-size: 28px;
        line-height: 36px;
    }

    .help-block .wrapper .left-top, .help-block .right-column, .help-block .wrapper .bottom-left-text{
        padding: 28px 38px;
    }


    .help-block .left-column{
        margin-bottom: 20px;
    }
    .cooperation {
        padding: 20px 0 24px;
    }
    .cooperation #wpforms-194-field_1-container, .cooperation #wpforms-194-field_3-container {
        flex-basis: 100%;
    }
    .cooperation .wpforms-container .wpforms-submit-container {
        margin-top: 20px !important;
        margin-bottom: 20px;
    }

    .video-block .wrapper{
        padding: 20px;
    }

    .cooperation .wpforms-container {
        padding: 0px 20px 0px !important;
    }

    .cooperation .wpforms-container p.big-text{
        font-size: 24px!important;
        line-height: 36px!important;
    }

    .wpforms-confirmation-container-full p{
        line-height: 22px!important;
    }

    .guide-item .wrapper-title{
        display: none;
    }

    .guide-item .wrapper-item{
        display: block;
    }

    .guide-item .wrapper-item .left-column{
        padding-right: 0;
    }

    .guide-item .wrapper-item .right-column{
        padding-left: 40px;
        margin-top: 7px;
    }

    .guide-item{
        padding: 45px 20px;
        background-color: #ffffff;
    }

    .guide-item .wrapper-item .left-column .image-block{
        padding-right: 0;
        max-width: 100%;
        margin-right: 40px;
    }

    .strike-toggle + label::before{
        width: 20px;
        height: 20px;
        top: 35px;
    }

    .guide-item .wrapper-item h4{
        padding-left: 30px;
    }

    .guide-item .wrapper-item .left-column p{
        padding-left: 30px;
    }

    .guide-item .wrapper-item .resourses-link{
        padding-left: 30px;
    }

    .guide-item .wrapper-item .left-column img{
        margin-left: 30px;
    }

    .guide-item .wrapper-item .right-column{
        padding-left: 30px;
        margin-right: 7px;
    }



    .hero-guide{
        padding-bottom: 50px;
        background-position: top center;
        background-size: auto;
        padding-top: 100px;
    }

   /* .guide-item {
        display: none;
        padding: 30px 10px;
        border: 1px solid #dddddd7d;
        border-top: none;
        max-height: 85vh;
        overflow: auto;
        margin-bottom: 10px;
        border-radius: 0 0 12px 12px;
        background-color: #ffffff;
    }
    .guide-item.active {
        display: block;
    }

    .hero-guide .tabs-items{
        display: block;
    }*/
    
    

    .guide-item .right-column{
        max-width: 100%;
    }

    .guide-item .container{
        width: 100%;
        padding: 45px 20px;
    }

    .bonus .social-items .wrapper{
        flex-wrap: wrap;
        row-gap: 25px;
    }

    .bonus .social-items .wrapper .item{
        flex-basis: 100%;
    }
    
    .video-block .wrapper .item{
        margin-bottom: 20px;
    }
    /*.guide-template{
        background-image: url('../img/mob-bg.png');
        background-size: cover;
        background-repeat: no-repeat;
    }*/

    .subtitle .hover-subtitle{
        opacity: 1;
        visibility: visible;
        display: block;
        margin-top: 15px;
    }

    .cooperation .wrapper{
        padding: 30px 20px;
    }

    footer .menu-toggle{
        display: none;
    }

    footer .wrapper{
        flex-wrap: wrap;
    }

    footer .logo-info{
        flex-basis: 100%;
    }
    

    footer h4{
        margin-bottom: 20px;
        margin-top: 20px;
    }

    footer .main-navigation li {
        margin-bottom: 0;
    }

    footer .logo img{
        max-width: 48px;
    }
}

@media screen and (max-width: 700px){
    .box{
      width: 70%;
    }
    .popup{
      width: 70%;
    }
}

@media screen and (max-width: 650px){
    .useful-block .wrapper, .community-content .list-items{
        display: block;
    }
    div.wpforms-container-full .wpforms-confirmation-container-full{
        padding-bottom: 35px!important;
    }
    .banner p.info-text{
        max-width: 200px;
    }
    .banner{
        background-position: bottom right;
        padding-bottom: 0;
    }

    h1{
        max-width: 100%;
        font-size: 36px;
    }

    .modal-wrapper{
        left: 62%;
        width: 95%;
    }

    .um-form .um-field-error{
        max-width: 150px!important;
        top: 5px !important;
        line-height: 14px !important;
        text-align: right;
    }

    .hero-guide .subtitle{
        font-size: 16px;
    }

    .hero-guide .subtitle:before{
        width: 190px;
        top: 8px;
    }

    .hero-guide h1{
        margin: 22px 0 56px;
        max-width: 250px;
    }

    .guide-item h2{
        font-size: 24px;
    }

    .guide-item .external-link-preview h3{
        max-height: 40px;
        overflow: hidden;
        margin-top: 0!important;
    }

    header .menu .inactive:after{
        font-size: 7px;
        line-height: 10px;
        top: -7px;
        right: -20px;

    }

    .toggle.activate .line-toggle:first-child{
        width: 40px;
    }

    .toggle.activate .line-toggle:last-child{
        width: 40px;
    }

    .contact-form-question .buttons-wrapper{
        flex-wrap: wrap;
    }

    .contact-form-question .buttons-wrapper .mail, .contact-form-question .buttons-wrapper .telegram{
        width: 270px;
    }

    footer .top-footer{
        padding: 60px 20px 30px;
    }

    footer .footer-menu, footer .footer-social{
        flex-basis: 100%;
        justify-content: flex-start;
    }

    footer .bottom-footer{
        padding: 24px 20px;
    }

    .banner .buttons-wrapper{
        flex-wrap: wrap;
    }

    .buttons-wrapper .button{
        width: 275px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .help-block p.icons{
        font-size: 26px;
    }

    .help-block .right-column .note-text{
        top: 20px;
        right: 20px;
        font-size: 10px;
        line-height: 14px;
        width: 150px;
        height: 40px;
        gap: 5px;
    }

    .about .topics-items{
        grid-template-columns: 1fr 1fr;
    }

    .cooperation .policy-block{
        bottom: 45px;
    }

    .banner.hero-guide{
        padding-bottom: 0px;
    }

    .responsive-wrapper{
        margin: -50px 0;
    }

   /* .banner .top-row{
        padding: 66px 20px 50px;
    }

    .banner .benefits{
        max-width: 100%;
    }

    .banner .benefits span{
        width: 87px;
        height: 26px;
        font-size: 8px;
    }

    .banner .right-column .icon{
        width: 40px;
        height: 44px;
    }

    .banner .review{
        font-size: 8px;
        line-height: 11px;
        width: 120px;
        height: 78px;
    }

    .banner .review .photo-name{
        margin-bottom: 2px;
    }

    .banner .top-row .icons{
        column-gap: 6px;
        position: absolute;
        top: -21px;
        left: 20px;
    }

    .banner .top-row .review.first {
        right: 10px;
        top: -31px;
    }

    .banner .benefits span:before{
        width: 25px;
        height: 8px;
        background-size: contain;
        background-repeat: no-repeat;
        z-index: 555;
        right: -25px;
    }

    .banner .benefits span:nth-child(5):before {
        width: 20px;
        height: 70px;
        right: -22px;
        bottom: 12px;
    }

    .banner .benefits span:after{
        width: 8px;
        height: 41px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        bottom: -41px;
    }*/
}

@media screen and (max-width: 504px){
    
    .cooperation .policy-block{
        bottom: 10px;
        max-width: 250px;
        left: 30px;
    }
}

@media screen and (max-width: 450px){
    body {
        font-size: 14px;
        line-height: 20px;
    }

    .about ul li{
        font-size: 14px;
        line-height: 20px;
    }

    .banner{
        padding-bottom: 0;
        padding-top: 0;
        margin-top: 70px;
        background-position: center right;
    }

    
}

/* GUIDE LANDING */

.banner-guide{
    padding: 120px 0 100px;
    text-align: center;
}

.banner-guide .container{
    z-index: 44;
    position: relative;
}

p.subtitle{
    color: #938FA1;
    font-size: 20px;
    line-height: 150%;
    font-weight: 400;
}

.banner-guide p.subtitle{
    color: #cb4ce9;
}

.banner-guide h1{
    color: #27252c;
    font-size: 72px;
    line-height: 86px;
    font-weight: 700;
    max-width: 844px;
    margin: 32px auto;
}

.banner-guide .info-text{
    color: var(--scarpa-flow-950, #27252c);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    max-width: 524px;
    margin: 0 auto 29px;
}

.arrow-down {
  animation: arrowAnim 2s ease-in-out infinite;
  margin-top: 50px;
}

@keyframes arrowAnim {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

.btn-pink{
    display: inline-block;
    background: linear-gradient(
    90deg,
    rgba(228, 118, 255, 1) 0%,
    rgba(243, 78, 204, 1) 100%
  );
  border-radius: 50px;
  padding: 18px 22px 18px 24px;
  box-shadow: 0px 14px 35.5px 0px rgba(238, 94, 224, 0.4);
  color: #ffffff;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
      text-align: center;
    transition: all linear 0.3s;
}

.btn-pink:hover{
    transform: rotate(1deg);
    transform-origin: right bottom;
    color: #ffffff;
    padding: 18px 16px 18px 24px;
    box-shadow: 0px 20px 39px 0px rgba(238, 94, 224, 0.5);
}

.btn-pink svg{
    margin-left: 20px;
    transition: all 0.3s linear;
}

.btn-pink:hover svg{
    margin-left: 26px;
}

.ellipse-160, .ellipse-159, .ellipse-158 {
  position: absolute; 
  border-radius: 50%;
  width: 315.65px;
  height: 194.06px;
  filter: blur(100px);
  opacity: 0.8;
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

.ellipse-160 {
  background: var(--colors-indigo, #6155f5);
  top: 30%;
  left: 52%;
  animation-delay: 0s;
}

.ellipse-159 {
  background: var(--system-colors-blue-300, #1d88fe);
  top: 20%;
  left: 40%;
  animation-delay: 3s;
}

.ellipse-158 {
  background: var(--violet-eggplant-400, #dd7ef4);
  top: 40%;
  left: 30%;
  animation-delay: 6s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -30px) scale(1.05); }
  50% { transform: translate(-15px, 20px) scale(0.95); }
  75% { transform: translate(25px, 15px) scale(1.03); }
  100% { transform: translate(0, 0) scale(1); }
}


.guide-resourses{
    padding: 160px 0 90px;
}

.guide-resourses h2{
    text-align: center;
}

span.accent{
    background: linear-gradient(90deg, #e476ff 0%, #f34ecc 100%);
    border-radius: 8px;
    padding: 0 8px;
    color: #ffffff;
}

.guide-resourses p.subtitle{
    margin: 32px auto;
    max-width: 646px;
    text-align: center;
}

.guide-resourses .note-text{
    border-radius: 15px;
    padding: 8px 16px;
    width: 303px;
    height: 40px;
    background: #f9e9fe;
    font-weight: 500;
    font-size: 12px;
    line-height: 200%;
    color: #44074b;
    margin: 0 auto;
}

.guide-resourses .items-wrapper{
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 48px;
}

.guide-resourses .item{
    border-radius: 20px;
    padding: 30px 32px;
    box-shadow: 0 8px 17px 0 rgba(21, 33, 69, 0.11);
    text-align: center;
     transition: transform 0.3s ease;
     transform-origin: center center;
}

.guide-resourses .item:hover{
    box-shadow: 0px 20px 36px 0px rgba(21, 33, 69, 0.16);
    transform: rotate(1deg);
}

.guide-resourses .item h4{
    font-weight: 700;
    font-size: 28px;
    line-height: 129%;
    text-align: center;
    color: #27252c;
    margin: 30px 0 15px;
}

.guide-resourses .item p{
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #938fa1;
}

.guide-resourses span.icon{
    font-weight: 700;
    font-size: 42px;
    line-height: 124%;
}

.guide-users{
    padding: 90px 0;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #f2f5fa 100%);
}

.guide-users .subtitle{
    margin: 32px auto 64px;
    max-width: 646px;
}

.guide-users .items-wrapper{
    margin-bottom: 40px;
}

.guide-users .item{
    border-radius: 14px;
    padding: 24px 58px;
    width: 900px;
    height: 112px;
    box-shadow: 0 8px 17px 0 rgba(21, 33, 69, 0.11);
    background: #f7f7f8;
    display: flex;
    align-items: center;
    column-gap: 25px;
    text-align: left;
    margin: 0 auto 24px;
    transition: 0.2s linear all;
}

.guide-users .item:hover{
    box-shadow: 
        0px 20px 36px 0px rgba(21, 33, 69, 0.16);
    transform-origin: top right;
    transform: rotate(0.5deg);
}

.guide-users .item .icon{
    font-weight: 700;
    font-size: 42px;
    line-height: 124%;
    width: auto;
    height: auto;
}

.guide-users .item p{
    font-weight: 400;
    font-size: 18px;
    line-height: 167%;
    color: #555161;
}

.guide-users .item p.title{
    font-weight: 700;
    font-size: 18px;
    line-height: 133%;
    color: #27252c;
}

.guide-look{
    padding-top: 64px;
}

.guide-look .wrapper{
    background: linear-gradient(141deg, rgba(242, 210, 252, 0.45) 0%, #f2d2fc 100%);
    border-radius: 30px;
    padding: 96px 74px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
}

.guide-look h2{
    margin-bottom: 64px;
}

.guide-look h2 span.accent{
    background: #27252c;
}

.guide-look .item{
    margin-bottom: 32px;
}

.guide-look .item:last-child{
    margin-bottom: 0;
}

.guide-look h5{
    font-weight: 700;
    font-size: 18px;
    line-height: 111%;
    color: #27252c;
    margin-bottom: 10px;
}

.guide-look p{
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #555161;
    padding-left: 30px;
}
.guide-look span.icon{
    font-weight: 700;
    font-size: 18px;
    line-height: 111%;
    margin-right: 3px;
}

.guide-look .right-col{
    display: flex;
    align-items: flex-end;
    
}

.guide-look .right-col img{
    transform-origin: center center;
    transform: rotate(2deg);
    transition: 0.2s all linear;
}

.guide-look .right-col:hover img{
    transform: rotate(0deg);
    
}

.inside-guide{
    background: 
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(242, 245, 250, 1) 100%
    );
    padding: 90px 0;
}

.inside-guide h2{
    text-align: center;
}

.inside-guide p.subtitle{
    margin: 48px auto 64px;
    max-width: 702px;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: #27252C;
    text-align: center;
}

.inside-guide .subtitle .accent-text{
    color: #b12ccd;
    font-weight: 600;
}

        .bento-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            height: auto;
        }
        
        /* Card базові стилі */
        .card {
            position: relative;
            overflow: hidden;
            background: white;
            backdrop-filter: blur(24px);
            border: none;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            border-radius: 1.5rem;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .card:hover {
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            transform: scale(1.02);
        }

        .bento-grid .card svg{
            stroke: #ffffff;
        }
        
        .card-content {
            position: relative;
            z-index: 10;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        /* Hover ефекти для фонів */
        .card::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .card:hover::before {
            opacity: 1;
        }
        
        /* Іконки контейнер */
        .icon-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 1rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .icon-container::before {
            content: '';
            position: absolute;
            inset: -1rem;
            border-radius: 1.5rem;
            filter: blur(24px);
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .card:hover .icon-container::before {
            opacity: 1;
        }
        
        .card:hover .icon-container {
            transform: scale(1.1);
        }
        
        /* Специфічні стилі для карток */
        
        /* Typography Card */
        .typography-card {
            padding: 2rem;
        }
        
        .typography-card::before {
            background: linear-gradient(135deg, #eef2ff 0%, #f3e8ff 100%);
        }
        
        .typography-card .icon-container {
            width: 4rem;
            height: 4rem;
            background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
            margin-bottom: 1.5rem;
        }
        
        .typography-card .icon-container::before {
            background: linear-gradient(to right, rgba(199, 210, 254, 0.5) 0%, rgba(221, 214, 254, 0.5) 100%);
        }
        
        .typography-card:hover .icon-container {
            transform: scale(1.1) rotate(12deg);
        }
        
        .typography-card h3 {
                font-size: 24px;
                line-height: 26px;
                font-weight: 600;
            color: #27252C;
            margin-bottom: 0.75rem;
            transition: color 0.3s ease;
        }
        
        .typography-card:hover h3 {
            color: #4338ca;
        }
        
        /* Color Card */
        .color-card {
            padding: 1.5rem;
        }
        
        .color-card::before {
            background: linear-gradient(135deg, #fef2f2 0%, #fdf2f8 100%);
        }
        
        .color-card .icon-container {
            width: 3.5rem;
            height: 3.5rem;
            background: linear-gradient(135deg, #f43f5e 0%, #ec4899 100%);
            margin-bottom: 1rem;
        }
        
        .color-card .icon-container::before {
            background: linear-gradient(to right, rgba(254, 205, 211, 0.5) 0%, rgba(251, 207, 232, 0.5) 100%);
        }
        
        .color-card:hover .icon-container {
            transform: scale(1.1) rotate(-12deg);
        }
        
        .color-card h3 {
            font-size: 24px;
            line-height: 26px;
            font-weight: 600;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
            color: #27252C;
        }
        
        .color-card:hover h3 {
            color: #be185d;
        }
        
        .color-dots {
            margin-top: 1rem;
            display: flex;
            gap: 0.5rem;
        }
        
        .color-dot {
            width: 1.5rem;
            height: 1.5rem;
            border-radius: 50%;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .color-dot:nth-child(1) {
            background-color: #f43f5e;
        }
        
        .color-dot:nth-child(2) {
            background-color: #ec4899;
            transition-delay: 75ms;
        }
        
        .color-dot:nth-child(3) {
            background-color: #f97316;
            transition-delay: 150ms;
        }
        
        .card:hover .color-dot {
            transform: scale(1.1);
        }
        
        /* Layout Card */
        .layout-card {
            padding: 1.5rem;
        }
        
        .layout-card::before {
            background: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 100%);
        }
        
        .layout-card .icon-container {
            width: 3.5rem;
            height: 3.5rem;
            background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
            margin-bottom: 1rem;
        }
        
        .layout-card .icon-container::before {
            background: linear-gradient(to right, rgba(167, 243, 208, 0.5) 0%, rgba(153, 246, 228, 0.5) 100%);
        }
        
        .layout-card:hover .icon-container {
            transform: scale(1.1) rotate(12deg);
        }
        
        .layout-card h3 {
            font-size: 24px;
            line-height: 26px;
            font-weight: 600;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
            color: #27252C;
        }
        
        .layout-card:hover h3 {
            color: #047857;
        }
        
        .layout-grid {
            margin-top: 1rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.25rem;
        }
        
        .layout-item {
            height: 0.75rem;
            background-color: #a7f3d0;
            border-radius: 0.125rem;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .card:hover .layout-item {
            transform: scale(1.05);
        }
        
        /* Small cards базові стилі */
        .small-card {
            padding: 1.5rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .small-card:hover {
            transform: scale(1.05);
        }
        
        .small-card .icon-container {
            width: 3rem;
            height: 3rem;
            margin-bottom: 1rem;
        }
        
        .small-card:hover .icon-container {
            transform: scale(1.25);
        }
        
        .small-card h3 {
           font-size: 24px;
            line-height: 26px;
            font-weight: 600;
            color: #27252c;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }
        
        /* Responsive Card */
        .responsive-card::before {
            background: linear-gradient(135deg, #fffbeb 0%, #fefce8 100%);
        }
        
        .responsive-card .icon-container {
            background: linear-gradient(135deg, #f59e0b 0%, #eab308 100%);
        }
        
        .responsive-card .icon-container::before {
            background: linear-gradient(to right, rgba(252, 211, 127, 0.5) 0%, rgba(254, 240, 138, 0.5) 100%);
        }
        
        .responsive-card:hover {
            transform: scale(1.05) rotate(3deg);
        }
        
        .responsive-card:hover .icon-container {
            transform: scale(1.25) rotate(-12deg);
        }
        
        .responsive-card:hover h3 {
            color: #d97706;
            z-index: 555;
        }
        
        /* Handoff Card */
        .handoff-card::before {
            background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
        }
        
        .handoff-card .icon-container {
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
        }
        
        .handoff-card .icon-container::before {
            background: linear-gradient(to right, rgba(196, 181, 253, 0.5) 0%, rgba(221, 214, 254, 0.5) 100%);
        }
        
        .handoff-card:hover {
            transform: scale(1.05) rotate(-2deg);
        }
        
        .handoff-card:hover .icon-container {
            transform: scale(1.25) rotate(12deg);
        }
        
        .handoff-card:hover h3 {
            color: #7c3aed;
            z-index: 555;
        }
        
        /* Graphics Card */
        .graphics-card::before {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }
        
        .graphics-card .icon-container {
            background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
        }
        
        .graphics-card .icon-container::before {
            background: linear-gradient(to right, rgba(186, 230, 253, 0.5) 0%, rgba(147, 197, 253, 0.5) 100%);
        }
        
        .graphics-card:hover {
            transform: scale(1.05) rotate(-3deg);
        }
        
        .graphics-card:hover .icon-container {
            transform: scale(1.25) rotate(180deg);
        }
        
        .graphics-card:hover h3 {
            color: #0284c7;
            z-index: 555;
        }
        
        /* UX Logic Card */
        .ux-card {
            padding: 2rem;
        }
        
        .ux-card::before {
            background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 100%);
        }
        
        .ux-card .card-content {
            flex-direction: row;
            align-items: center;
            gap: 1.5rem;
        }
        
        .ux-card .icon-container {
            width: 5rem;
            height: 5rem;
            background: linear-gradient(135deg, #14b8a6 0%, #10b981 100%);
            border-radius: 1.5rem;
        }
        
        .ux-card .icon-container::before {
            background: linear-gradient(to right, rgba(153, 246, 228, 0.5) 0%, rgba(167, 243, 208, 0.5) 100%);
            inset: -1.5rem;
        }
        
        .ux-card:hover {
            transform: scale(1.02) rotate(1deg);
        }
        
        .ux-card:hover .icon-container {
            transform: scale(1.1) rotate(-6deg);
        }
        
        .ux-card h3 {
            font-size: 24px;
            line-height: 26px;
            font-weight: 600;
            color: #27252C;
            margin-bottom: 0.75rem;
            transition: color 0.3s ease;
        }
        
        .ux-card:hover h3 {
            color: #0f766e;
        }
        
        .ux-tags {
            margin-top: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .ux-tag {
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 500;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .ux-tag:nth-child(1) {
            background-color: #ccfbf1;
            color: #0f766e;
        }
        
        .ux-tag:nth-child(2) {
            background-color: #d1fae5;
            color: #065f46;
            transition-delay: 75ms;
        }
        
        .card:hover .ux-tag {
            transform: scale(1.05);
        }
        
        .description {
            font-size: 18px;
            line-height: 150%;
            font-weight: 400;
            color: #938fa1;
            z-index: 555;
        }
        
        /* SVG іконки */
        .icon {
            width: 100%;
            height: 100%;
            fill: white;
        }


       
        
        /* Плавні переходи для всіх елементів */
        .layout-item:nth-child(1) { transition-delay: 0ms; }
        .layout-item:nth-child(2) { transition-delay: 50ms; }
        .layout-item:nth-child(3) { transition-delay: 100ms; }
        .layout-item:nth-child(4) { transition-delay: 150ms; }
        .layout-item:nth-child(5) { transition-delay: 200ms; }
        .layout-item:nth-child(6) { transition-delay: 250ms; }
        .layout-item:nth-child(7) { transition-delay: 300ms; }
        .layout-item:nth-child(8) { transition-delay: 350ms; }
        .layout-item:nth-child(9) { transition-delay: 400ms; }

.main-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            max-width: 72rem;
            margin: 0 auto;
            align-items: center;
        }
        
        .benefits-list {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        /* Benefit Card Styles */
        .benefit-card {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
            border: none;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            border-radius: 1rem;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            transform: translateY(0) rotate(0);
        }
        
        .benefit-card:hover {
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            transform: translateY(-0.75rem) rotate(1deg);
        }
        
        .benefit-card-content {
            position: relative;
            padding: 1.5rem;
        }
        
        /* Floating background elements */
        .benefit-card::before {
            content: '';
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 5rem;
            height: 5rem;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transition: transform 0.7s ease;
        }
        
        .benefit-card:hover::before {
            transform: scale(1.5);
        }
        
        .benefit-card::after {
            content: '';
            position: absolute;
            bottom: -1.5rem;
            left: -1.5rem;
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transition: transform 0.5s ease;
        }
        
        .benefit-card:hover::after {
            transform: scale(1.25);
        }
        
        .benefit-content {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            position: relative;
            z-index: 10;
        }
        
        .benefit-icon-container {
            position: relative;
            width: 3rem;
            height: 3rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            flex-shrink: 0;
            transition: all 0.5s ease;
        }
        
        .benefit-card:hover .benefit-icon-container {
            transform: scale(1.1) rotate(12deg);
        }
        
        .benefit-icon-container::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 0.75rem;
            background: rgba(255, 255, 255, 0.2);
        }
        
        .benefit-icon {
            position: relative;
            z-index: 10;
            width: 1.25rem;
            height: 1.25rem;
            color: white;
            transition: transform 0.3s ease;
        }
        
        .benefit-card:hover .benefit-icon {
            transform: scale(1.1);
        }
        
        /* Glow effect */
        .benefit-icon-container::after {
            content: '';
            position: absolute;
            inset: -0.5rem;
            border-radius: 0.75rem;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .benefit-card:hover .benefit-icon-container::after {
            opacity: 0.3;
        }
        
        /* Specific colors for benefit icons */
        .benefit-icon-1 {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
        }
        
        .benefit-icon-1::after {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
        }
        
        .benefit-icon-2 {
            background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
        }
        
        .benefit-icon-2::after {
            background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
        }
        
        .benefit-icon-3 {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        }
        
        .benefit-icon-3::after {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        }
        
        .benefit-icon-4 {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        }
        
        .benefit-icon-4::after {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        }
        
        .benefit-text h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }
        
        .benefit-card:hover .benefit-text h3 {
            color: #111827;
        }
        
        .benefit-text p {
            color: #4b5563;
            line-height: 1.6;
            transition: color 0.3s ease;
        }
        
        .benefit-card:hover .benefit-text p {
            color: #374151;
        }
        
        /* Animated border */
        .benefit-card-border {
            position: absolute;
            inset: 0;
            border-radius: 1rem;
            border: 2px solid transparent;
            transition: all 0.5s ease;
        }
        
        .benefit-card:hover .benefit-card-border {
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        /* Guide Card Styles */
        .guide-card {
            background: linear-gradient(135deg, #f3f0ff 0%, #e0f2fe 25%, #fce7f3 50%, #fefce8 75%, #f3f0ff 100%);
            border: 2px solid #e5d9ff;
            border-radius: 1.5rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            transform: rotate(2deg);
            transition: transform 0.5s ease;
        }
        
        .guide-card:hover {
            transform: rotate(0deg);
        }
        
        .guide-card-content {
            padding: 2rem;
        }
        
        .guide-inner {
            background: white;
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .guide-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .guide-icon {
            width: 4rem;
            height: 4rem;
            margin: 0 auto 1rem;
            background: linear-gradient(135deg, #a855f7 0%, #0ea5e9 100%);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .guide-icon svg {
            width: 1.5rem;
            height: 1.5rem;
            color: white;
        }
        
        .guide-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }
        
        .guide-header p {
            color: #4b5563;
        }
        
        .guide-rules {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            font-size: 0.875rem;
            color: #4b5563;
            margin-bottom: 1rem;
        }
        
        .guide-rule {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .guide-rule-name {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .checkmark {
            color: #10b981;
            font-weight: 600;
        }
        
        .guide-rule-count {
            font-weight: 500;
        }
        
        .rule-count-1 { color: #a855f7; }
        .rule-count-2 { color: #0ea5e9; }
        .rule-count-3 { color: #f472b6; }
        .rule-count-4 { color: #fbbf24; }
        .rule-count-5 { color: #a855f7; }
        .rule-count-6 { color: #0ea5e9; }
        .rule-count-7 { color: #f472b6; }
        
        .guide-totals {
            border-top: 1px solid #e5e7eb;
            padding-top: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .guide-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .guide-total span:first-child {
            font-weight: 600;
        }
        
        .guide-total span:last-child {
            font-weight: 700;
            color: #1f2937;
        }
        
        /* Responsive Design */
        @media (min-width: 768px) {
            .header h2 {
                font-size: 3rem;
            }
        }
        
        @media (min-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .guide-section {
                order: -1;
            }
            
            .header h2 {
                font-size: 3.5rem;
            }
        }
        
        /* SVG Icons */
        .icon {
            width: 100%;
            height: 100%;
            fill: currentColor;
        }

.guide-about.about .social-media a{
    background-color: rgba(255, 255, 255, 0.6);
}

.guide-about.about .social-media a:hover{
    background-color: #ffffff;
}

.guide-about h2 .title-accent{
    background:  rgba(227, 158, 255, 0.08);
}

.guide-about .about-text span.note-text{
    background: rgba(227, 158, 255, 0.08);
    border-radius: 20px;
    padding: 10px 22px 10px 22px;
    color: #ffffff;
    font-size: 20px;
    line-height: 38px;
}

.guide-about .about-text span.accent-text{
    font-weight: 600;
    color: #b12ccd;
}

.guide-about .about-text p{
    margin-bottom: 32px;
}

.guide-about .about-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.guide-about .about-text ul li {
  position: relative;
  padding-left: 28px;
  font-weight: 400;
    font-size: 18px;
    line-height: 128%;
    color: #b9b7c2;
    margin-bottom: 16px;
}
.guide-about .about-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 21px;
  transform: translateY(-50%);
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="21" viewBox="0 0 20 21" fill="none"><path d="M18.1678 8.83332C18.5484 10.7011 18.2772 12.6428 17.3994 14.3348C16.5216 16.0268 15.0902 17.3667 13.3441 18.1311C11.5979 18.8955 9.64252 19.0381 7.80391 18.5353C5.9653 18.0325 4.35465 16.9145 3.24056 15.3678C2.12646 13.8212 1.57626 11.9394 1.68171 10.0361C1.78717 8.13294 2.54189 6.3234 3.82004 4.9093C5.09818 3.4952 6.82248 2.56202 8.70538 2.26537C10.5883 1.96872 12.516 2.32654 14.167 3.27916" stroke="%2311845B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M5.83398 10.8333L8.7186 13.8333L18.334 3.83325" stroke="%2311845B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center;
}

.guide-benefit{
    padding: 90px 0;
}

.guide-benefit h2{
    text-align: center;
    margin-bottom: 64px;
}

.guide-benefit svg{
    stroke: #ffffff;
}

.guide-reviews{
    padding: 32px 0 96px;
}

.guide-reviews h2{
    text-align: center;
}

.guide-reviews .subtitle{
    margin: 32px auto 64px;
    max-width: 380px;
    text-align: center;
}

.guide-reviews .wrapper{
    display: flex;
    justify-content: space-between;
    max-width: 1004px;
    margin: 0 auto;
}

.guide-reviews .item{
    border: 1px solid #dad8df;
    border-radius: 10px;
    padding: 10px;
    width: 170px;
    box-shadow: 0 20px 36px 0 rgba(187, 114, 168, 0.2);
    background: #fff;
    transform: rotate(5deg);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #767186;
}

.guide-reviews .item:nth-child(odd){
    transform: rotate(5deg) scale(1, 1);
    transition: 0.2s linear all;
}

.guide-reviews .item:nth-child(odd):hover{
    transform: rotate(0.002deg) scale(1, 1);
}

.guide-reviews .item:nth-child(even){
    transform: rotate(-5deg) scale(1, 1);
    transition: 0.2s linear all;
}

.guide-reviews .item:nth-child(even):hover{

    transform: rotate(0.002deg) scale(1, 1);
}

.guide-reviews .item svg{
    display: block;
    margin-bottom: 8px;
}

.selling{
    padding: 24px 0;
}

.selling h2{
    text-align: center;
}

.selling .wrapper{
    border-radius: 30px;
    padding: 96px 74px;
    background: linear-gradient(141deg, rgba(242, 210, 252, 0.45) 0%, #f2d2fc 100%);
}

.selling .subtitle{
    border: 1px solid #f2d2fc;
    border-radius: 15px;
    padding: 8px 16px;
    width: fit-content;
    text-align: center;
    height: 40px;
    background: linear-gradient(128deg, #f7f7fe 0%, #f1f8fe 48.56%, #fbf3f8 100%);
    font-weight: 500;
    font-size: 12px;
    line-height: 200%;
    color: #44074b;
    margin: 24px auto 28px;
}

.selling .tariff{
    border-radius: 20px;
    padding: 30px 32px;
    width: 438px;
    box-shadow: 0 20px 36px 0 rgba(21, 33, 69, 0.16);
    background: #fff;
    position: relative;
    margin: 0 auto;
}

.selling .tariff span{
    display: block;
}

.selling .tariff span.note{
    border-radius: 0 20px;
    padding: 10px 24px;
    height: 37px;
    background: linear-gradient(129deg, #dd69f1 0%, #5478e3 100%);
    position: absolute;
    right: 0;
    top: 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 129%;
    text-align: right;
    color: #fff;
}

.selling .tariff span.sale{
    font-weight: 700;
    font-size: 54px;
    line-height: 130%;
    text-align: center;
    color: #27252c;
    margin-bottom: 16px;
}

.selling .tariff .sale-block span.price{
    font-weight: 700;
    font-size: 54px;
    line-height: 130%;
    text-align: center;
    color: #27252c;
    margin-bottom: 16px;
}

.selling .tariff .sale-block span.sale{
    color: #938fa1;
    font-size:  24px;
    line-height: 38px;
    font-weight: 400;
    text-decoration: line-through;
    text-align: center;
    margin-bottom: 0;
}

.selling .tariff .sale-note{
    color: #767186;
    font-weight: 500;
    font-size: 16px;
    line-height: 112%;
    text-align: center;
}

.selling .tariff .sale-block .sale-note{
    font-weight: 500;
    font-size: 16px;
    line-height: 112%;
    text-align: center;
    color: #11845b;
}

.selling .tariff ul{
    margin: 48px 0;
    list-style: none;
}

.selling .tariff ul li{
    font-weight: 400;
    font-size: 18px;
    line-height: 111%;
    padding-left: 35px;
    color: #27252c;
    margin-bottom: 18px;
    position: relative;
}

.selling .tariff ul li:last-child{
    margin-bottom: 0;
}

.selling .tariff ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 21px;
    transform: translateY(-50%);
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="21" viewBox="0 0 20 21" fill="none"><path d="M18.1678 8.83332C18.5484 10.7011 18.2772 12.6428 17.3994 14.3348C16.5216 16.0268 15.0902 17.3667 13.3441 18.1311C11.5979 18.8955 9.64252 19.0381 7.80391 18.5353C5.9653 18.0325 4.35465 16.9145 3.24056 15.3678C2.12646 13.8212 1.57626 11.9394 1.68171 10.0361C1.78717 8.13294 2.54189 6.3234 3.82004 4.9093C5.09818 3.4952 6.82248 2.56202 8.70538 2.26537C10.5883 1.96872 12.516 2.32654 14.167 3.27916" stroke="%2311845B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M5.83398 10.8333L8.7186 13.8333L18.334 3.83325" stroke="%2311845B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center;
}

.selling .tariff span.safe-payment{
    margin-top: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 171%;
    text-align: center;
    color: #767186;
}

.selling .tariff a.btn-pink{
    text-align: center;
    margin: 0 auto;
    max-width: 270px;
    display: block;
}


 @media screen and (max-width: 1400px){
            .bento-grid{
                gap: 1rem;
            }
            .small-card h3, .layout-card h3, .color-card h3, .typography-card h3, .ux-card h3{
                font-size: 20px;
            }

            .description{
                font-size: 16px;
            }
        }

        @media screen and (max-width: 1350px){
            .banner-guide h1{
                font-size: 46px;
                line-height: 56px;
            }

            h2{
                font-size: 36px;
            }

            .header h2{
                font-size: 36px;
            }
        }

        @media screen and (max-width: 1200px){
            .guide-look .right-col{
                align-items: center;
            }
        }
       
        @media (min-width: 768px) {
            .section {
                padding: 5rem 1.5rem;
            }
            
            .bento-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .typography-card {
                grid-column: span 2;
            }
            
            .color-card {
                grid-column: span 2;
            }
            
            .layout-card {
                grid-column: span 2;
            }
            
            .responsive-card {
                grid-column: span 1;
            }
            
            .handoff-card {
                grid-column: span 1;
            }
            
            .graphics-card {
                grid-column: span 1;
            }
            
            .ux-card {
                grid-column: span 2;
            }
        }
        
        @media (min-width: 1024px) {
            .section {
                padding: 5rem 2rem;
            }
            
            .bento-grid {
                grid-template-columns: repeat(6, 1fr);
                height: 600px;
            }
            
            .typography-card {
                grid-column: span 2;
      
            }
            
            .color-card {
                grid-column: span 2;

            }
            
            .layout-card {
                grid-column: span 2;

            }
            
            .responsive-card {
                grid-column: span 1;

            }
            
            .handoff-card {
                grid-column: span 1;

            }
            
            .graphics-card {
                grid-column: span 1;
  
            }
            
            .ux-card {
                grid-column: span 3;
                
            }

           

           

        }

        @media screen and (max-width: 1024px){
            .bento-grid {
                grid-template-columns: repeat(6, 1fr);
                height: 600px;
            }
            .typography-card {
                grid-column: span 3;
                padding: 1.2rem;
            }
            
            .color-card {
                grid-column: span 3;
                padding: 1.2rem;
            }
            
            .layout-card {
                grid-column: span 2;
                 padding: 1.2rem;
            }
            
            .responsive-card {
                grid-column: span 2;
                 padding: 1.2rem;
            }
            
            .handoff-card {
                grid-column: span 2;
                 padding: 1.2rem;
            }
            
            .graphics-card {
                grid-column: span 2;
                 padding: 1.2rem;
            }
            
            .ux-card {
                grid-column: span 4;
                 padding: 1.2rem;
            }

            .icon-container{
                width: 3rem!important;
                height: 3rem!important;
            }

            .description{
                font-size: 14px;
            }

            .layout-item:nth-child(n+7){
                display: none;
            }

            .layout-grid{
                margin-top: 0.5rem;
            }

            .about .slider-image{
                max-width: 370px;
            }

            .guide-about .about-text ul li{
                font-size: 16px;
            }

            .guide-resourses .item h4{
                font-size: 24px;
                line-height: 120%;
            }

            .guide-look .wrapper{
                padding: 80px 30px;
            }

            .guide-look .item{
                margin-bottom: 20px;
            }

            .guide-look h2{
                margin-bottom: 30px;
            }

        }

         @media screen and (max-width: 992px){
            .guide-reviews .item{
                width: 150px;
            }
            .guide-look .wrapper{
                grid-template-columns: 1fr;
                row-gap: 30px;
            }
            .guide-look .right-col{
                justify-content: center;
            }

            .guide-resourses .items-wrapper{
                column-gap: 30px;
            }
            .guide-resourses .item{
                padding: 20px;
            }
            .guide-users .item{
                width: 100%;
            }
        }

        @media screen and (max-width: 768px){
           /* header{
                position: fixed;
                
            }
*/
            header.mobile-scroll{
                background-color: #ffffff;
            }
            .icon-container {
                width: 2.5rem !important;
                height: 2.5rem !important;
            }

            .about{
                padding: 60px 0;
            }

            h2 {
                font-size: 30px;
            }
            .header h2{
                font-size: 30px;
            }
            p.subtitle{
                font-size: 16px;
                
            }

            .inside-guide p.subtitle{
                margin: 30px auto 44px;
                font-size: 16px;
                line-height: 26px;
                
            }
            .guide-resourses .item h4 {
                font-size: 18px;
                
            }

            .guide-resourses .item p{
                font-size: 14px;

            }

            .guide-users .item p.title{
                font-size: 16px;
                margin-bottom: 7px;
            }

            .guide-users .item p{
                font-size: 14px;
            }

            .guide-look p{
                font-size: 14px;
            }

            .benefit-text p{
                font-size: 14px;
            }

            .guide-reviews .item{
                width: 130px;
                font-size: 12px;
            }

            .selling .tariff ul li{
                font-size: 16px;
            }

            .selling .tariff .sale-block span.price{
                font-size: 46px;
            }

            .selling .tariff .sale-block span.sale{
                font-size: 20px;
            }

            .selling .tariff ul{
                margin: 30px 0;
            }
        }

@media screen and (max-width: 560px){
    section{
        overflow: hidden;
    }
    .banner-guide{
        padding: 80px 0 60px;
        overflow: hidden;
        position: relative;
    }
    /*.ellipse-160, .ellipse-159, .ellipse-158{
        width: 125.65px;
        height: 104.06px;
    }*/
    .ellipse-160{
        left: 10%;
        top: 30%;
    }
    .ellipse-159{
        left: 20%;
        top: 50%;
    }
    .ellipse-158{
        left: 10%;
    }
    .banner-guide h1 {
        font-size: 27px;
        line-height: 38px;
    }
    .banner-guide .info-text{
        font-size: 16px;
        line-height: 26px;
    }
    .inside-guide{
        padding: 50px 0;
    }
    .bento-grid{
        height: auto;
    }
    .layout-card, .responsive-card, .handoff-card, .graphics-card {
        grid-column: span 3;
    }
    .ux-card{
        grid-column: span 6;
    }
    .ux-tag{
        font-size: 0.6rem;
    }
    .small-card h3, .layout-card h3, .color-card h3, .typography-card h3, .ux-card h3 {
        font-size: 16px;
    }
    .description{
        font-size: 12px;
    }
    .guide-about .about-text span.note-text{
        font-size: 12px;
    }

    .selling .wrapper{
        padding: 40px 20px;
    }
    .selling .tariff{
        width: 100%;
    }
    .selling .tariff ul li{
        font-size: 14px;
    }

    .btn-pink{
        padding: 18px 10px 18px 14px;
        font-size: 14px;
    }
    .btn-pink svg {
        margin-left: 5px;
        max-width: 10px;
        margin-bottom: -2px;
    }

    .guide-resourses {
        padding: 60px 0 30px;
    }

    .guide-resourses .items-wrapper{
        grid-template-columns: 1fr;
        row-gap: 20px;
    }

    .guide-resourses .note-text{
        padding: 8px 10px;
    }

    .guide-users .item{
        height: auto;
        padding: 20px;
    }

    img.emoji{
        min-width: 1em;
    }

    .guide-reviews .wrapper{
        display: block;
    }

    .guide-reviews .item{
        margin: 0 20px;
    }

    .guide-reviews .slick-list{
        padding: 30px 0 40px;
        padding-bottom: 40px!important;
        padding-top: 30px!important;
    }
    .guide-reviews .subtitle{
        margin: 30px auto 40px;
    }
    .guide-reviews{
        padding: 30px 0 40px;
    }
}

.woocommerce-MyAccount-navigation{
    display: none;
}


/*.loader {
    display: none;
     width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid #FFF;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: absolute;
}
.loader::after {  
    content: '';  
    box-sizing: border-box;
     position: absolute;
     left: 0;
     top: 0;
     width: 48px;
     height: 48px;
    border-radius: 50%;
    border-left: 4px solid #B12CCD;
    border-bottom: 4px solid transparent;
    animation: rotation 0.5s linear infinite reverse;
}
@keyframes rotation {  
    0% {    transform: rotate(0deg);  }
    100% {    transform: rotate(360deg); }}
*/
.page-template-guide-template header.scrolled{
    position: static;
}

.page-template-guide-template .contact-form-question{
    padding-top: 64px;
}

/* REGISTRATION PAGE */
.register-login{
    padding: 90px 0;
}

.hidden {
  display: none !important;
}

.register-login h2{
    font-weight: 700;
    font-size: 72px;
    line-height: 119%;
    color: #27252c;
}

.register-login div.subtitle{
    margin: 12px 0 48px;
}

.register-login .subtitle p{
    font-weight: 400;
    font-size: 18px;
    line-height: 167%;
    max-width: 469px;
    color: #27252C;
}

.register-login .subtitle .underline-accent{
    font-weight: 600;
    text-decoration: underline; 
}

.register-login input{
    border-radius: 11px;
    padding: 18px 16px;
    width: 520px;
    height: 54px;
    background-color: #f7f7f8;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
    background-color: #f7f7f8;
}

input:focus-visible{
    outline: none;
}

.register-login label{
    font-weight: 500;
    font-size: 16px;
    line-height: 112%;
    color: #27252C;
    display: block;
    margin-bottom: 5px;
}

.register-login input#email{
    margin-bottom: 24px;
}

.register-login button{
    margin: 24px 0 32px;
    cursor: pointer;
}

.register-login button.btn-pink:hover{
    padding: 18px 22px 18px 24px;
}
.register-login span.note{
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #938FA1;
    
}

.register-login span.note a{
    color: #27252C;
}

.register-login .login-form, .register-login .register-form-link{
    font-weight: 600;
    font-size: 18px;
    line-height: 167%;
    color: #27252C;
    margin-top: 48px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: 0.3s all linear;
}

.register-login .login-form:hover, .register-login .register-form-link:hover{
    color: #CB4CE9;
}

.register-login form.login .input-text{
    margin-bottom: 24px;
}

.register-login form.login .woocommerce-form__input-checkbox{
    width: 25px;
    height: 25px;
}

.register-login .woocommerce-form-login__rememberme{
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.register-login .woocommerce-form-login__rememberme span{
    font-weight: 500;
    font-size: 16px;
    line-height: 112%;
    color: #27252C;
}

.register-login .form-error{
    color: #DC2B2B;
    margin-top: 24px;
}

.error-404 .wrapper{
    display: flex;
}

.error-404 .left-column, .error-404 .right-column{
    flex-basis: 50%;
    max-width: 50%;
}

.error-404 h2{
    font-weight: 700;
    font-size: 42px;
    line-height: 124%;
}

.error-404 .right-column{
    text-align: center;
}

.error-404 .right-column img{
    transform-origin: center center;
    transform: rotate(2deg);
    transition: 0.2s all linear;
    display: inline-block;
    margin-bottom: 20px;
}

.error-404 .right-column img:hover{
    transform: rotate(0deg);
}

.woocommerce-order-pay main{
    padding-bottom: 90px;
}

.woocommerce-order-pay p.note{
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 48px;
    font-weight: 400;
    font-size: 18px;
    line-height: 167%;
    color: #27252C;
}

.woocommerce-order-pay h1.entry-title{
    margin-bottom: 0;
}

.woocommerce table.shop_table th, .woocommerce table.shop_table td{
    color: #27252C;
}

#payment .wc_payment_methods.payment_methods.methods{
    display: none;
}

.woocommerce #payment #place_order, .woocommerce-page #payment #place_order{
    display: inline-block;
    background: linear-gradient(90deg, rgba(228, 118, 255, 1) 0%, rgba(243, 78, 204, 1) 100%);
    border-radius: 50px;
    padding: 18px 22px 18px 24px;
    box-shadow: 0px 14px 35.5px 0px rgba(238, 94, 224, 0.4);
    color: #ffffff;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    text-align: center;
    transition: all linear 0.3s;
}

.woocommerce #payment #place_order:hover, .woocommerce-page #payment #place_order:hover {
    transform: rotate(1deg);
    transform-origin: right bottom;
    color: #ffffff;
    box-shadow: 0px 20px 39px 0px rgba(238, 94, 224, 0.5);
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment{
    background: transparent;
}

.woocommerce-privacy-policy-text p{
    color: #27252C;
}

.woocommerce-form-login .woocommerce-error{
    padding: 0;
    border-top: none;
    background: transparent;
    margin: 24px 0 0;
}

.woocommerce-form-login .woocommerce-error:before{
    display: none;
}

.woocommerce-form-login .woocommerce-error li{
    color: #DC2B2B;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
}

.woocommerce-ResetPassword .woocommerce-Button.btn-pink{
    display: inline-block!important;
    background: linear-gradient(90deg, rgba(228, 118, 255, 1) 0%, rgba(243, 78, 204, 1) 100%)!important;
    border-radius: 50px!important;
    padding: 18px 22px 18px 24px!important;
    box-shadow: 0px 14px 35.5px 0px rgba(238, 94, 224, 0.4)!important;
    color: #ffffff!important;
    font-size: 16px!important;
    line-height: 18px!important;
    font-weight: 700!important;
    margin: 24px 0 32px;
}

.woocommerce-ResetPassword input {
    border-radius: 11px!important;
    padding: 18px 16px!important;
    width: 85%!important;
    height: 54px!important;
    background-color: #f7f7f8!important;
        border: 1px solid #ccc!important;
}

.woocommerce-ResetPassword p{
    font-weight: 400;
    font-size: 18px;
    line-height: 167%;
    color: #27252C;
    max-width: 600px;
}

.woocommerce-ResetPassword label {
    font-weight: 500;
    font-size: 16px;
    line-height: 112%;
    color: #27252C;
    display: block;
    margin-bottom: 5px;
}

.woocommerce-ResetPassword .woocommerce-form-row--first{
    margin-top: 24px!important;
}

.woocommerce-lost-password .woocommerce-message{
    border-top-color: transparent;
    background-color: transparent;
    padding: 0;
    color: #27252C;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
}

.woocommerce-lost-password .woocommerce-message:before{
    display: none;
}

.woocommerce-lost-password main p{
    font-weight: 400;
    font-size: 18px;
    line-height: 167%;
    max-width: 469px;
    color: #27252C;
    max-width: 600px;
    margin-bottom: 60px;
}

.woocommerce form .show-password-input, .woocommerce-page form .show-password-input{
    right: 3rem;
}

.woocommerce-lost-password p.new-password-col{
    margin-top: 0!important;
}

@media screen and (max-width: 1200px){
    .error-404 h2{
        font-size: 32px;
    }

    .register-login input{
        max-width: 100%;
    }

    .error-404 .wrapper{
        column-gap: 20px;
    }
    .woocommerce form .show-password-input, .woocommerce-page form .show-password-input{
        right: 2.5rem;
    }
}

@media screen and (max-width: 768px){
    .error-404 .wrapper{
        display: block;
    }

    .error-404 .right-column, .error-404 .left-column{
        max-width: 100%;
    }

    .error-404 .btn-pink{
        padding: 18px 22px 18px 24px;
    }

    .register-login h2{
        font-size: 52px;
    }

    .register-login h2{
        font-size: 52px;
    }
}

.woocommerce-LostPassword.lost_password a{
    text-decoration: underline;
}

@media screen and (max-width: 500px){
    .woocommerce form .show-password-input, .woocommerce-page form .show-password-input{
        right: 2.5rem;
    }
}

.woocommerce-account .woocommerce-MyAccount-content{
    width: 100%;
    margin-bottom: 50px;
}

.woocommerce-MyAccount-content .woocommerce-message{
    border-top-color: transparent;
    background-color: transparent;
    padding: 0;
    color: #27252C;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
}

.woocommerce-message::before{
    display: none;
}

.woocommerce-lost-password h1.entry-title{
    font-size: 56px;
    line-height: 76px;
    margin-bottom: 0;
}

@media screen and (max-width: 768px){
    .woocommerce-lost-password h1.entry-title{
        font-size: 36px;
        line-height: 56px;

    }
}