section {
    border-radius: 0 0 30px 30px;
    position: relative;
}
/* Trick for borders for each section */
section:not(:first-of-type) {
    margin-top: -50px;
}
section:nth-child(0) { z-index: 40; }
section:nth-child(1) { z-index: 39; }
section:nth-child(2) { z-index: 38; }
section:nth-child(3) { z-index: 37; }
section:nth-child(4) { z-index: 36; }
section:nth-child(5) { z-index: 35; }

.content-wrapper {
    background: url("../img/ellipse.svg") right;
}
.content-wrapper .content-inner {
    width: 600px;
    margin: 108px auto 0 auto;
    padding-top: 56px;
    padding-bottom: 86px;
}
.page-faq-new .content-wrapper {
    background: #ffffff;
}
.page-faq-new .content-wrapper .content-inner {
    width: 757px;
    padding-bottom: 40px;
}
.page-product h1,
.page-product h2,
.page-faq-new h1,
.page-faq-new h2 {
    font-family: Benzin-Semibold, sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #262625;
}
.content-wrapper h1 {
    margin-bottom: 16px;
}
.content-wrapper .subtitle {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    color: #443344;
    width: 235px;
    margin-bottom: 16px;
    opacity: 56%;
}
.content-wrapper .subtext {
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: #434A53;
    max-width: 517px;
    margin-bottom: 24px;
    /*-webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);*/
    /*mask-image: linear-gradient(to bottom, black 50%, transparent 100%);*/
    position: relative;
    /*transition: max-height 0.3s ease;*/
}
.page-faq-new .content-wrapper .subtext {
    max-width: 744px;
}

/*hide last string*/
.content-wrapper .subtext.hidden-text:not(.open)::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 30px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.3) 0%, rgba(255,255,255, 1) 40%);
}
.content-wrapper .js-toggle-btn.open {
    /*margin-bottom: 40px;*/
}
.content-wrapper .subtext > p {
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: #434A53;
}
.content-wrapper .hidden-text {
    overflow: hidden;
    /*max-height: 170px;*/
    /*transition: max-height 0.3s ease;*/
    height: 170px;
    transition: height 0.3s ease;
}
.content-wrapper .hidden-text.open {
    /*max-height: max-content;*/
    height: auto;
}
.content-wrapper button {
    border: 1px solid rgba(32, 144, 217, 0.24);
    /*padding: 24px 32px;*/
    padding: 20.5px 38px;
    cursor: pointer;
    border-radius: 512px;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    color: #2090D9;
    display: inline-flex;
    align-items: center;
}
.content-wrapper button:hover {
    color: #ffffff;
    background-color: #2090D9;
}
.content-wrapper button .arrow_down {
    content: url('../img/arrow_down.svg');
    margin-left: 6px;
    margin-top: 3px;
}
.content-wrapper button:hover .arrow_down {
    /*filter:*/
    content: url('../img/arrow_down_white.svg');
}
.content-wrapper button.open .arrow_down {
    transform: scaleY(-1);
}

