@font-face {
  font-family: "ransans";
  src: url("fonts/IRANSANS.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
}

:root{
  --body-background: #00021cea;
  --body-text-color:  #e6eaf5;
  --scrollbar-background: rgba(255, 255, 255, 0.05);
  --webkit-scrollbar-thumb: #6467a7;
  --header-bg: rgba(40, 42, 60, 0.35);
  --header-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  --brand-bg: linear-gradient(90deg, #e6eaf5, #aab3c9);
  --menue-items-li: #2e7dff;
  --element-hover: #37384d;
  --where-to-start: wheat;
  --svg-fill: white;
  --card-box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
  --code-block-header-bg: #37384d;
  --code-block-body-bg: #1a1a1a;
  --borer: rgba(182, 181, 181, 0.749);
  --menu-box-shadow: 0px 0px 10px #0b081dd6;

  --console-text-color: white;
  --console-numbers: rgb(225, 255, 180);
  --console-light-yellow: rgb(237, 237, 131);
  --console-yellow: yellow;
  --console-string: rgb(114, 114, 114);
  --console-blue: rgb(80, 147, 222);
  --console-light-blue: rgb(151, 205, 255);
  --console-purple: rgb(232, 108, 232);
  --console-modules: rgb(56, 255, 179);
  --console-unused-var: rgb(116, 129, 168);

  --footer-bg: linear-gradient(
    to bottom,
    #1c1e3600 0%,
    #1c1e36 30%,
    #1c1e36 100%
  );
}

body.light{
  --body-background: #f8fafc;
  --body-text-color:  #1e293b;
  --scrollbar-background: rgba(0, 0, 0, 0.05);
  --webkit-scrollbar-thumb: #94a3b8;
  --header-bg: rgba(232, 239, 238, 0.5);
  --header-shadow: 0 0 20px rgba(132, 132, 132, 0.6);
  --brand-bg: linear-gradient(90deg, #1e293b, #475569);
  --menue-items-li: #3b82f6;
  --element-hover: rgba(222, 233, 231, 0.5);
  --where-to-start: rgb(226, 176, 83);
  --svg-fill: rgb(149, 177, 177);
  --card-box-shadow: 0 0 20px rgba(38, 31, 31, 0.118);
  --code-block-header-bg: #c7cfd8a7;
  --code-block-body-bg: #dae0e56b;
  --borer: rgba(104, 104, 104, 0.749);
  --menu-box-shadow: 0px 0px 0px;

  --console-text-color: #1e293b;
  --console-numbers: rgb(52, 180, 105);
  --console-light-yellow: rgb(174, 154, 4);
  --console-yellow: rgb(0, 81, 255);
  --console-string: rgb(114, 114, 114);
  --console-blue: rgb(80, 147, 222);
  --console-light-blue: rgb(0, 97, 187);
  --console-purple: rgb(153, 31, 194);
  --console-modules: rgb(81, 184, 144);
  --console-unused-var: rgb(116, 129, 168);

  --footer-bg: linear-gradient(to bottom, #ffffff00 0%, #ffffff 40%, #dfe4e8 100%);
}

.sun {
  display: block;
  cursor: pointer;
}
.moon {
  display: none;
  cursor: pointer;
}
body.light .sun {
  display: none;
}
body.light .moon {
  display: block;
}

ul {
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
a:visited {
  color: inherit;
}
a:focus {
  outline: none;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  background-color: var(--body-background);
  padding: 0;
  margin: 0;
  color: var(--body-text-color);
}

/* انیمیشن ورودی */
.animate-item {
  opacity: 0;
  transform: translateY(80px);
  transition: 3s ease-in-out;
}

.animate-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* کل اسکرول‌بار */
::-webkit-scrollbar {
  width: 4px;
}

/* پس‌زمینه اسکرول‌بار */
::-webkit-scrollbar-track {
  background: var(--scrollbar-background);
  border-radius: 500px;
}

/* بخش قابل حرکت */
::-webkit-scrollbar-thumb {
  background: var(--scrollbar-background);
  border-radius: 10px;
  box-shadow: 0 0 10px var(--scrollbar-background);
}

/* موقعی که روش هاور میشه */
::-webkit-scrollbar-thumb:hover {
  background: var(--webkit-scrollbar-thumb);
}

header {
  z-index: 1;
  position: fixed;
  top: 3%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--header-bg);
  box-shadow: var(--header-shadow);
  height: 55px;
  width: 75%;
  margin: 20px auto;
  border-radius: 30px;
  padding: 0 20px;
  backdrop-filter: blur(5px);
}

.brand {
  font-weight: bold;
  font-size: 1.4rem;
  font-family: "iransans";
  background: var(--brand-bg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.header-icon {
  width: 40px;
  height: 40px;
}

.menue-items-li {
  font-family: "iransans";
  font-weight: 400;
  transition: 0.3s ease;
}

.menue-items-li:hover {
  color: var(--menue-items-li);
  cursor: pointer;
  text-shadow:
    0 0 5px var(--menue-items-li),
    0 0 12px var(--menue-items-li);
}

.menue-titles {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* .light:hover {
  color: yellow;
  filter: drop-shadow(0 0 15px yellow);
} */

.course {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  font-family: "iransans";
}

.home-icon {
  padding-top: 100px;
  width: 400px;
}

.up-course {
  font-size: xx-large;
  line-height: 1.3;
}

.down-course {
  font-size: large;
  line-height: 1;
  font-weight: 200;
}

.start-button {
  margin-top: 18px;
  background-color: var(--header-bg);
  outline: none;
  border: none;
  font-family: "iransans";
  font-weight: 100;
  color: #01c062;
  font-size: larger;
  padding: 11px;
  border-radius: 30px;
  box-shadow: 1px 1px 20px;
  transition: all 0.2s ease-in-out;
  padding-left: 20px;
  padding-right: 20px;
}

.start-button:hover {
  background-color: var(--element-hover);
  color: #008a45;
  cursor: pointer;
  transform: scale(1.05) translateY(-5px);
  transition: all 0.2s ease-in-out;
  box-shadow: 5px 5px 50px;
}

.where-to-start {
  text-decoration: underline;
  cursor: pointer;
  padding: 22px;
  color: var(--where-to-start);
}

/* کارت‌ها */
.card-container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 70px 70px;
  justify-content: center;
  margin-top: 50px;
}

.card {
  color: var(--body-text-color);
  text-decoration: none;
  font-weight: normal;
  text-align: center;
  /* border: 2px solid rgb(171, 227, 193); */
  box-shadow: var(--card-box-shadow);
  width: 260px;
  padding: 20px;
  border-radius: 25px;
  background: var(--header-bg);
  backdrop-filter: blur(3px);
  transition: 0.3s;
}

.svg-fill{
  fill: var(--svg-fill);
}

.card:hover {
  border: #6467a7;
  transform: translateY(-6px);
  box-shadow:
    0px 0px 20px rgba(65, 107, 110, 0.459),
    0px 0px 40px rgba(255, 255, 255, 0.15),
    0px 0px 80px rgba(255, 255, 255, 0.15);
}

.card-title {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-weight: bold;
  margin-top: 15px;
  font-size: 1.3rem;
}

.caption {
  font-family: "iransans";
  font-size: small;
  font-weight: 100;
  text-align: justify;
}

.code-box {
  min-height: 50px;
  position: relative;
  margin-top: 20px;
  padding: 12px;
  border-radius: 12px;
  width: auto;
}

.circles {
  position: relative;
  padding-right: 10px;
  height: 20px;
  border-radius: 10px 10px 0px 0px;
  background-color: var(--code-block-header-bg);
  display: flex;
  gap: 7px;
  margin-bottom: 10px;
}
.red-circle {
  position: absolute;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f57;
}
.yellow-circle {
  position: absolute;
  top: 4px;
  right: 26px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffbd2e;
}
.green-circle {
  position: absolute;
  top: 4px;
  right: 42px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #29c840;
}

.code-line {
  line-height: 1.3;
  padding-top: 8px;
  padding-left: 6px;
  min-height: 30px;
  max-height: 85px;
  overflow: auto;
  position: absolute;
  text-align: left;
  top: 17px;
  width: 88.5%;
  background-color: var(--code-block-body-bg);
  font-size: medium;
  font-family: monospace;
  color: #e6eaf5;
  border-radius: 0 0 10px 10px;
}

/* FAQ */
.faq-item {
  padding-bottom: 15px;
}

/* بدنه جواب (بسته) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: var(--code-block-body-bg);
  padding: 0 20px;
  border-radius: 0 0 20px 20px;
  /* transition: max-height .3s ease, border-radius .3s ease; */
}

/* بدنه جواب (باز) */
.faq-item.open .faq-answer {
  text-align: justify;
  max-height: fit-content;
  border-radius: 0 0 20px 20px;
  background-color: var(--code-block-body-bg);
}

/* فاصله بین سوال‌ها و چ pod padding box اصلاح شد */
#where-sould-start {
  margin-top: 250px;
  margin-right: 11%;
  margin-left: 11%;
  display: flex;
  justify-content: center;
  gap: 30px;
}

/* دکمه سوال داخل box-header */
.faq-question {
  text-align: right;
  width: 100%;
  padding: 0;
  font-family: "iransans";
  font-size: medium;
  color: var(--body-text-color);
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
}

/* باکس بالا (بسته) */
.code-box-theme {
  position: relative;
  text-align: right;
  padding: 5px 60px 3px 0px;
  border-radius: 20px;
  font-family: "iransans";
  font-size: medium;
  color: var(--body-text-color);
  background-color: var(--code-block-header-bg);
  outline: none;
  border: none;
  box-shadow: 0px 5px 20px #0b081d;
  margin-bottom: 0;
}

/* باکس بالا (باز) */
.faq-item.open .code-box-theme {
  border-radius: 20px 20px 0 0;
}

/* دایره‌ها */
.faq-red-circle {
  position: absolute;
  top: 13px;
  right: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f57;
}
.faq-yellow-circle {
  position: absolute;
  top: 13px;
  right: 26px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffbd2e;
}
.faq-green-circle {
  position: absolute;
  top: 13px;
  right: 41px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #29c840;
}

/* سایدبار سوال‌ها */
.questions-list {
  background-color: var(--header-bg);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  padding: 30px;
  list-style: none;
  font-family: "iransans";
  font-size: small;
  line-height: 1.9;
  border-radius: 40px;
  min-width: 270px;
  max-height: 480px;
  /* transition: all 0.1s ease-in-out; */
  position: sticky;
  top: 80px;
}

.questions{
  padding-bottom: 15px;
}

.questions:hover {
  color: #2e7dff;
  cursor: pointer;
  /* transition: all 0.05s ease-in-out; */
}

.steps {
  font-family: "iransans";
  font-size: large;
  text-align: center;
  padding-bottom: 15px;
}

/* closed submenu */
.submenu {
  font-family: "iransans";
  text-align: justify;
  font-size: 15px;
  color: var(--body-text-color);
  max-height: 0;
  overflow: hidden;
  background-color: var(--code-block-body-bg);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* new wrapper for each menu item */
.menu-item-parent {
  list-style: none;
  margin-bottom: 8px;
}

/* open state for submenu */
.menu-item-parent.open .submenu {
  max-height: 999999px;
  margin-bottom: 8px;
  padding-right: 15px;
  padding-left: 15px;
  border: 1px solid var(--borer);
}

/* rotate icon on open */
.menu-item-parent.open .left-arrow {
  transform: rotate(90deg);
}

/* menu container */
.menue-list {
  padding: 35px;
  min-width: 270px;
  width: 100%;
}

/* menu title */
.menu-title {
  font-family: "iransans";
  background-color: var(--code-block-header-bg);
  box-shadow: 0px 0px 10px #0b081dd6;
  border-radius: 20px;
  margin: 2px;
  margin-bottom: 8px;
  padding: 5px 5px 7px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.menu-title- {
  display: flex;
  align-items: center;
}

/* remove bottom-radius when open */
.menu-item-parent.open .menu-title {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin: 0;
  box-shadow: var(--menu-box-shadow);
  border: 1px solid var(--borer);
  border-bottom: 0;
}

.code-icon {
  width: 45px;
}

.left-arrow {
  width: 20px;
  height: 20px;
  transition: 0.3s ease;
}

.option-01::before {
  content: "[1] ";
}
.option-02::before {
  content: "[2] ";
}
.option-03::before {
  content: "[3] ";
}
.option-04::before {
  content: "[4] ";
}
.option-05::before {
  content: "[5] ";
}
.option-06::before {
  content: "[6] ";
}
.option-07::before {
  content: "[7] ";
}
.option-08::before {
  content: "[8] ";
}
.option-09::before {
  content: "[9] ";
}
.option-10::before {
  content: "[10] ";
}
.option-11::before {
  content: "[11] ";
}
.option-12::before {
  content: "[12] ";
}
.option-13::before {
  content: "[13] ";
}
.option-14::before {
  content: "[14] ";
}
.option-15::before {
  content: "[15] ";
}
.option-16::before {
  content: "[16] ";
}
.option-17::before {
  content: "[17] ";
}
.option-18::before {
  content: "[18] ";
}
.option-19::before {
  content: "[19] ";
}
.option-20::before {
  content: "[20] ";
}
.option-21::before {
  content: "[21] ";
}
.option-22::before {
  content: "[22] ";
}
.option-23::before {
  content: "[23] ";
}


.option-01:hover {
  color: #ff4fd8;
  cursor: pointer;
}
.option-02:hover {
  color: #9a5bff;
  cursor: pointer;
}
.option-03:hover {
  color: #4cff89;
  cursor: pointer;
}
.option-04:hover {
  color: #3ba3ff;
  cursor: pointer;
}
.option-05:hover {
  color: #ffd84a;
  cursor: pointer;
}
.option-06:hover {
  color: #00f5d4;
  cursor: pointer;
}
.option-07:hover {
  color: #ff7a59;
  cursor: pointer;
}
.option-08:hover {
  color: #7b2cff;
  cursor: pointer;
}
.option-09:hover {
  color: #ffb3c1;
  cursor: pointer;
}
.option-10:hover {
  color: #80ffdb;
  cursor: pointer;
}
.option-11:hover {
  color: #ff9e00;
  cursor: pointer;
}
.option-12:hover {
  color: #6eeb83;
  cursor: pointer;
}
.option-13:hover {
  color: #9d4edd;
  cursor: pointer;
}
.option-14:hover {
  color: #f72585;
  cursor: pointer;
}
.option-15:hover {
  color: #4cc9f0;
  cursor: pointer;
}
.option-16:hover {
  color: #ffcbf2;
  cursor: pointer;
}
.option-17:hover {
  color: #bde0fe;
  cursor: pointer;
}
.option-18:hover {
  color: #c8ff7a;
  cursor: pointer;
}
.option-19:hover {
  color: #ff8fa3;
  cursor: pointer;
}
.option-20:hover {
  color: #72efdd;
  cursor: pointer;
}
.option-21:hover {
  color: #9bf6ff;
  cursor: pointer;
}
.option-22:hover {
  color: #faa307;
  cursor: pointer;
}
.option-23:hover {
  color: #b388eb;
  cursor: pointer;
}

.active-01 {
  color: #ff4fd8;
}
.active-02 {
  color: #9a5bff;
}
.active-03 {
  color: #4cff89;
}
.active-04 {
  color: #3ba3ff;
}
.active-05 {
  color: #ffd84a;
}
.active-06 {
  color: #00f5d4;
}
.active-07 {
  color: #ff7a59;
}
.active-08 {
  color: #7b2cff;
}
.active-09 {
  color: #ffb3c1;
}
.active-10 {
  color: #80ffdb;
}
.active-11 {
  color: #ff9e00;
}
.active-12 {
  color: #6eeb83;
}
.active-13 {
  color: #9d4edd;
}
.active-14 {
  color: #f72585;
}
.active-15 {
  color: #4cc9f0;
}
.active-16 {
  color: #ffcbf2;
}
.active-17 {
  color: #bde0fe;
}
.active-18 {
  color: #c8ff7a;
}
.active-19 {
  color: #ff8fa3;
}
.active-20 {
  color: #72efdd;
}
.active-21 {
  color: #9bf6ff;
}
.active-22 {
  color: #faa307;
}
.active-23 {
  color: #b388eb;
}


/* Footer */
.site-footer {
  background:var(--footer-bg);
  color: var(--body-text-color);
  padding: 150px 20px 25px;
  font-family: "iransans";
  font-weight: 100;
}

.link-theme:hover{
  color: #ffbd2e;
  font-weight: 500;
  text-shadow: 0px 0px 10px #eaff5e;
}

.footer-code-header{
  padding: 10px;
  padding-right: 60px;
  border-radius: 15px 15px 0px 0px;
  background-color: var(--code-block-header-bg);
}

.footer-red-circle {
  position: absolute;
  top: -28px;
  right: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f57;
}
.footer-yellow-circle {
  position: absolute;
  top: -28px;
  right: 26px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffbd2e;
}
.footer-green-circle {
  position: absolute;
  top: -28px;
  right: 41px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #29c840;
}

.link{
  font-family: monospace;
  font-size: small;
  text-decoration: none;
}

.footer-code-body{
  position: relative;
  top: -22px;
  font-family: "iransans";
  border-radius:  0 0 15px 15px;
  padding-right: 20px;
  margin: 0;
  background-color: var(--code-block-body-bg);
}
.footer-caption-code-body{
  text-align: justify;
  font-size: 95%;
  position: relative;
  top: -22px;
  font-family: "iransans";
  border-radius:  0 0 15px 15px;
  padding: 12px;
  margin: 0;
  background-color: var(--code-block-body-bg);
}

.tt{
  position: relative;
  font-family: "iransans";
  border-radius:  0 0 15px 15px;
  padding-right: 20px;
  margin: 0;
}

.footer-tt-red-circle {
  position: absolute;
  top: 36px;
  right: 30px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f57;
}
.footer-tt-yellow-circle {
  position: absolute;
  top: 36px;
  right: 45px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffbd2e;
}
.footer-tt-green-circle {
  position: absolute;
  top: 36px;
  right: 60px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #29c840;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #222;
  padding-top: 20px;
  font-size: 14px;
  color: var(--body-text-color);
}

/* text colors */
.white{
  font-family: monospace;
  color: white;
  white-space: pre;
}
.light-green{
  font-family: monospace;
  color: rgb(225, 255, 180);
  white-space: pre;
}
.light-yellow {
  font-family: monospace;
  color: rgb(237, 237, 131);
  white-space: pre;
}
.yellow {
  font-family: monospace;
  color: yellow;
  white-space: pre;
}
.dark-orange {
  font-family: monospace;
  color: rgb(222, 128, 56);
  white-space: pre;
}
.dark-gray {
  font-family: monospace;
  color: rgb(114, 114, 114);
  white-space: pre;
}
.blue {
  font-family: monospace;
  color: rgb(51, 121, 202);
  white-space: pre;
}
.light-blue {
  font-family: monospace;
  color: rgb(151, 205, 255);
  white-space: pre;
}
.purple{
  font-family: monospace;
  color: rgb(232, 108, 232);
  white-space: pre;
}
.mediumspringgreen{
  font-family: monospace;
  color: rgb(56, 255, 179);
  white-space: pre;
}
.unused-blue{
  font-family: monospace;
  color: rgb(123, 146, 214);
  white-space: pre;
}





/* text colors */
.white{
  font-family: monospace;
  color: var(--console-text-color);
  white-space: pre;
}
.light-green{
  font-family: monospace;
  color: var(--console-numbers);
  white-space: pre;
}
.light-yellow {
  font-family: monospace;
  color: var(--console-light-yellow);
  white-space: pre;
}
.yellow {
  font-family: monospace;
  color: var(--console-yellow);
  white-space: pre;
}
.dark-orange {
  font-family: monospace;
  color: rgb(222, 128, 56);
  white-space: pre;
}
.dark-gray {
  font-family: monospace;
  color: var(--console-string);
  white-space: pre;
}
.blue {
  font-family: monospace;
  color: var(--console-blue);
  white-space: pre;
}
.light-blue {
  font-family: monospace;
  color: var(--console-light-blue);
  white-space: pre;
}
.purple{
  font-family: monospace;
  color: var(--console-purple);
  white-space: pre;
}
.mediumspringgreen{
  font-family: monospace;
  color: var(--console-modules);
  white-space: pre;
}
.unused-blue{
  font-family: monospace;
  color: var(--console-unused-var);
  white-space: pre;
}
.r-underline {
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-thickness: 1px;
  text-decoration-color: rgb(255, 52, 34);
}
.y-underline{
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-thickness: 1px;
  text-decoration-color: rgb(197, 168, 0);
}



/* code style */
.code {
  background-color: #fff67808;
  border-radius: 20px;
  padding-right: 5px;
  padding-left: 5px;
  color: rgb(222, 128, 56);
}

.falling-codes{
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

/* انیمیشن سقوط */
.falling-snippet{
  position: absolute;
  top: -80px;
  animation: fall 3s linear infinite;
  opacity: 0.85;
}

/* چرخش ۹۰ درجه فقط روی محتوا */
.snippet-inner{
  display: inline-block;
  transform: rotate(90deg);
  font-family: monospace;
  font-size: 14px;
  color: #00ff88;
  text-shadow: 0 0 8px #00ff88;
}

/* سقوط مستقیم عمودی */
@keyframes fall{
  0%{
    transform: translateY(-100px);
    opacity: 0;
  }
  10%{
    opacity: 1;
  }
  100%{
    transform: translateY(120vh);
    opacity: 0;
  }
}


@media (max-width: 640px) {
  header {
    width: 90%;
    padding: 0 12px;
  }
  .brand {
    font-size: 1rem;
  }
  .countainer {
    gap: 12px;
  }
  ul {
    font-size: 0.8rem;
  }
  .course {
    padding-top: 70px;
  }
  .home-icon {
    padding-top: 80px;
    width: 300px;
  }
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .card {
    margin-bottom: 35px;
  }
  .keeper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .down-course {
    font-size: small;
  }
}

@media (max-width: 1024px) {
  .questions-list {
    display: none;
  }
  .faq {
    max-width: 100%;
  }
  #where-sould-start {
  margin-right: 0;
  margin-left: 0;
    justify-content: center;
  }
}

