@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background: #111111;
    position: relative;
    padding-bottom: 100px;
}

.header {
    padding: 32px;
}
.header-logo {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
}
.main-block {
    margin-top: 24px;
    background-image: url(bg-star.svg);
    background-position: left top;
    background-repeat: no-repeat;
}
.top-line {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 24px;
    justify-content: center;
}
.top-line .item {
    font-size: 12px;
    text-transform: uppercase;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    gap: 8px;
}
.main-block h1 {
    font-size: 64px;
    color: #fff;
    text-align: center;
    margin-top: 32px;
}
.main-block h1 .color {
    color: #FF9AE2;
}
.main-block h1 .decoration {
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-color: #A6FE5A;
}
.main-block a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    max-width: 330px;
    width: 100%;
    background: #fff;
    align-items: center;
    justify-content: center;
    padding: 14px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 40px;
    margin: 56px auto 0;
    gap: 8px;
    color: #111111;
}
 
.main-block .main-img {
    text-align: center;
    margin-top: 56px;
}
.main-block {}
.main-block .features {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 800px;
    margin: 56px auto 0;
}
.main-block .features .item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 16px;
    align-items: center;
}
.main-block .features .item .icon {}
.main-block .features .item .icon img {
    height: 48px;
    width: 48px;
}
.main-block .features .item .text {
    text-align: left;
}
.main-block .features .item .text h2 {
    font-weight: 500;
    font-size: 20px;
}
.main-block .features .item .text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}
/********************************/
.problems-decision {
    margin-top: 80px;
}
.problem-decision-wrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 20px;
}
.problem-decision-wrapper > div {
    flex: 1 1 45%;
}
.problem {
    background: #1C1C1C;
    border-radius: 24px;
    padding: 32px 32px 0;
    position: relative;
}
.problem:before {
    content: '';
    position: absolute;
    height: 56px;
    width: 56px;
    background: url(problem-dislike.svg) center/contain no-repeat;
    top: -20px;
    right: 40px;
}
.problem h4 {
    font-size: 16px;
    color: #FF9AE2;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    font-weight: normal;
    gap: 8px;
}
.problem h2 {
    margin-top: 24px;
    font-size: 24px;
    color: #FBFBFB;
    font-weight: 500;
    margin-bottom: 8px;
}
.problem p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}
.problem h3 {
    font-size: 20px;
    color: #01DBEE;
    font-weight: 600;
    margin-top: 12px;
}
.problem .img {
    margin-top: 24px;
}
.problem .img img {
    width: calc(100% + 64px);
    height: auto;
    margin-right: -32px;
    margin-left: -32px;
    margin-bottom: -4px;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
}
.decision {
    background: #1C1C1C;
    border-radius: 24px;
    padding: 32px;
}
.decision:before {
    content: '';
    position: absolute;
    height: 56px;
    width: 56px;
    background: url(problem-like.svg) center/contain no-repeat;
    bottom: -20px;
    right: 60px;
}
.decision h4 {
    color: #A6FE5A;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    font-weight: normal;
    gap: 8px;
    font-size: 16px;
}
.decision h2 {
    margin-top: 24px;
    font-size: 24px;
    color: #FBFBFB;
    font-weight: 500;
    margin-bottom: 8px;
}
.decision p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}
.decision .list {
    margin-top: 24px;
}
.decision .list .item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #FBFBFB;
    gap: 8px;
}
.decision .list .item:last-child {
    margin-bottom: 0;
}
/****************************/
.format {
    margin-top: 80px;
    background: url(bg-star.svg);
    background-position: center center;
    background-repeat: no-repeat;
}
.format-content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 20px;
    position: relative;
}

.format-content > div {
    flex: 1 1 50%;
}
.format-content__text {
    padding-top: 50px;
    position: relative;
}
.format-content__text:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 48px;
    background: url(yellow-star.svg) center/contain no-repeat;
    pointer-events: none;
    bottom: 30px;
    left: calc(50% - 15px);
}
.format-content__text h4 {
    font-size: 16px;
    font-weight: normal;
    color: #FF9AE2;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 8px;
    align-items: center;
}
.format-content__text h2 {
    margin-top: 24px;
    font-size: 24px;
    color: #FBFBFB;
    font-weight: 500;
}
.format-content__text p {
    margin-top: 8px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}
