body {
    padding: 0px 10px;
}

.container {
    max-width: 1406px;
    align-self: stretch;
    margin: auto;
}

.hidden {
    display: none !important;
}

.back {
    display: flex;
    height: 720px;
    width: 100%;
    padding: 0 80px 56px 80px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 88px;
    align-self: stretch;
    background: #3D65C9;
    border-radius: 20px;
    margin-top: 10px;
    background-image: url("./images/general.png");
    background-size: cover;
}

.w-100pr {
    width: 100%;
}

.title {
    color: #FFFFFF;
    font-family: Manrope;
    font-size: 66px;
    font-style: normal;
    font-weight: 600;
    line-height: 105%;
    margin-bottom: 20px;
}

.subtitle {
    color: #FFFFFF;
    font-family: Manrope;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 40px;
}

.buttons-back {
    display: flex;
    max-width: 584px;
    background: #EFF4FA;
    border-radius: 20px;
    height: 80px;
    padding: 5px;
	gap: 10px;
}

.b24-window-popup-wrapper .b24-window-scrollable {
    max-height: 90vh !important;
}

.button {
    width: 282px;
    text-align: center;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    justify-content: center;
    align-items: center;
    gap: 12px;
    display: flex;
    color: #1A1A1A;
}

.black-button {
    cursor: pointer;
}

.active {
    border-radius: 15px;
   // background: #5579D2;
    color: #FFFFFF;
}

.transform {
	background: #5579D2;
	width: 282px;
    height: 70px;
    position: absolute;
    border-radius: 15px;
	color: #FFFFFF;
}

.transform-left {
	background: #5579D2;
	width: 282px;
    height: 70px;
    position: absolute;
    border-radius: 15px;
	color: #FFFFFF;
	transition: transform 200ms ease-out;
	transform: translate(0px, 0px);
}

.transform-right {
	background: #5579D2;
	width: 282px;
    height: 70px;
    position: absolute;
    border-radius: 15px;
    transition: transform 200ms ease-out;
	color: #FFFFFF;
	transform: translate(292px, 0px);
}

.index2 {
	z-index: 2;
}

.section-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    align-items: center;
    gap: var(--spacing-card-gap, 10px);
    width: 100%;

    .card {
        padding: 28px 32px;
        border-radius: 20px;
        color: #FFFFFF;
        font-family: Manrope;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
        background: rgba(255, 255, 255, 0.10);
        box-shadow: -24px -24px 24px -16px rgba(255, 255, 255, 0.05) inset, 24px 24px 24px -16px rgba(64, 103, 202, 0.20) inset, -1px -1px 2px 0 rgba(255, 255, 255, 0.25) inset, 1px 1px 2px 0 rgba(255, 255, 255, 0.50) inset;
        backdrop-filter: blur(8px);
        gap: 16px;
        display: flex;
		height: 100%;
    }
}

.school {
    width: 40px;
    height: 40px;
    mask-image: url("./images/school-white.svg");
    background: linear-gradient(123deg, rgba(85, 121, 210, 0.90) 0%, rgba(85, 121, 210, 0.40) 100%);
    box-shadow: -0.25px -0.25px 0.5px -2px #FFF inset, 0.25px 0.25px 0.5px -2px #FFF inset;
}

.code {
    width: 40px;
    height: 40px;
    mask-image: url("./images/code_blocks.svg");
    background: linear-gradient(123deg, rgba(85, 121, 210, 0.90) 0%, rgba(85, 121, 210, 0.40) 100%);
    box-shadow: -0.25px -0.25px 0.5px -2px #FFF inset, 0.25px 0.25px 0.5px -2px #FFF inset;
}

.icon-active {
    background: linear-gradient(123deg, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.40) 100%);
}

.check-icon {
    width: 32px;
    height: 32px;
    background: rgba(85, 121, 210, 0.10);
    background-image: url("./images/check-icon.svg");
    box-shadow: 0 0 8px 0 rgba(255, 255, 255, 0.10) inset, -0.5px -0.5px 1px 0 rgba(255, 255, 255, 0.60) inset, 0.5px 0.5px 1px 0 rgba(255, 255, 255, 0.60) inset;
    border-radius: 999px;
}

@media (max-width: 1199px){
    .back {
        padding: 0 40px 40px 40px;
        background-image: url(./images/general-medium.png);
    }

    .section-card {
        .card {
            flex-direction: column;
        }
    }
}

@media (max-width: 959px){
	.back {
		margin-top: 70px;
	}
}

@media (max-width: 839px){
    .back {
        padding: 80px 40px;
        gap: 64px;
        height: auto;
        background-image: url(./images/general-small.png);
    }

    .section-card {
        display: flex;
        flex-direction: column;

        .card {
            flex-direction: row;
            width: 100%;
        }
    }

    .title {
        font-size: 54px;
    }

    .subtitle {
        font-size: 20px;
    }
}

@media (max-width: 839px){
    /*1 часть*/
    .back {
        padding: 80px 40px;
        gap: 64px;
        height: auto;
        background-image: url(./images/general-small.png);
    }

    .section-card {
        display: flex;
        flex-direction: column;

        .card {
            flex-direction: row;
            width: 100%;
        }
    }

    .title {
        font-size: 54px;
    }

    .subtitle {
        font-size: 20px;
    }
}

@media (max-width: 670px){
	.transform, .transform-left, .transform-right {
        width: calc(50% - 50px);
	}

	.transform-right {
		transform: translate(100%, 0px);
	}
}

@media (max-width: 599px){

    .school, .code {
        display: none;
    }

    .back {
        padding: 80px 20px 20px 20px;
    }

    .button {
        font-size: 16px;
    }

    .buttons-back {
        height: 56px;
    }

	.transform, .transform-left, .transform-right {
		height: 46px;
        width: calc(50% - 30px);
	}

    .title {
        font-size: 32px;
    }

    .section-card {
        .card {
            padding: 20px 24px;
        }
    }
}