/* CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Disable text selection for all elements */
* {
    user-select: none; /* Standard syntax */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
}

/* ************************************************************** */

:root {
    --Accent-Primary: #4752eb; /* Example value */
    --BG-Dark: #05070b; /* Example value */
}

body {
    background: var(--BG-dark, #05070b);
    color: white;
    font-family: IBM Plex Sans;
    font-size: 16px;
    font-weight: 400;
}
nav {
    background: rgba(5, 7, 11, 0.8);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    right: 0;
    top: 0;
    justify-content: space-between;
    z-index: 99;
}

/* Low Vision Mode Styles */
body.low-vision-mode {
    /* Existing styles */
    --Text-White: #ffffff;
    --BG-dark: #000000;
    font-size: 120%;
    line-height: 1.5;

    /* New styles */
    --focus-outline: 3px solid #ffff00;
    --high-contrast-text: #ffffff;
    --high-contrast-bg: #000000;
}

body.low-vision-mode :focus {
    outline: var(--focus-outline);
    outline-offset: 2px;
}

body.low-vision-mode * {
    text-shadow: none !important;
    box-shadow: none !important;
}

body.low-vision-mode button {
    background: var(--high-contrast-bg);
    color: var(--high-contrast-text);
    border: 2px solid var(--high-contrast-text);
    text-decoration: underline;
}

body.low-vision-mode a {
    background: var(--high-contrast-bg);
    color: var(--high-contrast-text);
    text-decoration: underline;
}
body.low-vision-mode img {
    filter: brightness(1.2) contrast(1.2);
}

body.low-vision-mode {
    /* Additional spacing properties */
    letter-spacing: 0.12em;
    word-spacing: 0.16em;
}

body.low-vision-mode p,
body.low-vision-mode h1,
body.low-vision-mode h2,
body.low-vision-mode h3 {
    margin-bottom: 1.5em;
}

body.low-vision-mode.color-blind {
    filter: saturate(150%) brightness(120%);
}

body.low-vision-mode .important-text {
    border-bottom: 3px solid #ffff00;
}

body.low-vision-mode input,
body.low-vision-mode textarea {
    font-size: 1.2em;
    padding: 12px;
    border: 2px solid #ffffff;
    background: #000000;
    color: #ffffff;
}

body.low-vision-mode input:focus,
body.low-vision-mode textarea:focus {
    outline: 3px solid #ffff00;
    outline-offset: 2px;
}

.vision-toggle {
    display: flex;
    align-items: center;
    border-radius: 32px;
    /* border: 1px solid #fff; */
    box-shadow: none;
    cursor: pointer;
    background: none;
    width: 48px;
    height: 48px;
}

.vision-toggle:hover {
    background: #16161f;
}
body.low-vision-mode .vision-toggle {
    background: #16161f;
}

.vision-toggle img {
    width: 32px;
    height: 32px;
}
.nav-left-cnt {
    display: flex;
    gap: 40px;
    align-items: center;
}
.logo-cnt {
}
.logo {
}
.catalogue {
    height: 40px;
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: var(--Radius-3xl, 32px);
    border: 1px solid var(--Boarder-Neutral-White, #fff);
    background: #05070b;
}
.catalogue:hover {
    filter: invert();
}
.catalogue:active {
    background: #05070b;
}
.catalogue-icn {
}
.catalogue-cnt {
    position: fixed;
    display: none;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6); /* Added transparency */
    display: none;
    justify-content: center; /* Add this for centering */
    align-items: center; /* Add this for centering */
}
.catalogue-cnt.active {
    display: block;
}
.catalogue-popup {
    display: flex;
    max-width: 703px;
    margin-top: 100px;
    padding: 32px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: var(--Spacing-4xl, 40px);
    border-radius: var(--Radius-s, 8px);
    background: #090c15;
    position: relative; /* Add this */
    margin-left: 24px;
    z-index: 3;
}
.catalogue-flex {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--Spacing-l, 24px);
    align-self: stretch;
}
.catalogue-title {
}
.typesettings-l-medium {
    color: #fff;

    /* Typesettings/l/Medium */
    font-family: var(--font-family-IBM-Plex-Sans, "IBM Plex Sans");
    font-size: var(--font-size-3, 16px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--line-height-2, 24px); /* 150% */
    color: #dbdbe0;
    margin-left: 16px;
}
.catalogue-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}
.catalogue-grid:nth-child(2) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(1, 1fr);
    gap: 24px;
    width: 100%;
}
.catalogue-card {
    text-decoration: none;
    display: flex;
    padding: 8px 16px;
    border-radius: 8px;
    width: 100%;
    align-items: center;
    gap: var(--Spacing-l, 16px);
    flex: 1 0 0;
}
.catalogue-card:hover {
    background: #121521;
}
.catalogue-card-img {
    width: 40px;
    height: 40px;
}
.catalogue-card-title {
}
.heading-2xs-medium {
    color: var(--Text-Base, #dbdbe0);

    /* Heading/2xs/Medium */
    font-family: var(--font-family-Unbounded, Unbounded);
    font-size: var(--font-size-4, 18px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--line-height-2, 24px); /* 133.333% */
}
.nav__cnt {
    display: flex;
    padding: 0 40px;
    height: 88px;
    align-content: center;
    align-items: center;
    justify-content: space-between;
}
.logo-cnt {
    padding: 16px 0;
}
.logo {
    height: 40px;
}
.nav__menu {
    display: flex;
    gap: 40px;
    align-items: center;
}
.links__cnt {
    padding: 16px 0;
}
.link {
    color: white;
    text-decoration: none;
    font-weight: 500;
}
.link:hover {
    color: rgb(194, 194, 194);
}
div.link {
    color: gray;
}
div.link:hover {
    color: gray;
}

button {
    color: white;
    font-family: IBM Plex Sans;
    font-weight: 500;
    box-shadow: 0 0 20px #eee;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    padding: var(--Spacing-m, 12px) var(--Spacing-xl, 20px);
    justify-content: center;
    align-items: center;
    gap: var(--Spacing-l, 16px);
    border-radius: var(--Radius-s, 8px);
    background: linear-gradient(
        276deg,
        #29242a 0%,
        rgba(71, 82, 235, 0.8) 41.4%,
        rgba(151, 71, 255, 0.8) 57.4%,
        #29242a 100%
    );
    background-size: 200% auto;
    background-position: center center; /* Double the width to allow for smooth animation */
    transition: background-position 0.5s ease;

    /* Inner Shadow/Button */
    box-shadow: 0px 1px 1px 0px rgba(255, 255, 255, 0.25) inset;
}

button:hover {
    background-position: right center; /* Move the gradient to the right */
}
button:active {
    background-color: #6680d4;
}
.nav__button {
    font-size: 16px;
}
.cnt {
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 40px;
}
.hero-block {
    height: 100vh;
    background: url("../img/background.webp");
    background-position: 50% 0;
    background-size: cover;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}
h1 {
    color: var(--Text-White, #fff);
    text-align: center;
    font-family: Unbounded;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 76.8px */
    max-width: 1060px;
}
.hero__description {
    color: var(--Text-White, #fff);
    text-align: center;
    font-family: "IBM Plex Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
    max-width: 680px;
}
.join {
    height: 560px;
    width: 100%;
    border-radius: 40px;
    background: linear-gradient(
            270deg,
            rgba(0, 0, 0, 0) 43%,
            rgba(0, 0, 0, 0.7) 90.85%
        ),
        url("../img/floating.webp") right center / cover no-repeat;
}
.join__cnt {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 560px;
    padding: 80px 0 0 60px;
}
.join__header {
    color: var(--Text-White, #fff);
    font-family: Unbounded;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 57.6px */
}
.join__paragraph {
    color: var(--Text-White, #fff);
    font-family: "IBM Plex Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 36px */
}
.button {
    width: 200px;
}

.advantages {
    margin-top: 120px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.advantages__heading {
}
.advantages__card {
    border-radius: 24px;
    background: url("../img/blur.webp") #111317 right / cover no-repeat;
    position: relative;
    height: 350px;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.advantages__card__heading {
    max-width: 480px;
    margin-top: 48px;
    margin-left: 48px;
}
.advantages__card__description {
    color: var(--Text-White, #fff);

    /* Type/20 */
    font-family: "IBM Plex Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
    max-width: 685px;
    margin-left: 48px;
}
.advantages__img.rotate {
    transform: rotate(-24deg);
}
.advantages__img {
    width: 500px;
    position: absolute;
    right: -10%;
    top: -15%;
}
.advantages__img.graduation {
    width: 540px;
    position: absolute;
    right: -10%;
    top: -25%;
}
.advantages__img.graph {
    width: 480px;
    position: absolute;
    right: -4%;
    top: -16%;
}
h3 {
    color: var(--Text-White, #fff);
    /* Heading/40/DemiBold */
    font-family: "IBM Plex Sans";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 48px */
}
h4 {
    color: var(--Text-White, #fff);

    /* Heading/40/Medium */
    font-family: "IBM Plex Sans";
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 48px */
}

.desctiption {
    display: flex;
    width: 100%;
    margin-top: 180px;
    gap: 40px;
}
.desctiption__img {
    width: 600px;
    height: 600px;
}
.description__texts {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.desctiption__heading {
    width: 100%;
    margin-right: 40px;
    margin-top: 48px;
}
h2 {
    color: var(--Text-White, #fff);
    font-family: "IBM Plex Sans";
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 67.2px */
}
.description__paragraph {
    color: var(--Text-White, #fff);

    /* Type/20 */
    font-family: "IBM Plex Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
    margin-right: 40px;
}

.education {
    margin-top: 200px;
    display: flex;
    width: 100%;
    gap: 60px;
}
.education__texts {
    display: flex;
    width: 749px;
    padding-top: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
    flex-shrink: 0;
}
.education__header {
}
.education__paragraph {
    color: var(--Text-White, #fff);

    /* Type/16/Regular */
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    max-width: 650px;
    margin-top: -40px;
}
.education__fields {
    display: flex;
    width: 440px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}
.field {
    width: 100%;
    display: flex;
    padding: var(--Spacing-m, 12px) 24px var(--Spacing-m, 12px)
        var(--Spacing-m, 12px);
    align-items: center;
    gap: var(--Spacing-l, 16px);
    align-self: stretch;
    border-radius: 80px;
    border: 1px solid rgba(255, 145, 43, 0.32);
    background: linear-gradient(
        180deg,
        rgba(255, 145, 43, 0.12) 0%,
        rgba(255, 145, 43, 0.04) 50%,
        rgba(255, 145, 43, 0.07) 100%
    );
    text-decoration: none;
}
.tech-container {
    border: 1px solid rgba(71, 82, 235, 0.32);
    background: linear-gradient(
        180deg,
        rgba(71, 82, 235, 0.12) 0%,
        rgba(71, 82, 235, 0.04) 50%,
        rgba(71, 82, 235, 0.07) 100%
    );
}
.check-container {
    border: 1px solid rgba(43, 255, 255, 0.32);
    background: linear-gradient(
        180deg,
        rgba(43, 255, 255, 0.12) 0%,
        rgba(43, 255, 255, 0.04) 50%,
        rgba(43, 255, 255, 0.07) 100%
    );
}
.finance-container {
    border: 1px solid rgba(36, 160, 55, 0.32);
    background: linear-gradient(
        180deg,
        rgba(36, 160, 55, 0.12) 0%,
        rgba(36, 160, 55, 0.04) 50%,
        rgba(36, 160, 55, 0.07) 100%
    );
}
.finance-container .field__img-cnt {
    background: linear-gradient(180deg, #24a037 0%, #24a03741 100%);
}
.child-container {
    border: 1px solid rgba(255, 103, 43, 0.32);
    background: linear-gradient(
        180deg,
        rgba(255, 103, 43, 0.12) 0%,
        rgba(255, 103, 43, 0.04) 50%,
        rgba(255, 103, 43, 0.07) 100%
    );
}
.child-container .field__img-cnt {
    background: linear-gradient(
        180deg,
        #ff672b 0%,
        rgba(255, 103, 43, 0.41) 100%
    );
}
.field__img-cnt {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: linear-gradient(
        180deg,
        #ff912b 0%,
        rgba(255, 145, 43, 0.41) 100%
    );
}
.tech-container .field__img-cnt {
    background: linear-gradient(
        180deg,
        #4752eb 0%,
        rgba(71, 82, 235, 0.41) 100%
    );
}
.check-container .field__img-cnt {
    background: linear-gradient(
        180deg,
        #2bffff 0%,
        rgba(43, 255, 255, 0.41) 100%
    );
}

.field__img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.field__title {
    color: var(--Text-White, #fff);

    /* Type/24/Regular */
    font-family: "IBM Plex Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 36px */
    text-decoration: none;
}
.education__img {
    width: 550px;
    height: 600px;
    object-fit: cover;
    border-radius: 0 100px 0 100px;
}

.robot {
    display: flex;
    flex-direction: column;
    gap: 64px;
    margin-top: 120px;
}
.robot__texts {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.robot__heading {
}
.robot__paragraph {
    max-width: 740px;
    color: var(--Text-White, #fff);

    /* Type/24/Medium */
    font-family: "IBM Plex Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 36px */
}
.robot__button {
    max-width: 356px;
    height: 40px;
    color: white;
    font-family: IBM Plex Sans;
    font-weight: 500;
    box-shadow: 0 0 20px #eee;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    padding: var(--Spacing-m, 12px) var(--Spacing-xl, 20px);
    justify-content: center;
    align-items: center;
    gap: var(--Spacing-l, 16px);
    border-radius: var(--Radius-s, 8px);
    background: linear-gradient(
        276deg,
        #29242a 0%,
        rgba(71, 82, 235, 0.8) 41.4%,
        rgba(151, 71, 255, 0.8) 57.4%,
        #29242a 100%
    );
    background-size: 200% auto;
    background-position: center center; /* Double the width to allow for smooth animation */
    transition: background-position 0.5s ease;

    /* Inner Shadow/Button */
    box-shadow: 0px 1px 1px 0px rgba(255, 255, 255, 0.25) inset;
    text-decoration: none;
}
.robot__button:hover {
    background-position: right center; /* Move the gradient to the right */
}
.robot__button:active {
    background-color: #6680d4;
}

.robot__cards {
    display: flex;
    align-items: center;
    gap: 40px;
    align-self: stretch;
}
.robot__card {
    border-radius: 24px;
    border: 1px solid rgba(71, 82, 235, 0.32);
    background: linear-gradient(
        180deg,
        rgba(71, 82, 235, 0.12) 0%,
        rgba(71, 82, 235, 0.04) 50%,
        rgba(71, 82, 235, 0.07) 100%
    );
    backdrop-filter: blur(42px);
    width: 100%;
    position: relative;
    height: 440px;
    overflow: hidden;
}
.robot__card__header {
    color: var(--Text-White, #fff);

    /* Heading/40/Medium */
    font-family: "IBM Plex Sans";
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 48px */
    width: 210px;
    margin: 32px 0 0 40px;
}
.robot__card__img {
    width: 420px;
    height: 420px;
    flex-shrink: 0;
    position: absolute;
    right: 50%;
    bottom: -25%;
    transform: translate(50%, 0) rotate(20deg);
}

.form-cnt {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 160px;
}
.text__flex {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form__header {
    width: 100%;
}
.form__paragraph {
    color: var(--Text-White, #fff);
    font-family: "IBM Plex Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 36px */
    width: 100%;
}
.input__title {
    color: var(--Text-Secondary, #b7b8c4);

    /* Type/16/Medium */
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    margin-top: 24px;
}
.button__cnt {
    margin-top: 40px;
    width: 100%;
}
.button__cnt button {
    width: 100%;
}
input,
select {
    padding: 16px 12px;
    box-sizing: border-box;
    align-items: center;
    gap: var(--Spacing-m, 12px);
    width: 100%;
    border-radius: var(--Radius-s, 8px);
    border: 1px solid var(--Boarder-Element-Secondary-Default, #2a2b3c);
    background: #111317;
    color: var(--Text-Base, #dbdbe0);

    /* Type/18/Medium */
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
}
form {
    margin-top: 48px;
    width: 100%;
}
.checkbox-flex {
    display: flex;
    gap: 4px;
    justify-content: start;
}
.checkbox-flex > input {
    width: 16px;
    height: 16px;
}

.checkbox-flex > label {
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.checkbox-cnt {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: left;
}
textarea {
    resize: none;
    border-radius: var(--Radius-s, 8px);
    border: 1px solid var(--Boarder-Element-Secondary-Default, #2a2b3c);
    background: #111317;
    color: var(--Text-Base, #dbdbe0);
    width: 100%;
    padding: 16px 12px;
    box-sizing: border-box;

    /* Type/18/Medium */
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
}
input:focus {
    outline: 2px solid #43aefd;
}
textarea:focus {
    outline: 2px solid #43aefd;
}

.footer {
    width: 100%;
    background: radial-gradient(
        64.91% 64.79% at 50% 100%,
        rgba(70, 10, 233, 0.2) 0%,
        rgba(70, 10, 233, 0) 100%
    );
    margin-top: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.footer__heading {
}
.footer__paragraph {
    text-align: center;
}
.footer__button {
}

.footer__flex {
    display: flex;
    width: 100%;
    justify-content: space-around;
    margin-top: 80px;
    padding-bottom: 80px;
    box-sizing: content-box;
}
.footer__logo {
    height: 50px;
}
.footer__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
.footer__link {
    color: #fff;

    /* Type/16/Regular */
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}
.mail-icon {
}

.footer__link a {
    color: #47b2eb;

    /* Type/16/Regular */
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.popup {
    position: fixed;
    z-index: 100;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    display: none;
}
.popup.active {
    display: flex;
}
.popup__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, 0.6);
    z-index: 101;
}
.popup__form {
    z-index: 102;
    width: 640px;
    padding: 40px;
    background: #05070b;
    margin-top: 0px;
    height: 90%;
    overflow: scroll;
}
.iframe-container {
    width: 100%;
    height: 80vh; /* Adjust the height as needed */
    overflow-y: auto;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.popup__text__flex {
    display: flex;
    gap: 16px;
}

.x {
    width: 36px;
    height: 36px;
}

.x-cnt {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-header.form__header {
    width: 100%;
}

.cnt {
}
.academy-hero {
    margin-top: 120px;
}
.academy-hero__wrapper {
    display: flex;
    gap: 80px;
    justify-content: center;
}
.academy-hero__left {
    max-width: 780px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.academy-hero__texts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}
.academy-hero__texts h1 {
    color: var(--Text-White, #fff);

    /* Heading/64/DemiBold */
    font-family: "IBM Plex Sans";
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 76.8px */
    text-align: left;
}
.academy-hero__description {
    color: var(--Text-White, #fff);

    /* Type/18/Regular */
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
    max-width: 670px;
}
.left__card {
    display: flex;
    position: relative;
}
.left__card__card {
    display: flex;
    width: 667px;
    padding: 24px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    border-radius: 24px;
    border: 2px solid rgb(179, 157, 238, 0.2);
    background: radial-gradient(
            64.91% 64.79% at 50% 100%,
            rgba(70, 10, 233, 0.2) 0%,
            rgba(70, 10, 233, 0) 100%
        ),
        var(--Surface-Transparency-White-lvl-1, rgba(255, 255, 255, 0.05));
}
.left__card__text {
    color: var(--Text-White, #fff);

    /* Type/20 */
    font-family: "IBM Plex Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */

    max-width: 400px;
}
.left__button {
}
.left__card__img {
    max-width: 385px;
    max-height: 385px;
    position: absolute;
    right: -8%;
    top: 50%;
    transform: translate(0, -50%);
}
.right__img {
    width: 550px;
    height: 600px;
    border-radius: 0px 100px;
    object-fit: cover;
}

.courses {
    margin-top: 140px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.courses__heading {
    color: var(--Text-White, #fff);
    text-align: center;
    font-family: Unbounded;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 60px */
}
.courses__paragraph {
    color: var(--Text-White, #fff);
    text-align: center;
    font-family: "IBM Plex Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 36px */
    margin-top: -40px;
}
.courses__cards {
    display: flex;
    gap: 40px;
    justify-content: center;
}
.courses__card {
    display: flex;
    width: 426px;
    padding: 20px 40px 40px 40px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 480px;

    border-radius: 24px 24px 24px 24px;
    border: 1px solid rgba(255, 145, 43, 0.32);
    background: linear-gradient(
        180deg,
        rgba(255, 145, 43, 0.12) 0%,
        rgba(255, 145, 43, 0.04) 50%,
        rgba(255, 145, 43, 0.07) 100%
    );
    backdrop-filter: blur(42px);
    box-sizing: border-box;
}

.courses__card.crypto__card {
    border: 1px solid rgba(43, 255, 255, 0.32);
    background: linear-gradient(
        180deg,
        rgba(43, 255, 255, 0.12) 0%,
        rgba(43, 255, 255, 0.04) 50%,
        rgba(43, 255, 255, 0.07) 100%
    );
}
.courses__card.tech__card {
    border: 1px solid rgba(71, 82, 235, 0.32);
    background: linear-gradient(
        180deg,
        rgba(71, 82, 235, 0.12) 0%,
        rgba(71, 82, 235, 0.04) 50%,
        rgba(71, 82, 235, 0.07) 100%
    );
}
.courses__card.crypto__card .field__img-cnt {
    background: linear-gradient(
        180deg,
        #2bffff 0%,
        rgba(43, 255, 255, 0.41) 100%
    );
}
.courses__card.tech__card .field__img-cnt {
    background: linear-gradient(
        180deg,
        #4752eb 0%,
        rgba(71, 82, 235, 0.41) 100%
    );
}

.courses__card__type {
    color: var(--Text-White, #fff);

    /* Type/14/Regular */
    font-family: "IBM Plex Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}
.courses__card__texts {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.field__img-cnt {
}
.field__img {
}
.courses__card__title {
}
.courses__card__paragraph {
    color: rgba(255, 255, 255, 0.8);
    font-family: "IBM Plex Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
}
.robot__button {
    display: flex;
    padding: var(--Spacing-m, 12px) var(--Spacing-l, 16px);
    height: 56px;
    justify-content: center;
    align-items: center;
    gap: var(--Spacing-m, 12px);
    align-self: stretch;
    width: 100%;
}
.secondary {
    background: rgba(255, 255, 255, 0.12) !important;
}
.secondary:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}
.disabled {
    background: rgba(255, 255, 255, 0.12);
    color: gray;
}
.disabled:hover {
    background: rgba(255, 255, 255, 0.12);
}
.disabled:active {
    background: rgba(255, 255, 255, 0.12);
}
.small {
    font-size: 16px;
}
.swiper {
    margin-top: 160px;
    max-width: 1440px;
    /* height: 450px; */
}
.swiper h3 {
    margin-bottom: 40px;
}
.robot__card__texts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 32px;
    margin-left: 40px;
    max-width: 340px;
}
.robot__card__paragraph {
    color: rgba(255, 255, 255, 0.8);

    /* Type/16/Regular */
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}
.swiper-slide .robot__card__header {
    margin: 0;
}

.swiper-slide .robot__card__img {
    bottom: -20%;
}
.robot__card__img.question {
    width: 340px;
    height: 340px;
    bottom: -10%;
}
.robot__card__img.target {
    transform: translate(50%, 0) rotate(0deg);
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff !important; /* Change this to your desired color */
}

.hero-block.automate {
    background: url("../img/bg.jpg") #05070b 50% / cover no-repeat;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.hero-block.automate > .robot__button {
    margin-right: auto;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.automation {
    display: flex;
    gap: 40px;
    width: 100%;
    overflow: hidden;
    margin-top: 80px;
}
.automation__texts {
    max-width: 660px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-left: 40px;
    margin-top: 40px;
}
.automation__header {
}
.robot__button {
}
.automation__img {
    max-width: 760px;
    border-radius: 16px;
}
.trading {
    max-width: 1160px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 160px;
}
.trading__texts {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.courses__heading {
}
.trading__paragraph {
    margin-top: 0;
    color: var(--Text-White, #fff);
    text-align: center;
    font-family: "IBM Plex Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 36px */
    max-width: 670px;
    margin-right: auto;
    margin-left: auto;
}

.trading__flex {
    display: flex;
    gap: 40px;
    flex-direction: column;
}
.trading__card {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
}
.trading__card__texts {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.trading__card__heading {
}
.trading__card__paragraph {
    color: var(--Text-White, #fff);

    /* Type/24/Regular */
    font-family: "IBM Plex Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 36px */
}
.trading__card__img {
    width: 580px;
    height: 580px;
}

.faq {
    display: flex;
    width: 100%;
    gap: 40px;
    margin-top: 160px;
}
.faq__header {
    flex: 5;
}
.faq__flex {
    flex: 7;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.faq__accordion {
    display: flex;
    flex-direction: column;
    border-radius: var(--Radius-s, 8px);
}
.accordion__top {
    display: flex;
    gap: 24px;
    display: flex;
    padding: var(--Spacing-l, 16px) 18px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    background: #111317;
    cursor: pointer;
}
.accordion__header {
    color: var(--Text-White, #fff);

    /* Type/24/Regular */
    font-family: "IBM Plex Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 36px */
    width: 100%;
}
.accordion__icon {
}
.accordion__bottom {
    display: flex;
    padding: 8px var(--Spacing-xl, 20px) var(--Spacing-xl, 20px)
        var(--Spacing-xl, 20px);
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    background: #111317;
}
.accordion__bottom ol {
    list-style-type: decimal;
    padding-left: 20px;
}

.accordion__bottom ol li {
    margin-bottom: 15px;
    line-height: 1.5;
}

.accordion__top:hover {
    background: #1b1e24;
}

.accordion__bottom {
    display: none;
}
.accordion__top.active .accordion__icon {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    display: none;
    z-index: 1;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    background: #05070b;
    padding: 24px 40px 10px 40px;
    border-radius: 8px;
}
.nav-dropdown li {
    margin-bottom: 24px;
}

.links__cnt {
    position: relative;
}

body.active {
    overflow: hidden;
}
.nav__burger {
    display: none;
}

.burger {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 98;
}
.burger__background {
    width: 100%;
    height: 100%;
    background: black;
}
.burger__cnt {
    width: 100%;
    height: 100%;
    padding: 0 16px;
}
.burger__cnt > .nav__menu {
    flex-direction: column;
    align-items: start;
    justify-content: start;
}
.burger__cnt > .nav__menu > .links__cnt > .link {
    font-size: 28px;
}
.burger__cnt > .nav__menu > .links__cnt > .nav__button {
    width: 100%;
}
.open-form {
}
.hero-block.trading-hero {
    background: url("../img/bg2.webp");
    background-position: 50% 0;
    background-size: cover;
}

.key {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.advantages__heading {
}
.key__card {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 24px;
    border: 1px solid rgba(71, 82, 235, 0.6);
    background: radial-gradient(
            64.91% 64.79% at 50% 100%,
            rgba(70, 10, 233, 0.2) 0%,
            rgba(70, 10, 233, 0) 100%
        ),
        var(--Surface-Transparency-White-lvl-1, rgba(255, 255, 255, 0.05));
}
.key__heading {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 36px */
}
.key__paragraph {
    color: rgba(255, 255, 255, 0.8);
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}
.key__cards {
    display: flex;
    gap: 24px;
}
.trading-join {
    margin-top: 120px;
    background: linear-gradient(
            270deg,
            rgba(0, 0, 0, 0) 43%,
            rgba(0, 0, 0, 0.7) 90.85%
        ),
        url("../img/trading.webp") right center / cover no-repeat;
}

.trading__button {
    display: flex;
    gap: 8px;
    width: 600px;
}
.secondary {
    background: #2a2b3c;
}
.secondary:hover {
    background: #16161f;
}
.index__wrapper {
    max-width: 660px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 140px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.index {
}
.index__flex {
    display: flex;
    flex-direction: column;
}
.index__icn {
    opacity: 0;
}
.hero-block.nobackground {
    background: none;
    background-image: none;
}
.hero-img {
    width: 60%;
    margin-top: -160px;
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.arbitrage {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 120px;
}
.arbitrage__grid {
    display: grid;
    gap: 24px;
    columns: 3;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}
.arbitrage__heading {
}
.arbitrage__card:first-child {
    grid-column-start: 1;
    grid-column-end: 3;
}
.arbitrage__card {
    display: flex;
    height: 320px;
    padding: 32px 48px 24px 32px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    border: 2px solid #202020;
    background: #111;
    width: 100%;
}
.arbitrage__texts {
    display: flex;
    max-width: 380px;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--Spacing-l, 16px);
}
h5 {
    color: #fff;

    /* Type/24/Medium */
    font-family: "IBM Plex Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 36px */
}
.arbitrage__paragraph {
    color: rgba(255, 255, 255, 0.8);

    /* Type/16/Regular */
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}
.arbitrage__icn {
}

.footer__top {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.cookie-banner {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: #111317;
    border: 1px solid rgba(71, 82, 235, 0.32);
    border-radius: 12px;
    padding: 20px;
    max-width: 90%;
    width: 800px;
}

.cookie-cnt {
    display: flex;
    gap: 20px;
}

.cookie-content {
    color: white;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-button {
    padding: 8px 16px;
    min-width: 100px;
    font-size: 16px;
    font-weight: normal;
    border-radius: 8px;
    background: #4752eb;
}

#cookie-decline {
    background: rgba(255, 255, 255, 0.09);
}

/* Стили только для формы в модалке */
.popup__form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 0;
    padding: 8px 16px 0;
    height: 80vh;
    overflow-y: auto;
}

.popup__form .input__wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--Spacing-s, 8px);
    align-self: stretch;
}

.popup__form .input__wrapper .input__title {
    color: var(--Text-Secondary, #b7b8c4);

    /* Typesettings/l/Medium */
    font-family: var(--font-family-IBM-Plex-Sans, "IBM Plex Sans");
    font-size: var(--font-size-3, 16px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--line-height-2, 24px); /* 150% */
}

.popup__form .input__wrapper .input__title::after {
    content: "*";
    color: rgb(217, 48, 37);
    margin-left: 4px;
}

.popup__form .input__wrapper input,
.popup__form .input__wrapper textarea {
    display: flex;
    padding: var(--Spacing-m, 12px) var(--Spacing-l, 16px);
    align-items: center;
    gap: var(--Spacing-m, 12px);
    align-self: stretch;
}

input::placeholder {
    color: var(--Text-Disable, #4b4b51);

    /* Type/18/Medium */
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
}

.popup__form .input__wrapper input:focus,
.popup__form .input__wrapper textarea:focus {
    border-bottom: 1px solid rgb(140, 124, 0);
}

.popup__form .checkbox__group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.popup__form .checkbox__label {
    display: flex;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    padding-left: 28px;
    height: 20px;
}
.input__wrapper.checkbox {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.input__wrapper.checkbox > label > a {
    color: #28a1d6;
    margin-left: 8px;
    text-decoration: none;
}
.input__wrapper.checkbox > label {
    color: var(--Text-Light, #767681);

    /* Typesettings/m/Medium */
    font-family: "IBM Plex Sans";
    font-size: var(--font-size-2, 14px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--line-height-1, 20px); /* 142.857% */
}
.input__wrapper.checkbox > input {
    width: auto;
    width: 16px;
    height: 16px;
}

.popup__form .checkbox__label input[type="checkbox"] {
    display: none;
}

.popup__form .checkbox__label .checkbox__custom {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #5f6368;
    border-radius: 50%;
    background-color: transparent;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.popup__form
    .checkbox__label
    input[type="checkbox"]:checked
    + .checkbox__custom {
    background-color: transparent;
    border-color: rgb(140, 124, 0);
}

.popup__form
    .checkbox__label
    input[type="checkbox"]:checked
    + .checkbox__custom::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: rgb(140, 124, 0);
    border-radius: 50%;
}
.course-top-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    margin-top: 80px;
}

.heading-2xl-medium {
    color: var(--Text-Base, #dbdbe0);

    /* Heading/2xl/Medium */
    font-family: var(--font-family-Unbounded, Unbounded);
    font-size: 48px;
    font-style: normal;
    font-weight: var(--font-weight-medium, 500);
    line-height: 120%;
}

.typesettings-2xl-regular {
    color: var(--Text-Base, #dbdbe0);

    /* Typesettings/2xl/Regular */
    font-family: var(--font-family-IBM-Plex-Sans, "IBM Plex Sans");
    font-size: var(--font-size-5, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height-4, 32px); /* 160% */
}

.course-hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.course-hero-img {
    width: 600px;
    filter: drop-shadow(0 0px 40px rgba(151, 71, 255, 0.4));
}
.course-hero-texts {
    display: flex;
    max-width: 680px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}
.course-hero-texts > h1 {
    width: 100%;
    text-align: left;
}
.course-top-icon-cnt {
    display: inline-flex;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--Radius-l, 16px);
    border: 2px solid #ffffff20;
    background: rgba(0, 0, 0, 0.4);

    /* Blur/S */
    -webkit-backdrop-filter: blur(8px); /* Added for Safari support */
    backdrop-filter: blur(8px);
    align-self: flex-start;
    width: 140px;
    height: 140px;
    overflow: hidden;
    box-shadow: inset 0px -20px 20px rgba(127, 118, 255, 0.2);
}
.course-top-icon-cnt.orange {
    box-shadow: inset 0px -20px 20px rgba(255, 150, 118, 0.2);
}
.course-top-icon {
    width: 100px;
    height: 100px;
}
.heading-2xl-medium {
}
.typesettings-2xl-regular {
}
.button {
}
.open-form {
}

.course-hero-block {
    display: flex;
    /* gap: 20px; */
    flex-direction: column;
    margin-top: -40px;
}

.course-cards {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 120px;
}
.heading-xl-regular {
    color: var(--Text-Base, #dbdbe0);

    /* Heading/xl/Regular */
    font-family: var(--font-family-Unbounded, Unbounded);
    font-size: var(--font-size-10, 40px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 120%; /* 120% */
}
.course-cards-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 500px 500px;
    grid-template-areas:
        "area1 area1 area1 area1 area1 area1 area1 area2 area2 area2 area2 area2"
        "area3 area3 area3 area3 area3 area4 area4 area4 area4 area4 area4 area4";
    gap: 40px;
}
.course-card:nth-child(1) {
    grid-area: area1;
}
.course-card:nth-child(2) {
    grid-area: area2;
    background: radial-gradient(
            100% 100% at 100% 100%,
            rgba(71, 82, 235, 0.6) 0%,
            rgba(71, 82, 235, 0) 100%
        ),
        url("../img/grid.svg");
}
.course-card:nth-child(3) {
    grid-area: area3;
    background: radial-gradient(
            80% 80% at 50% 100%,
            rgba(71, 82, 235, 0.6) 0%,
            rgba(71, 82, 235, 0) 100%
        ),
        url("../img/grid.svg");
}
.course-card:nth-child(4) {
    grid-area: area4;
    background: radial-gradient(
            80% 80% at 50% 100%,
            rgba(151, 71, 255, 0.8) 0%,
            rgba(151, 71, 255, 0) 100%
        ),
        url("../img/grid.svg");
}
.course-card-title {
}
.course-card {
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: var(--Radius-l, 16px);
    border: 2px solid var(--Boarder-Neutral-Contrast, #182034);
    background: var(--Surface-Neutral-Secondary, #090c15);
    box-sizing: border-box;
    background: url("../img/grid.svg");
    position: relative;
    overflow: hidden;
}
.course-card:nth-child(1) > .ellipse {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.course-card:nth-child(1) > .course-card-illustration {
    position: absolute;
    width: 436px;
    height: 436px;
    bottom: -13%;
    left: 50%;
    transform: translate(-50%, 0);
}
.course-card:nth-child(2) > .course-card-illustration {
    position: absolute;
    width: 346px;
    height: 346px;
    bottom: -5%;
    left: 50%;
    transform: translate(-50%, 0);
}
.course-card:nth-child(3) > .course-card-illustration {
    position: absolute;
    width: 350px;
    height: 350px;
    bottom: -8%;
    left: 50%;
    transform: translate(-50%, 0);
}
.course-card:nth-child(4) > .course-card-illustration {
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -8%;
    left: 50%;
    transform: translate(-50%, 0);
}
.heading-xl-medium {
    color: var(--Text-Base, #dbdbe0);

    /* Heading/xl/Medium */
    font-family: var(--font-family-Unbounded, Unbounded);
    font-size: var(--font-size-10, 40px);
    font-style: normal;
    font-weight: var(--font-weight-medium, 500);
    line-height: 120%;
}
.typesettings-2xl-regular {
}

.course-cards > h2 {
    max-width: 624px;
}

.course-about-grid {
    margin-top: 140px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-areas:
        "area1 area1 area1 area1 area1 area1 area1 area1 area1 area1 area1 area1"
        "area2 area2 area2 area2 area2 area2 area2 area2 area3 area3 area3 area3";
    gap: 40px;
}
.course-about {
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    border-radius: var(--Radius-l, 16px);
    border: 2px solid var(--Boarder-Neutral-Contrast, #182034);
    background: var(--Surface-Neutral-Secondary, #090c15);
}
.course-about:first-child {
    grid-area: area1;
}
.grid-flex {
    grid-area: area2;
}
.course-about-image {
    grid-area: area3;
    border-radius: 16px;
    overflow: hidden;
    background: url("../img/giammarco-boscaro-zeH-ljawHtg-unsplash(2).jpg")
        lightgray -15.185px 0px / 247.628% 100% no-repeat;
    background-size: cover;
}
.course-about-image.aesthetics {
    background: url("../img/chad-greiter--0gBnnMdQPw-unsplash.jpg") no-repeat
        center center;
    background-size: cover;
}
.course-about-image.ethics {
    background: url("../img/alex-block-PdDBTrkGYLo-unsplash\(1\).jpg") no-repeat
        center center;
    background-size: cover;
}
.course-about-image.religion {
    background: url("../img/john-towner-X48hkTT1qQc-unsplash.jpg") no-repeat
        center center;
    background-size: cover;
}
.course-about-image.crypto {
    background: url("../img/e5d71b789c3145b91982e14a897b23db.webp") no-repeat
        35% 50%;
    background-size: cover;
}
.course-about {
}
.course-about-heading {
}
.heading-xl-medium {
}
.typesettings-2xl-regular {
}
.grid-flex {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

ul.typesettings-2xl-regular {
    list-style-type: circle;
    list-style-position: inside;
}

.course-program-cnt {
    margin-top: 140px;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--Spacing-4xl, 40px);
}
.course-program-texts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--Spacing-2xl, 24px);
    align-self: stretch;
}
.heading-xl-regular {
}
.typesettings-2xl-regular {
}
.course-program {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: var(--Spacing-2xl, 24px);
    align-self: stretch;
}
.faq__accordion {
}
.accordion__top {
}
.accordion__header {
}
.accordion__icon {
}
.accordion__bottom {
    color: var(--Text-Base, #dbdbe0);

    /* Typesettings/l/Regular */
    font-family: var(--font-family-IBM-Plex-Sans, "IBM Plex Sans");
    font-size: var(--font-size-3, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height-2, 24px); /* 150% */
}

.typesettings-l-regular {
    color: #fff;

    /* Typesettings/l/Regular */
    font-family: var(--font-family-IBM-Plex-Sans, "IBM Plex Sans");
    font-size: var(--font-size-3, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height-2, 24px); /* 150% */
    list-style-type: circle;
    list-style-position: inside;
}

.course-certificate {
    width: 100%;
    background: var(--Surface-Neutral-Bright, #121521);
    margin-top: 140px;
}
.course-certificate > .cnt {
    padding: 40px 0;
    display: flex;
    gap: 40px;
}
.course-certificate-texts {
    display: flex;
    flex-direction: column;
    gap: 64px;
}
.heading-xl-regular {
}
.course-certificate-texts-2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--Text-Base, #dbdbe0);
}
.typesettings-2xl-medium {
    color: #fff;

    /* Typesettings/2xl/Medium */
    font-family: var(--font-family-IBM-Plex-Sans, "IBM Plex Sans");
    font-size: var(--font-size-5, 20px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--line-height-4, 32px); /* 160% */
    color: var(--Text-Base, #dbdbe0);
}
.typesettings-l-regular {
    color: #fff;

    /* Typesettings/l/Regular */
    font-family: var(--font-family-IBM-Plex-Sans, "IBM Plex Sans");
    font-size: var(--font-size-3, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height-2, 24px); /* 150% */
    color: var(--Text-Base, #dbdbe0);
}
.certificate-img {
    max-width: 800px;
}

.links__cnt {
}
.link {
}
.link-popup {
    position: absolute;
    background: #000;
    padding: 16px;
    display: none;
}
.accordion__bottom > ul > li {
    list-style-type: circle;
    list-style-position: inside;
}

.course-gradient-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: flex-start;
    align-content: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 140px;
}
.course-gradient-card {
    position: relative;
    display: flex;
    /* width: 100%; */
    padding: var(--Spacing-l, 16px);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--Spacing-2xl, 24px);
    border-radius: var(--Radius-xs, 4px);
    background: var(--Surface-Neutral-Secondary, #090c15);
    text-decoration: none;
    z-index: 0;
    transition: box-shadow 0.5s;
}

.course-gradient-card:first-child:hover {
    /* box-shadow: 0px 0px 100px 0px #9917ff; */
    box-shadow: inset 0px 0px 120px rgba(154, 23, 255, 0.6);
}
.course-gradient-card:hover {
    /* box-shadow: 0px 0px 100px 0px #9917ff; */
    box-shadow: inset 0px 0px 120px rgba(249, 78, 31, 0.6);
}
.course-gradient-card:nth-child(3):hover {
    /* box-shadow: 0px 0px 100px 0px #9917ff; */
    box-shadow: inset 0px 0px 120px rgba(27, 228, 255, 0.6);
}
.course-gradient-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px; /* Stroke size */
    background: linear-gradient(45deg, #f94e1f, #ffb526, #ffffff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}
.course-gradient-card:first-child::before {
    background: linear-gradient(90deg, #4752eb, #29242a, #9747ff);
}
.course-gradient-card:nth-child(3)::before {
    background: linear-gradient(225deg, #1c58e0, #1be4ff, #ffffff);
}
.course-gradient-card-top-flex {
    display: flex;
    align-items: center;
    gap: var(--Spacing-2xl, 24px);
    align-self: stretch;
}
.heading-s-medium {
    width: 100%;
    color: var(--Text-Base, #dbdbe0);

    /* Heading/s/Medium */
    font-family: var(--font-family-Unbounded, Unbounded);
    font-size: var(--font-size-7, 24px);
    font-style: normal;
    font-weight: var(--font-weight-medium, 500);
    line-height: var(--line-height-3, 28px); /* 116.667% */
}
.course-gradient-card-img {
    width: 64px;
    height: 64px;
}
.course-gradient-card > .typesettings-l-regular {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    align-self: stretch;
    overflow: hidden;
    color: var(--Text-Base, #dbdbe0);
    text-overflow: ellipsis;

    /* Typesettings/l/Regular */
    font-family: var(--font-family-IBM-Plex-Sans, "IBM Plex Sans");
    font-size: var(--font-size-3, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height-2, 24px); /* 150% */
}
.hours {
}
.no-minus-margin {
    margin-top: 64px;
}
.course-about-image.codex {
    background: url("../img/marcus-ganahl-f58UQKyTZC4-unsplash.jpg") no-repeat;
    background-position: 100% 100%;
    background-size: cover;
}

.cnt {
}
.prices {
    display: flex;
    width: 100%;
    gap: 40px;
    align-items: flex-start;
}
.prices-card {
    display: flex;
    width: 100%;
    padding: var(--Spacing-4xl, 40px) 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--Spacing-2xl, 24px);
    border-radius: var(--Radius-2xl, 24px);
}
.prices-card:nth-child(1) {
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: radial-gradient(
        80% 30% at 50% 0%,
        rgba(255, 255, 255, 0.7) 0%,
        rgba(0, 0, 0, 0) 90%
    );
}
.prices-card:nth-child(3) {
    border-radius: var(--Radius-2xl, 24px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: radial-gradient(
        80% 30% at 50% 0%,
        rgba(150, 38, 255, 1) 0%,
        rgba(0, 0, 0, 0) 90%
    );
}
.prices-card:nth-child(2) {
    border-radius: var(--Radius-2xl, 24px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: radial-gradient(
        80% 30% at 50% 0%,
        #ffb526 0%,
        rgba(0, 0, 0, 0) 90%
    );
}
.divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.24);
}
.prices svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0; /* Prevent icons from shrinking */
}
.prices-title {
    color: #fff;

    /* Heading/s/Medium */
    font-family: var(--font-family-Unbounded, Unbounded);
    font-size: var(--font-size-7, 24px);
    font-style: normal;
    font-weight: var(--font-weight-medium, 500);
    line-height: var(--line-height-3, 28px); /* 116.667% */
}
.prices-card-titles {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--Spacing-s, 8px);
    align-self: stretch;
}
.prices-price {
    color: #fff;

    /* Heading/l/Bold */
    font-family: var(--font-family-Unbounded, Unbounded);
    font-size: var(--font-size-9, 32px);
    font-style: normal;
    font-weight: var(--font-weight-bold, 700);
    line-height: var(--line-height-5, 40px); /* 125% */
}
.prices-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--Spacing-m, 12px);
    align-self: stretch;
}
.prices-list-item {
    display: flex;
    width: 100%;
    align-items: center;
    gap: var(--Spacing-m, 12px);
    flex-shrink: 0;
    min-height: 24px; /* Ensure consistent height for items */
}
.prices-list-item-text {
    color: var(--Text-Secondary, #b7b8c4);

    /* Typesettings/m/Regular */
    font-family: var(--font-family-IBM-Plex-Sans, "IBM Plex Sans");
    font-size: var(--font-size-2, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height-1, 20px); /* 142.857% */
}
.prices-chat-flex {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--Spacing-l, 16px);
    align-self: stretch;
}
.info-flex {
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}
#info {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prices-chat-heading {
    color: var(--Text-Base, #dbdbe0);

    /* Typesettings/l/Medium */
    font-family: var(--font-family-IBM-Plex-Sans, "IBM Plex Sans");
    font-size: var(--font-size-3, 16px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--line-height-2, 24px); /* 150% */
}
.prices-chat-paragraph {
    color: var(--Text-Secondary, #b7b8c4);

    /* Typesettings/m/Regular */
    font-family: var(--font-family-IBM-Plex-Sans, "IBM Plex Sans");
    font-size: var(--font-size-2, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height-1, 20px); /* 142.857% */
}
.prices-buy {
    width: 100%;
}
.prices-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 100px;
}
.prices-block-texts {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.prices-block-title {
    color: #fff;

    /* Heading/xl/Medium */
    font-family: var(--font-family-Unbounded, Unbounded);
    font-size: var(--font-size-10, 40px);
    font-style: normal;
    font-weight: var(--font-weight-medium, 500);
    line-height: var(--line-height-6, 48px); /* 120% */
}
.prices-block-paragraph {
    color: #fff;

    /* Typesettings/l/Regular */
    font-family: var(--font-family-IBM-Plex-Sans, "IBM Plex Sans");
    font-size: var(--font-size-3, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height-2, 24px); /* 150% */
}

.academy-hero__wrapper.club {
    align-items: center;
    justify-content: space-between;
}
.club h1 {
    color: var(--Text-Base, #dbdbe0);

    /* Heading/2xl/Medium */
    font-family: var(--font-family-Unbounded, Unbounded);
    font-size: var(--font-size-11, 48px);
    font-style: normal;
    font-weight: var(--font-weight-medium, 500);
    line-height: var(--line-height-7, 56px); /* 116.667% */
}
.club p {
    color: var(--Text-Base, #dbdbe0);

    /* Typesettings/2xl/Regular */
    font-family: var(--font-family-IBM-Plex-Sans, "IBM Plex Sans");
    font-size: var(--font-size-5, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height-4, 32px); /* 160% */
}
.club .academy-hero__left {
    justify-content: start;
}
.club .academy-hero__left > button {
    width: auto;
}

@media (max-width: 1200px) {
    .course-hero-img {
        display: none;
    }
    .course-hero-block {
        gap: 60px;
    }
    .course-gradient-cards {
        grid-template-columns: 1fr 1fr;
    }
    .course-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "area1 area2"
            "area3 area4";
    }
    .course-card-illustration {
        width: 300px !important;
        height: 300px !important;
        bottom: -50px !important;
    }
    .heading-xl-medium {
        font-size: 32px;
    }
    .typesettings-2xl-regular {
        font-size: 16px;
        line-height: 150%;
    }
    .course-certificate > .cnt {
        flex-direction: column;
        padding: 40px;
    }
    .heading-xl-regular {
        font-size: 32px;
        box-sizing: border-box;
    }
    .footer {
        height: 300px;
        padding: 0 16px;
        margin-top: 80px;
    }
    .form-cnt {
        margin-top: 80px;
    }
    .footer__heading {
        text-align: center;
    }
    .footer__flex {
        flex-direction: column;
        padding-bottom: 100px;
    }

    .footer__top {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .footer__flex {
        align-items: center;
        gap: 40px;
    }
    .footer {
        margin-top: 240px;
        background: radial-gradient(
            64.91% 64.79% at 50% 100%,
            rgba(70, 10, 233, 0.2) 0%,
            rgba(70, 10, 233, 0) 100%
        );
        height: auto;
        padding-bottom: 40px;
    }

    .footer__links {
        align-items: center;
        gap: 24px;
        text-align: center;
    }

    .prices {
        flex-direction: column;
    }
}
@media (max-width: 720px) {
    .nav__cnt {
        height: 48px;
        padding: 8px 0px 8px 16px;
    }
    .logo {
        height: px;
    }
    .logo-cnt {
        padding: 12px 0;
    }
    .nav__menu {
        display: none;
    }
    .nav__burger {
        display: flex;
        padding: var(--Spacing-m, 12px);
        align-items: center;
        gap: 8px;
        background: none;
        box-shadow: none;
    }
    .nav__burger:hover {
        background: none;
    }
    .nav__burger:active {
        background: none;
    }
    .cnt {
        padding: 0 16px;
    }
    h1 {
        font-size: 32px;
        width: 100%;
    }
    .automate > h1 {
        font-size: 24px;
    }
    .hero__description {
        font-size: 14px;
    }
    .join__header {
        font-size: 20px;
    }
    .join {
        display: flex;
        padding: 12px;
        box-sizing: border-box;
        height: 400px;
        align-items: end;
        justify-content: end;
        border-radius: 24px;
        background: linear-gradient(
                270deg,
                rgba(0, 0, 0, 0) 43%,
                rgba(0, 0, 0, 0.7) 90.85%
            ),
            url("../img/floating.webp") 90% center / cover no-repeat;
    }
    .join__cnt {
        padding: 0;
        gap: 16px;
    }
    button {
        padding: var(--Spacing-s, 12px) var(--Spacing-m, 12px);
        font-size: 12px;
        border-radius: 4px;
    }
    .join__paragraph {
        font-size: 12px;
    }
    .button {
        width: 100%;
    }
    .advantages__img {
        top: 45%;
        left: 50%;
        transform: translate(-50%, 0);
        width: 300px;
        padding: 0;
        margin: 0;
    }
    .advantages__card {
        height: 450px;
        padding: 24px 16px;
        box-sizing: border-box;
    }
    .advantages__card__heading {
        margin: 0;
        font-size: 24px;
    }
    .advantages__card__description {
        margin: 0;
        font-size: 14px;
    }
    .advantages__img.rotate {
        transform: translate(-50%, 0) rotate(24deg);
        margin: 0;
        padding: 0;
    }
    .desctiption {
        flex-direction: column;
        gap: 40px;
    }
    .desctiption__img {
        width: 100vw;
        height: 100vw;
    }
    h2 {
        font-size: 32px;
    }
    .description__paragraph {
        font-size: 14px;
    }
    .description__texts {
        gap: 24px;
        padding: 0 16px;
    }
    .desctiption__heading {
        margin-top: 0;
    }

    .education {
        flex-direction: column;
        gap: 32px;
    }
    .education__texts {
        order: 2;
    }
    .education__img {
        width: 100%;
        height: 120vw;
    }
    h3 {
        font-size: 20px;
    }
    .education__texts {
        width: 100%;
        gap: 32px;
    }
    .education__fields {
        width: 100%;
    }
    .field__title {
        font-size: 14px;
    }
    .field {
        width: 100%;
        padding: var(--Spacing-xs, 4px);
        box-sizing: border-box;
    }
    .robot__button {
        padding: var(--Spacing-s, 12px) var(--Spacing-m, 12px);
        font-size: 12px;
        border-radius: 4px;
        text-align: center;

        height: 40px;
        max-width: 100%;
    }
    .robot__paragraph {
        font-size: 14px;
    }
    .robot__texts {
        width: 100%;
    }
    .robot {
        margin-top: 120px;
    }
    .robot__cards {
        flex-direction: column;
    }
    .robot__card {
        height: 400px;
    }
    .robot__card__img {
        width: 300px;
        height: 300px;
        bottom: -10%;
    }
    p {
        font-size: 14px;
    }
    .form__paragraph {
        font-size: 14px;
    }
    .footer {
        height: 300px;
        padding: 0 16px;
        margin-top: 80px;
    }
    .form-cnt {
        margin-top: 80px;
    }
    .footer__heading {
        text-align: center;
    }
    .footer__paragraph {
        font-size: 14px;
    }
    .burger {
    }
    .burger__background {
    }
    .burger__cnt {
    }
    .burger__cnt > .nav__menu {
        display: flex;
        gap: 24px;
        height: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
    .links__cnt {
        width: 100%;
    }
    div.link {
        font-size: 28px;
    }
    .link {
    }
    .nav__button {
    }
    .open-form {
    }
    .automation__img {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        order: 1;
    }
    .automation {
        flex-direction: column;
        padding: 0 16px;
        gap: 40px;
        height: auto;
        margin-top: 0;
    }
    .automation__texts {
        margin: 0;
        order: 2;
        gap: 24px;
    }
    .courses__heading {
        font-size: 24px;
    }
    .trading__paragraph {
        font-size: 16px;
    }
    .trading__card {
        flex-direction: column;
        margin-top: 80px;
        gap: 24px;
    }
    .trading__card__paragraph {
        font-size: 16px;
    }
    .trading__card__img {
        width: 100%;
        height: auto;
        order: 1;
    }
    .trading__flex {
        gap: 0;
    }
    .trading__card__texts {
        order: 2;
    }
    .faq {
        flex-direction: column;
    }
    .accordion__header {
        font-size: 16px;
    }
    .left__card__img {
        top: 0;
        left: 50%;
        bottom: 0;
        right: 0;
        width: 100%;
        position: relative;
        order: 1;
        transform: translate(-50%, 160px);
    }
    .left__card {
        flex-direction: column;
    }
    .left__card__card {
        order: 2;
        width: 100%;
        padding: 16px;
        border-radius: 12px;
        justify-content: end;
        height: 360px;
    }
    .left__button {
        width: 100%;
    }
    .academy-hero__wrapper {
        width: 100%;
        flex-direction: column;
        gap: 40px;
    }
    .right__img {
        width: 100%;
        height: auto;
        order: 1;
    }
    .academy-hero__left {
        order: 2;
    }
    .academy-hero__texts h1 {
        font-size: 40px;
    }
    .academy-hero__description {
        font-size: 16px;
    }
    .advantages__img.graduation {
        top: 45%;
        left: 50%;
        transform: translate(-50%, 0);
        width: 300px;
        padding: 0;
        margin: 0;
    }
    .advantages__img.graph {
        top: 45%;
        left: 50%;
        transform: translate(-50%, 0);
        width: 300px;
        padding: 0;
        margin: 0;
    }
    .courses__cards {
        flex-direction: column;
    }
    .courses__card {
        width: 100%;
        padding: 20px 20px 20px 20px;
        height: 420px;
    }
    .courses__card__texts {
        gap: 16px;
    }
    h4 {
        font-size: 24px;
    }
    .popup__form {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        padding: 16px;
    }
    .iframe-container {
        height: 100%;
    }
    .footer__flex {
        flex-direction: column;
        padding-bottom: 100px;
    }

    .footer__top {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .footer__flex {
        align-items: center;
        gap: 40px;
    }
    .footer {
        margin-top: 240px;
        background: radial-gradient(
            64.91% 64.79% at 50% 100%,
            rgba(70, 10, 233, 0.2) 0%,
            rgba(70, 10, 233, 0) 100%
        );
        height: auto;
        padding-bottom: 40px;
    }

    .footer__links {
        align-items: center;
        gap: 24px;
        text-align: center;
    }

    .cookie-cnt {
        flex-direction: column;
    }

    .course-top-icon {
        width: 80px;
        height: 80px;
    }
    .course-top-icon-cnt {
        width: 120px;
        height: 120px;
    }
    .course-hero-texts {
        width: 100%;
    }
    .heading-2xl-medium {
        font-size: 32px;
        width: 100%;
        text-align: left;
    }
    .typesettings-2xl-regular {
        font-size: 16px;
    }
    .course-hero-texts {
        gap: 24px;
    }
    .heading-xl-regular {
        font-size: 24px;
        line-height: 120%;
    }
    .course-cards-grid {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(4, 500px);
        grid-template-areas:
            "area1" "area2"
            "area3" "area4";
    }
    .heading-xl-medium {
        font-size: 24px;
    }
    .course-gradient-cards {
        grid-template-columns: 1fr;
    }
    .course-about-grid {
        grid-template-columns: repeat(1, 1fr);
        grid-template-areas:
            "area1"
            "area2"
            "area3";
    }

    .catalogue-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }
}