.format-content__text a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin-top: 48px;
    background: #FBFBFB;
    text-decoration: none;
    max-width: 170px;
    width: 100%;
    border-radius: 40px;
    justify-content: center;
    align-items: center;
    padding: 14px;
    color: #111;
    gap: 8px;
}
.format-content__img {}
.format-content__img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.format-content__img video {
    border-radius: 24px;
    width: 100%;
}
/****************************/
.result {
    margin-top: 80px;
}
.result-content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 20px;
}
.result-content > div {
    flex: 1 1 50%;
}
.result-content__result {
    background: #1C1C1C;
    border-radius: 24px;
    padding: 32px 32px 0;
    position: relative;
}
.result-content__result h2 {
    font-size: 24px;
    color: #FBFBFB;
    font-weight: 500;
}
.result-content__result p {
    margin-top: 8px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}
.result-content__result .list {
    margin-top: 24px;
}
.result-content__result .list .item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #fff;
}
.result-content__result .list .item svg {
    height: 24px;
    width: 24px;
    flex: 0 0 24px;
}
.result-content__result img {
    width: calc(100% + 32px);
    height: auto;
    object-fit: contain;
    margin-bottom: -4px;
    margin-top: 4px;
    margin-right: -32px;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
}

.result-content__checkpoint {
    background: #1C1C1C;
    border-radius: 24px;
    padding: 32px;
    position: relative;
}
.result-content__checkpoint h2 {
    font-size: 24px;
    color: #FBFBFB;
    font-weight: 500;
}
.result-content__checkpoint .list {
    margin-top: 24px;
}
.result-content__checkpoint .list .item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #fff;
}
.result-content__checkpoint .list .item svg {
    height: 24px;
    width: 24px;
    flex: 0 0 24px;
}
.result-content__checkpoint .list .item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}
.result-content__checkpoint img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
/***************************/
.plan {
    margin-top: 20px;
}
.plan-content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 20px;
}
.plan-content > div {
    flex: 1 1 50%;
}
.plan-content__plan {
    padding: 32px;
    border-radius: 24px;
    border: 2px solid #1C1C1C;
}
.plan-content__plan:before {
    content: '';
    position: absolute;
    height: 24px;
    width: 24px;
    top: -10px;
    left: 100px;
    background: url(clip-1.svg) center/contain no-repeat;
}
.plan-content__plan h2 {
    font-size: 24px;
    color: #FBFBFB;
    font-weight: 500;
    text-align: center;
}
.plan-content__plan img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: 24px;
}
.plan-content__box {
    padding: 32px;
    border-radius: 24px;
    border: 2px solid #1C1C1C;
    text-align: center;
    position: relative;
}
.plan-content__box:before {
    content: '';
    position: absolute;
    height: 24px;
    width: 24px;
    top: -10px;
    right: 40px;
    background: url(clip-2.svg) center/contain no-repeat;
}
.plan-content__box h2 {
    font-size: 24px;
    color: #FBFBFB;
    font-weight: 500;
    text-align: center;
}
.plan-content__box p {
    margin-top: 8px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}
