html {
    font-size: 62.5%;
}
body {
    overflow-x: hidden;
}
:root {
    --theme-color-1: #3F3F67;
    --theme-color-2: #525F7F;
    --theme-color-3: #5BDBA5;
    --theme-color-4: #7CED9E;
    --theme-bg-1: #F4F6FF;
    --theme-bg-2: #393968;
    --theme-bg-3: #4B4B82;
    --intro-gradient: linear-gradient(141.5deg, #00B7B9 30.69%, #A1F187 81.6%);
}
@keyframes flyingImg1 {
    0% {
        transform: translateY(-10px);
    } 
    50% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}
@keyframes flyingImg2 {
    0% {
        transform: translateY(0);
    } 
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes dots {
    0% {
        fill: none;
    } 
    100% {
        fill: var(--theme-color-3);
    }
}
* {
    color: var(--theme-color-2);
}
html {
    scroll-behavior: smooth;
}
section {
    position: relative;
}
.grey-bg {
    background-color: var(--theme-bg-1);
}
.dark-bg {
    background-color: var(--theme-bg-2);
}
.intro {
    z-index: 1;
    padding-bottom: 290px;
    overflow-x: hidden;
}
.intro__bg {
    /* background: var(--intro-gradient);  */
    /* clip-path: polygon(100% 54%,100% 0,0 0,0 100%); */
    min-width: 1920px;
    /* min-height: 1200px; */
    /* background-image: url('../images/dmp/bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; */
    
}
.intro__wrap {
    position: relative;
    padding-right: 54%;
}
.container.intro__container {
    position: relative;
    padding-top: 202px;
}
.intro__title {
    margin-bottom: 24px;
}
.intro__description {
    margin-bottom: 16px;
}
/* .intro__description :where(span) {
    font-size: inherit;
    color: var(--theme-color-4);
} */
.intro__text {
    margin-bottom: 40px;
}
.intro_main-btn-registr {
    display: flex;  
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    padding: 12px 8px;
    min-width: 150px;
    width: fit-content;
    font-size: 1.3rem;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--btn-color-1);
    transition: .3s background-color linear;
}
.intro_main-btn-registr:hover {
    background-color: var(--btn-color-1-hover);
}
.intro__img {
    position: absolute;
    top: 55%;
    left: 31%;
    width: clamp(50%, 50vw, 900px);
    transform: translateY(-50%);
}
.intro__img :where(img) {
    width: 100%;
}
.cycle {
    margin-top: -41px;
    padding-bottom: 180px;
}
.cycle__head-icon {
    margin-bottom: 40px;
}
.cycle::before {
    content: '';
    position: absolute;
    bottom: -12%;
    left: 11%;
    display: block;
    width: 266px;
    height: 67px;
    background-color: var(--theme-bg-1);
    transform: rotate(-12deg) skewX(-12deg);
}
.cycle__title {
    margin-bottom: 40px;
    text-align: center;
    /* text-transform: uppercase;
    color: var(--theme-color-1); */
}
.cycle__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 65px;
}
.cycle__icon {
    margin-bottom: 24px;
}
.cycle__subtitle {
    margin-bottom: 16px;
    /* color: var(--theme-color-1); */
}
.features {
    padding: 105px 0 320px 0;
}
.features__bg {
    top: 0;
    transform: skewY(-12deg) ;
}
.features__bg::before {
    content: '';
    position: absolute;
    right: -18px;
    display: block;
    width: 810px;
    height: 69px;
    background: linear-gradient(269.96deg, #E4E8F9 49.97%, rgba(228, 232, 249, 0) 97.68%);
}
.features__bg::after {
    content: '';
    position: absolute;
    bottom: 3%;
    left: 4%;
    display: block;
    width: 345px;
    height: 68px;
    background-color: #E4E8F9;
}
.features__title {
    margin-bottom: 24px;
    text-align: center;
}
.features__link {
    display: inline-block;
    margin-top: 16px;
}
.features__description {
    margin: 0 auto 64px;
    max-width: 860px;
    width: 100%;
    text-align: center;
}
.features__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    padding-bottom: 60px;
}
.features__item {
    display: flex;
    align-items: center;
}
.features__item:nth-child(even) {
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.features__subtitle {
    margin-bottom: 24px;
    /* color: var(--theme-color-1);
    text-transform: uppercase; */
}
.features__head-icon {
    margin-bottom: 40px;
}
.features__content {
    max-width: 460px;
    width: 100%;
}
.features__item_cats :where(.features__content) {
    margin-right: 50px;
}
.features__item_data :where(.features__img) {
    margin-right: 86px;
}
.features__item_ufo :where(.features__content) {
    margin-right: 180px;
}
.features__item_lock :where(.features__img) {
    margin-right: 155px;
}
.features__item_dmp :where(.features__content) {
    margin-right: 145px;
}
.features__scheme {
    position: absolute;
    left: 50%;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 1000px;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-5);
    transform: translateX(-50%);
    z-index: 1;
}
.features__scheme :where(img) {
    display: block;
    width: 100%;
}
.data-types {
    padding-bottom: 300px;
}
.data-types__bg {
    transform: skewY(-12deg);
}
.data-types__bg::before {
    content: '';
    position: absolute;
    top: 150px;
    right: -36px;
    display: block;
    width: 345px;
    height: 68px;
    background-color: var(--theme-bg-3);
}
.data-types__bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -18px;
    display: block;
    width: 818px;
    height: 77px;
    background: linear-gradient(90.25deg, #60DA9C 21.07%, #01B7B9 100.39%);
}
.data-types__container {
    padding-top: 270px;
}
.data-types__head-icon {
    margin-top: 130px;
    margin-bottom: 40px;
}
.data-types__title {
    margin-bottom: 24px;
    /* color: var(--white); */
    text-align: center;
}
.data-types__description {
    margin: 0 auto 64px auto;
    max-width: 800px;
    /* color: var(--white); */
    text-align: center;
}
.data-types__description :where(span) {
    color: var(--theme-color-3);
}
.data-types__tabs {
    display: flex;
    align-items: center;
}
.tabs__content {
    margin-right: 55px;
    max-width: 452px;
    width: 100%;
}
.tabs__content-item {
    padding: 40px 0;
    border-bottom: 1px solid #52528F;
}
.tabs__content-item:not(.active) {
    cursor: pointer;
}
.tabs__content-item:first-child {
    padding-top: 0;
}
.tabs__content-subtitle {
    position: relative;
    padding-left: 35px;
}
.tabs__content-subtitle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 13px;
    height: 13px;
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='7' viewBox='0 0 13 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.609905 4.09523H10.8419L8.92496 5.85244C8.37434 6.35717 9.20027 7.11423 9.75089 6.60951L11.4967 5.00669L12.6621 3.93671C12.888 3.72843 12.888 3.39205 12.6621 3.18377L9.75089 0.512021C9.64013 0.40769 9.48767 0.349149 9.32882 0.35036C8.80448 0.350421 8.54715 0.935853 8.92496 1.26915L10.8464 3.02636H0.579757C-0.22778 3.06309 -0.167485 4.13208 0.609905 4.09523Z' fill='white'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transform: translateY(-50%);
}
.tabs__content-item:where(.active) :where(.tabs__content-subtitle) {
    color: var(--theme-color-3);
}
.tabs__content-text {
    padding-top: 16px;
}
.data-types__drop {
    overflow: hidden;
    transition: .3s max-height linear;
}
.tabs__images {
    position: relative;
    border-radius: 70px;
    max-width: 580px;
    width: 100%;
    height: 420px;
    background-color: var(--theme-bg-3);
}
.tabs__images-item {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    padding: 50px 0;
    width: calc(100% - 60px);
    height: 100%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: .3s opacity linear;
}
.tabs__images-item:where(.active) {
    opacity: 1;
}
.tabs__images-item :where(img) {
    width: 100%;
    height: 100%;
}
[data-img="1"] :where(img) {
    width: 80%;
    height: 100%;
}
.segments {
    position: relative;
    padding: 120px 0 64px 0;
}
.segments::before {
    content: '';
    position: absolute;
    right: 11%;
    top: -5%;
    display: block;
    width: 490px;
    height: 69px;
    background-color: #E4E8F9;
    transform: rotate(-12deg) skewX(-12deg);
}
.segments__title {
    margin-bottom: 64px;
    text-align: center;
}
.segments__head-icon {
    margin-bottom: 40px;
}
.segments__content {
    display: flex;
}
.segments__img {
    margin-right: 50px;
    max-width: 460px;
    width: 100%;
}
.segments__img :where(img) {
    width: 100%;
}
.segments__item {
    display: flex;
}
.segments__item:not(:last-child) {
    margin-bottom: 64px;
}
.segments__item-icon {
    margin-right: 20px;
}
.segments__item-subtitle {
    margin-bottom: 16px;
}
.feedback {
    padding-bottom: 160px;
}
.feedback__content {
    /* display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    padding: 20px 106px 20px 117px;
    height: 190px; */
    background: linear-gradient(141.18deg, #01B7B9 41.44%, #72E096 82.14%);
    /* box-shadow: 0px 4px 40px #BFC7D9; */
}
.feedback__title {
    margin-right: 20px;
    max-width: 400px;
}
.feedback__link {
    margin-right: 0;
    margin-left: auto;
    /* border-radius: 3px;
    padding: 12px 8px;
    max-width: 150px;
    width: 100%;
    font-weight: 500;
    font-size: 13px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--theme-bg-2);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); 
    transition: .3s background-color linear; */
}

.flyingImgPath1 {
    animation: flyingImg1 6s linear infinite;
}
.flyingImgPath2 {
    animation: flyingImg2 6s linear infinite;
}
.animate :where(.animated-dot) {
    animation: dots 3s ease forwards;
    transition: 2s fill linear;
}
.animate :where(.animated-dot-1) {
    animation-delay: 0s;
}
.animate :where(.animated-dot-2) {
    animation-delay: .2s;
}
.animate :where(.animated-dot-3) {
    animation-delay: .4s;
}
@media screen and (max-width: 1440px) {
    .cycle::before {
        bottom: 0;
    }
    .segments::before {
        top: 0;
        right: -10px;
    }
}
@media screen and (max-width: 1024px) {
    .intro {
        padding-bottom: 140px;
    }
    /* .intro__bg {
        clip-path: polygon(100% 76%,100% 0,0 0,0 100%);
    } */
    .container.intro__container {
        padding-top: 125px;
    } 
    .intro__title {
        margin-bottom: 2px;
    }
    .intro__description {
        margin-bottom: 14px;
    }
    .intro__text {
        margin-bottom: 27px; 
    }
    .intro__img {
        top: 35%;
        left: 40%;
        width: clamp(70%, 50vw, 900px);
    }
    .cycle {
        margin-top: 0;
        padding-bottom: 130px;
    }
    .cycle__head-icon {
        margin-bottom: 16px;
    }
    .cycle__title {
        margin-bottom: 53px;
    }
    .cycle__list {
        gap: 40px;
    }
    .cycle::before, .data-types__bg::before {
        content: none;
    }
    .features {
        padding: 105px 0 170px 0;
    }
    .features__bg::before {
        width: 600px;
        background: linear-gradient(270.33deg, #E4E8F9 28.41%, rgba(237, 240, 253, 0) 83.81%);
    }
    .features__img, .features__content {
        max-width: calc(50% - 25px);
    }
    .features__img :where(svg, img) {
        width: 100%;
    }
    .features__subtitle {
        margin-bottom: 15px;
    }
    .features__item_ufo :where(.features__content) {
        margin-right: 90px;
    }
    .features__item_ufo :where(.features__img) {
        max-width: calc(33% - 25px);
    }
    .features__item_lock :where(.features__img) {
        margin-right: 62px;
    }
    .features__item_data :where(.features__img) {
        margin-right: 45px;
    }
    .features__item_dmp :where(.features__content) {
        margin-right: 115px;
    }
    .features__scheme {
        max-width: calc(100% - 30px);
    }
    .data-types {
        padding-bottom: 130px;
    }
    .data-types__description {
        margin: 0 auto 50px auto;
    }
    .data-types__tabs {
        flex-direction: column;
    }
    .tabs__content {
        position: relative;
        display: flex;
        margin-right: 0;
        max-width: none;
    }
    .tabs__content-item {
        padding: 0;
        width: 33.333%;
    }
    .tabs__content-subtitle {
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid var(--theme-color-2);
        padding: 0 10px 7px 10px;
    }
    .tabs__content-subtitle::before {
        content: none
    }
    .tabs__content-item:where(.active) :where(.tabs__content-subtitle) {
        border-color: var(--theme-color-3);
    }
    .data-types__drop {
        position: absolute;
        bottom: 55px;
        left: 50%;
        width: 75vw;
        transition: none;
        transform: translateX(-50%);
        text-align: center;
    }
    .segments::before {
        width: 165px;
        height: 50px;
    }
    .data-types__bg::after {
        width: 470px;
        height: 53px;
    }
    .segments__title {
        margin-bottom: 32px;
    }
    .segments__item:not(:last-child) {
        margin-bottom: 34px;
    }
    .segments__img {
        margin-right: 43px;
        max-width: 30%;
    }
    .feedback {
        padding-bottom: 50px;
    }
    /* .feedback__content {
        padding: 17px 65px 17px 85px;
    } */
    .feedback__title  {
        margin-right: 70px;
    }
    /* .feedback__content {
        height: 160px;
    } */
    .data-types__container {
        padding-top: 44%;
    }
}
@media screen and (max-width: 991px) {
    .data-types__container {
        padding-top: 42%;
    }
}
@media screen and (max-width: 767px) {
    .intro {
        padding-bottom: 100px;
    }
    /* .intro__bg {
        clip-path: polygon(100% 88%,100% 0,0 0,0 100%);
    } */
    .intro__img {
        display: none;
    }
    .intro__title {
        margin-bottom: 15px;
    }
    .intro__wrap {
        padding-right: 0;
    }
    .container.intro__container {
        padding-top: 75px;
    } 
    .intro__text {
        margin-bottom: 25px; 
    } 
    .intro_main-btn-registr {
        margin-left: auto;
        margin-right: auto;
        max-width: 190px;
    }
    .cycle {
        padding: 30px 0 60px 0;
    }
    .cycle__title {
        margin-bottom: 51px;
    }
    .cycle__list {
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
    }
    .cycle__item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .cycle__icon {
        margin-bottom: 10px;
    }
    .features {
        padding: 75px 0 80px 0;
    }
    .features__bg::before {
        width: 377px;
        height: 50px;
    }
    .features__title {
        margin-bottom: 10px;
    }
    .features__description {
        margin-bottom: 25px;
    }
    .features__item:nth-child(even), .features__item {
        flex-direction: column;
    }
    .features__img, .features__content {
        max-width: none;
    }
    .features__item_cats :where(.features__content), .features__item_data :where(.features__img), .features__item_ufo :where(.features__content), .features__item_lock :where(.features__img), .features__item_dmp :where(.features__content) {
        margin-right: 0;
    }
    .features__content {
        margin-bottom: 25px;
    }
    .features__item_ufo :where(.features__img), .features__item_dmp :where(.features__img) {
        max-width: 227px;
    }
    .features__item_lock :where(.features__img), .features__item_data :where(.features__img), .features__item_cats :where(.features__img) {
        max-width: 280px;
    }
    .features__bg::after {
        content: none;
    }
    .data-types__head-icon {
        margin-bottom: 15px;
    }
    .data-types__description {
        margin: 0 auto 23px auto;
    }
    .tabs__content-subtitle {
        padding: 0 0 7px 0;
        font-size: 1.2rem;
    }
    .data-types__drop {
        bottom: 22px;
    }
    .tabs__images {
        border-radius: 40px;
        height: 240px;
    }
    .tabs__images-item {
        padding: 25px 0;
    }
    .data-types__bg::after {
        width: 232px;
        height: 30px;
    }
    .data-types {
        padding-bottom: 115px;
    }
    .segments::before {
        width: 95px;
        height: 30px;
    }
    .segments {
        padding: 50px 0 58px 0;
    }
    .segments__head-icon {
        margin-bottom: 20px;
    }
    .segments__title {
        margin-bottom: 40px;
    }
    .segments__img {
        display: none;
    }
    .segments__item {
        flex-direction: column;
        align-items: center;
    }
    .segments__item-icon {
        margin-right: 0;
        margin-bottom: 12px;
    }
    .segments__item-subtitle {
        text-align: center;
    }
    .segments__item-subtitle {
        margin-bottom: 20px;
    }
    .feedback {
        padding-bottom: 35px;
    }
    .feedback__content {
        padding: 24px 8px;
        flex-direction: column;
    }
    .feedback__title {
        margin-right: 0;
        margin-bottom: 8px;
        text-align: center;
    }
    .feedback__link {
        margin: 0 auto;
    }
    .data-types__container {
        padding-top: 50%;
    }
}
@media screen and (max-width: 575px) {
    .data-types__container {
        padding-top: 13em;
    } 
    .features__scheme {
        left: 15px;
        border-radius: 20px 0 0 20px;
        padding: 15px;
        max-width: calc(100% - 15px);
        max-height: 230px;
        overflow: auto;
        transform: none;
    }
    .features__scheme :where(img) {
        width: 125vw;
        max-width: 700px;
        max-height: 230px;
    }
}