.video-wrapper {
    background-color: rgba(60, 158, 221, 0.82);
}
.video-preview {
    width: 100%;
    height: auto;
    opacity: 32%;
    position: relative;
    border-radius: 0 0 30px 30px;
    display: block;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.video-wrapper .play-button:hover {
    /*transition: 0.4s ;*/
}
.video-wrapper .play-button:hover circle {
    fill: #2090D9;
    transition: fill 0.3s ease;
}
.video-wrapper .play-button:hover path {
    fill: #ffffff;
    /*transition: fill 0.3s ease;*/
}

.cards-wrapper {
    background-color: #ffffff;
    max-width: 960px;
    margin: 0 auto;
}
.cards-wrapper .cards-inner {
    margin: 132px auto 86px auto;
}
.cards-wrapper .title-wrapper {
    width: 600px;
    margin: 0 auto;
}
.cards-wrapper h2 {
    margin-bottom: 40px;
}
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0;
    column-gap: 24px;
}
.cards .card {
    width: 300px;
    position: relative;
}
.cards .card:hover {

}
.cards .card-hover {
    padding: 40px;
}
.cards:nth-child(5) {
    padding: 25px;
}
.cards .card:hover .card-hover {
    background-color: #2090D9;
    box-shadow: 0 32px 64px 0 rgba(1, 161, 255, 0.16);
    border-radius: 32px;
    cursor: default;

    position: absolute;
    width: 300px;
    z-index: 10;
    transition: width 0.5s ease;
}
.cards .card:hover {
    transition: width 0.5s ease;
}
.card .icon {
    background: url("../img/apple-touch-icon-precomposed.png") no-repeat;
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.card .card-title {
    /*font-family: Golos Text VF;*/
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #022028;
}
.card .card-text {
    /*font-family: Golos;*/
    font-size: 16px;
    font-weight: 400;
    color: #656D77;
}
.cards .card:hover .card-title,
.cards .card:hover .card-text {
    color: #ffffff;
}
.cards .card:hover .icon {
    background: url("../img/apple-touch-icon-precomposed.png") no-repeat;
}
.cards .card-button {
    width: 300px;
}
.cards .card-button .button {
    padding: 20px 0;
}
/*.cards .card-button a {*/
/*    width: 100%;*/
/*    padding: 20px 0;*/
/*    text-align: center;*/
/*    background-color: #2090D9;*/
/*    color: #ffffff;*/
/*    text-decoration: none;*/
/*    border-radius: 512px;*/
/*    display: block;*/

/*    !*font-family: Inter;*!*/
/*    font-size: 16px;*/
/*    font-weight: 500;*/
/*}*/
/*.cards .card-button a:hover {*/
/*    background-color: rgba(32, 144, 217, 0.75);*/
/*}*/

section.gallery-wrapper {
    margin-top: 0;
}
.gallery-wrapper {
    background-color: #F5F7FA;
}
.gallery-wrapper .gallery-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 88px 0 118px 0;
    /*position: relative;*/
    overflow-x: visible;
}
.gallery-wrapper h2 {
    max-width: 498px;
    margin-bottom: 40px;
}
.gallery {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    width: 100vw;
}
.gallery-item {
    max-width: 300px;
}
.gallery-preview {
    cursor: pointer;
    position: relative;
    margin-bottom: 16px;
}
.gallery-preview img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
}
.gallery-preview:hover .play-button circle {
    fill: #2090D9;
    transition: fill 0.3s ease;
}
.gallery-preview:hover .play-button path {
    fill: #ffffff;
    /*transition: fill 0.3s ease;*/
}
.gallery-item .gallery-title {
    font-family: Benzin-Semibold, sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.faq-wrapper {
    background-color: #ffffff;
}
.faq-wrapper .faq-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 122px 0 51px 0;
}
.page-faq-new section {
    margin-top: 0;
}
.page-faq-new .faq-wrapper .faq-inner {
    padding-bottom: 0;
    padding-top: 0;
    max-width: 800px;
}
.faq-wrapper h2 {
    margin-bottom: 40px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background-color: rgba(245, 247, 250, 1);
    border-radius: 24px;
    /*padding: 40px 16px 40px 40px;*/
    padding: 40px;
    transition: background 0.3s, max-height 0.4s ease, height 0.4s ease;
    cursor: pointer;
}
.faq-item:not(.open):hover {
    background: rgba(245, 247, 250, 0.75);
}
.faq-item.open {
    background-color: #2090D9;
    color: #ffffff;
}
.faq-item.open > .question,
.faq-item.open > .answer {
    color: #ffffff;
}
.faq-item.open > .answer {
    max-height: fit-content;
    overflow: visible;
}

.faq-item .question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
}
.faq-item .answer {
    max-height: 0;
    overflow: hidden;
    margin-top: 8px;

    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
}
.faq-icon {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
    cursor: pointer;
}
.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background-color: #262625;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq-icon::before {
    width: 20px;
    height: 2px;
}
.faq-icon::after {
    width: 2px;
    height: 20px;
}
.faq-item.open > .question .faq-icon {
    transform: rotate(45deg);
    background-color: rgba(255, 255, 255, 0.24);
    border-radius: 50%;
}
.faq-item.open > .question .faq-icon::before,
.faq-item.open > .question .faq-icon::after {
    background-color: #ffffff;
}
.faq-item.open.parent {
    background-color: transparent;
    padding: 0;
}
.faq-item.open.parent > .question {
    background-color: #2090D9;
    color: #ffffff;
    padding: 40px;
    border-radius: 24px;
}
.faq-item.open > .answer > .faq-item {
    background-color: transparent;
    padding: 20px 40px;
}
.faq-item.open.child > .question,
.faq-item.open.child > .answer {
    color: #262625;
}
.faq-item.open.child > .question .faq-icon::before,
.faq-item.open.child > .question .faq-icon::after {
    background-color: #262625;
}

section.call-to-action-wrapper {
    margin-top: 51px;
    margin-bottom: 72px;
    background-color: #ffffff;
}
section.call-to-action-wrapper2 {
    margin-top: 16px;
    margin-bottom: 72px;
    background-color: #ffffff;
}
.cta-inner {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.66) 0 100%), url(../img/new/faq_pattern.webp) no-repeat;
    max-width: 960px;
    margin: 0 auto;
    padding: 85px 0 69px 0;
    background-color: #F7F9FB;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.cta-inner2 {
    max-width: 800px;
    background: linear-gradient(to right, rgba(255,255,255, 0.66) 0 100%), url("../img/new/faq_pattern.webp") no-repeat;
    background-size: cover;
}
.cta-inner h2 {
    margin-bottom: 24px;
    max-width: 445px;
    font-size: 24px;
}
.button {
    padding: 16px 32px;
    border-radius: 512px;
    border: 0;
    background-color: #2090D9;
    box-shadow: 0 4px 12px 0 rgba(196, 202, 233, 0.24);
    color: #FFFFFF;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    outline: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s background-color;
    text-decoration: none;
    text-align: center;
}
.button:hover {
    /*background-color: #1b7ec0;*/
    background-color: rgba(32, 144, 217, 0.75);
}
.question-icon {
    background: url("../img/question.svg") no-repeat center center;
    width: 20px;
    height: 20px;
    display: inline-block;
}
.arrow-link-icon {
    background: url("../img/arrow-link-icon.svg") no-repeat center center;
    width: 16px;
    height: 19px;
    display: inline-block;
}