.plan-content__box a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 48px auto 0;
    max-width: 264px;
    width: 100%;
    background: #FBFBFB;
    color: #111;
    border-radius: 40px;
    padding: 14px;
    text-decoration: none;
}
/*************************/
.native {
    margin-top: 80px;
    background-image: url(bg-line.svg), url(bg-star.svg);
    background-position: left top, right bottom;
    background-repeat: no-repeat, no-repeat;
}
.native-content {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.native-content h2 {
    font-size: 48px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    margin-bottom: 8px;
}
.native-content h2 .color {
    color: #FF9AE2;
}
.native-content h2 .decoration {
    text-decoration-line: underline;
    text-decoration-style: wavy;
    text-decoration-color: #F7580E;
}
.native-content h2 svg {}
.native-content p {
    margin-top: 8px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}
.native-content > img {
    margin-top: 48px;
}
.native-content .icon {
    margin-top: 48px;
}
.native-content h3 {
    margin-top: 24px;
    font-size: 24px;
    color: #FBFBFB;
    font-weight: 500;
}
/***************************/
.program {
    margin-top: 80px;
    background-image: url(bg-line.svg);
    background-position: left bottom;
    background-repeat: no-repeat;
}
.program-header {
    text-align: center;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
.program-header h2 {
    font-size: 48px;
    font-weight: 500;
    color: #FBFBFB;
}
.program-header p {
    margin-top: 8px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}
.program-header p span {
    color: #FF9AE2;
}
.program-levels {
    margin: 48px auto 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 800px;
    width: 100%;
    justify-content: center;
}
.program-levels button {
    color: #FBFBFB;
    display: block;
    background: #111111;
    border: 2px solid rgba(255, 255, 255, 0.1);
    outline: none;
    font-family: inherit;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all .30s;
}
.program-levels button:hover {
    transform: all .30s;
    background: #1C1C1C;
    border: 2px solid #1C1C1C;
}
.program-levels button.active {
    background: #FBFBFB;
    color: #111111;
    transition: all .30s;
    border: 2px solid #FBFBFB;
}

.program-items {
    max-width: 800px;
    width: 100%;
    margin: 32px auto 0;
}
.program-items .item {
    background: #1C1C1C;
    padding: 32px;
    border-radius: 24px;
    display: none;
}
.program-items .item h3 {
    font-size: 24px;
    font-weight: 500;
}
.program-items .item h3 span {
    font-size: 40px;
    font-weight: 600;
}
.program-items .item .top {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin-top: 24px;
}
.program-items .item .top > div {
    flex: 1 1 50%;
}
.program-items .item .top .for {
    padding-right: 32px;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}
.program-items .item .top .what {
    padding-left: 32px;
}
.program-items .item .top h4 {
    font-size: 20px;
    color: #FBFBFB;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.program-items .item .top h4 svg {}
.program-items .item .top p {
    margin-top: 8px;
    font-size: 16px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.8);
}
.program-items .item .bottom {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin-top: 24px;
}
.program-items .item .bottom > div {
    flex: 1 1 50%;
}
.program-items .item .bottom .able {
    padding-right: 32px;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}
.program-items .item .bottom .able h3 {
    font-size: 20px;
    color: #FBFBFB;
    font-weight: 500;
}
.program-items .item .bottom .able .list {
    margin-top: 16px;
}
.program-items .item .bottom .able .list .string {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    color: #FBFBFB;    
    font-size: 16px;
}
.program-items .item .bottom .able .list .string:last-child {
    margin-bottom: 0;
}
.program-items .item .bottom .able .list .string svg {
    flex: 0 0 24px;
}
.program-items .item .bottom .future {
    padding-left: 32px;
}
.program-items .item .bottom .future h3 {
    font-size: 20px;
    color: #FBFBFB;
    font-weight: 500;
}
.program-items .item .bottom .future .list {
    margin-top: 16px;
}
.program-items .item .bottom .future .list .string {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    color: #FBFBFB;    
    font-size: 16px;
}
.program-items .item .bottom .future .list .string svg {}
.program-items .item .bottom .future .list .string p {
    margin-top: 4px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);    
}
 
.show-more {
    display: none;
}


/***************************/
.level {
    margin-top: 80px;
}
.level-content {
    text-align: center;
}
.level-content img {}
.level-content h2 {
    font-size: 24px;
    color: #FBFBFB;
    font-weight: 500;
}
.level-content p {
    margin-top: 8px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}
.level-content a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 32px auto 0;
    max-width: 260px;
    width: 100%;
    background: #FBFBFB;
    color: #111;
    border-radius: 40px;
    padding: 14px;
    text-decoration: none;
}
/*************************/
.progress {
    margin-top: 80px;
}
.progress_content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 20px;
}
.progress_content > div {
    flex: 1 1 50%;
}
.progress-content__progress {
    background: #1C1C1C;
    border-radius: 24px;
    padding: 32px 32px 0;
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: hidden;
}
.progress-content__progress h2 {
    font-size: 24px;
    color: #FBFBFB;
    font-weight: 500;
}
.progress-content__progress .list {}
.progress-content__progress .list .item {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    position: relative;
}
.progress-content__progress .list .item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 12px;
    background: url(yellow-star.svg) center/contain no-repeat;
}
.progress-content__progress .list .item:last-child {
    margin-bottom: 0;
}
.progress-content__progress img {
    max-width: 285px;
    width: 100%;
    height: auto;
    align-self: flex-end;
    margin-right: -32px;
    margin-bottom: -60px;
}
.progress-content__result {
    background: #1C1C1C;
    border-radius: 24px;
    padding: 32px;
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: hidden;
}
.progress-content__result h2 {
    font-size: 24px;
    color: #FBFBFB;
    font-weight: 500;
}
.progress-content__result .list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.progress-content__result .list .block {
    flex: 0 1 50%;
}
.progress-content__result .list .block h3 {
    font-size: 16px;
    color: #FBFBFB;
    font-weight: 500;
}
.progress-content__result .list .block .items {
    margin-top: 16px;
}
.progress-content__result .list .block .items .item {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    position: relative;
}
.progress-content__result .list .block .items .item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 12px;
    background: url(yellow-star.svg) center/contain no-repeat;
}
.progress-content__result .list .block .items .item:last-child {
    margin-bottom: 0;
}
.progress-content__result img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
/***********************/
.costly {
    margin-top: 80px;
}
.costly-content {
    text-align: center;
}
.costly-content h2 {
    font-size: 48px;
    font-weight: 500;
    color: #FBFBFB;
}
.costly-content p {
    margin-top: 8px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}
.costly-content img {
    display: block;
    max-width: 350px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: 48px auto 0;
}
.you-way-content {
    text-align: center;
    margin-top: 48px;
}
.you-way-content img {}
.you-way-content h3 {
    font-size: 24px;
    font-weight: 500;
    color: #FBFBFB;
}
.you-way-content p {
    margin-top: 8px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}
.you-way-content a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 32px auto 0;
    max-width: 260px;
    width: 100%;
    background: #FBFBFB;
    color: #111;
    border-radius: 40px;
    padding: 14px;
    text-decoration: none;
}
/*****************************/
.teachers {
    margin-top: 80px;
}
.teachers-header {
    text-align: center;
}
.teachers-header h2 {
    font-size: 48px;
    font-weight: 500;
    color: #FBFBFB;
}
.teachers-header p {
    margin-top: 8px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}
.teachers-list {
    margin-top: 48px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 20px;
}
.teachers-list .card {
    flex: 1 1 30%;
    background: #1C1C1C;
    border-radius: 24px;
    padding: 24px;
    overflow: hidden;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.teachers-list .card img {
    margin-top: 24px;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.teachers-list .card .list {
    margin-top: 16px;
}
.teachers-list .card .list .item {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 140%;
}
.teachers-list .card .list .item svg {
    flex: 0 0 12px;
}
.teachers-list .card .list .item:last-child {
    margin-bottom: 0;
}
.teachers-list .card h4 {
    font-size: 14px;
    font-weight: 500;
    color: #FF9AE2;
    margin-top: 24px;
    line-height: 140%;
}
.teachers-list .card h3 {
    font-size: 16px;
    color: #FBFBFB;
    font-weight: 500;
}
.teachers-list .card:first-child img {
    margin-bottom: -28px;
    margin-right: -24px;
    width: calc(100% + 24px);
}
/******************************/
.target {
    margin-top: 48px;
}
.target-header {
    text-align: center;
}
.target-header img {}
.target-header h2 {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}
.target-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
}
.target-header p span {
    color: #A6FE5A;
}
.target-content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 20px;
    margin-top: 80px;
}
.target-content > div {
    flex: 1 1 50%;
}
.target-content .text {
    background: #1C1C1C;
    padding: 32px;
    border-radius: 24px;
    position: relative;
}
.target-content .text:before {
    content: '';
    position: absolute;
    height: 56px;
    width: 56px;
    background: url(problem-dislike.svg) center / contain no-repeat;
    top: -20px;
    right: 40px;
}
.target-content .text h2 {
    font-size: 24px;
    font-weight: 600;
    color: #FBFBFB;
}
.target-content .text h3 {
    font-size: 16px;
    font-weight: 500;
    color: #FBFBFB;
    margin-top: 16px;
}
.target-content .text .list {
    margin-top: 16px;
}
.target-content .text .list .item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}
.target-content .text .list .item:last-child {
    margin-bottom: 0;
}
.target-content .text .list .item svg {}
.target-content .image {
    background: #1C1C1C;
    border-radius: 24px;
    display: flex;
    align-items: flex-end;
}
.target-content .image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
/*****************************/
.reviews {
    margin-top: 80px;
}
.reviews-header {
    text-align: center;
}
.reviews-header h2 {
    font-size: 48px;
    font-weight: 500;
    color: #FBFBFB;
}
.reviews-header p {
    margin-top: 8px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}
.reviews-slider {
    margin-top: 32px;
}
.reviews-slider__item {
    background: #1C1C1C;
    padding: 32px;
    border-radius: 24px;
}
.reviews-slider__item h3 {
    font-size: 16px;
    color: #FBFBFB;
    font-weight: 500;
}
.reviews-slider__item p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.8);
}
.reviews-slider .slider-buttons {
    margin-top: 32px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    gap: 16px;
}
.reviews-slider .slider-buttons > div {
    height: 48px;
    width: 48px;
    background: #FBFBFB;
    border-radius: 50%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
/********************************/
.bottom-from {
    margin-top: 80px;
}
.bottom-from-content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 48px;
}
.bottom-from-content__text {}
.bottom-from-content__text .list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.bottom-from-content__text .list .item {
    flex: 1 1 30%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 16px;
    align-items: center;
}
.bottom-from-content__text .list .item .icon {}
.bottom-from-content__text .list .item .icon svg {}
.bottom-from-content__text .list .item .text {}
.bottom-from-content__text .list .item .text h3 {
    font-size: 20px;
    font-weight: 500;
}
.bottom-from-content__text .list .item .text p {
    color: rgba(255, 255, 255, 0.8);
}
.bottom-from-content__text .list .item {}
.bottom-from-content__text .list .item {}
.bottom-from-content__text .list {}
.bottom-from-content__text .list {}
.bottom-from-content__text .list {}
.bottom-from-content__text .list {}
.bottom-from-content__text .form-img {
    margin-top: 80px;
}
.bottom-from-content__text .form-img img {
    display: block;
    max-width: 340px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}
.bottom-from-content__from {
    flex: 1 0 460px;
}
.form-wrapper {
    background: #1C1C1C;
    border-radius: 32px;
    padding: 32px;
}
.form-wrapper h2 {
    font-size: 24px;
    font-weight: 500;
    color: #FBFBFB;
}
.form-wrapper form {
    margin-top: 24px;
}
.form-wrapper form h4 {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}
.form-wrapper form .form-radio {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}
.form-wrapper form .form-radio label {
    position: relative;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 8px;
    align-items: center;
}
.form-wrapper form .form-radio label input {
    display: inline;
    height: 0;
    width: 0;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}
.form-wrapper form .form-radio label span {
    display: block;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.form-wrapper form .form-radio label span:before {
    content: '';
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: #F7580E;
    position: absolute;
    top: 3px;
    left: 3px;
    display: none;
}
.form-wrapper form .form-radio label input:checked + span {
    border: 1px solid #F7580E;
}
.form-wrapper form .form-radio label input:checked + span:before {
    display: block;
}
.form-wrapper form .form-radio {}
.form-wrapper form {}
.form-wrapper form input {
    display: block;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    color: #fff;
    font-family: inherit;
    background: #1C1C1C;
    padding: 14px 16px;
    margin-bottom: 24px;
    outline: none;
}
.form-wrapper form button {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    width: 100%;
    font-family: inherit;
    font-size: 16px;
    background: #FBFBFB;
    color: #111;
    border-radius: 40px;
    gap: 8px;
    padding: 14px;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
}
.form-gift {
    margin-top: 24px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 16px;
    align-items: center;
}
.form-gift .image {}
.form-gift .image img {
    width: 90px;
    height: auto;
    object-fit: contain;
}
.form-gift .text {}
.form-gift .text h3 {
    font-size: 16px;
    font-weight: 500;
    color: #FBFBFB;
    line-height: 140%;
}
.form-gift .text p {
    font-size: 14px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.8);
}
.form-gift {}


.popup-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow: auto;
     background: rgba(0, 0, 0, 0.25);  
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 15px;
}
.popup-content {
    max-width: 500px;
    width: 100%;
    position: relative;
}
.close-popup {
    position: absolute;
    top: 12px;
    right: 25px;
}






