* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #121212;
  --accent-color: #B497FF;
  --second-accent-color: #FF6d90;
  --third-accent-color: #FFd1e3;
  --text-color: #EDEDED;
  --body-font: "Inter", sans-serif;
  --heading-font: "DM Serif Display", serif;
  --h1-font-size: clamp(40px, 6vw, 60px);
  --h2-font-size: clamp(32px, 4.8vw, 40px);
  --h3-font-size: clamp(26px, 3.8vw, 34px);
  --biggerbody-font-size: clamp(22px, 3.2vw, 32px);
  --body-font-size: clamp(18px, 2.4vw, 24px);
  --smallbody-font-size: clamp(16px, 2vw, 18px);
  --smallerbody-font-size: 16px;
  --button-font-size:clamp(16px, 1.8vw, 18px);
  --button-font-weight: bold;
  --footer-font-size: 14px;
  --subtitle-font-size: clamp(22px, 3.2vw, 32px);
  --subtitle-font-weight: 500;
}

body {
  font-family: var(--body-font);
  font-size: var(--body-font-size);
  color: var(--text-color);
  background-color: var(--primary-color);
  line-height: 160%;
}
body h1, body h2, body h3 {
  font-family: var(--heading-font);
  color: var(--text-color);
  line-height: 115%;
}
body h1 {
  font-size: var(--h1-font-size);
}
body h2 {
  font-size: var(--h2-font-size);
}
body h3 {
  font-size: var(--h3-font-size);
}
body .menu-nav_link {
  font-family: var(--body-font);
  font-size: var(--body-font-size);
  color: var(--text-color);
  line-height: 160%;
}
body .btn {
  font-family: var(--body-font);
  font-size: var(--button-font-size);
  font-weight: var(--button-font-weight);
  color: var(--primary-color);
  background-color: var(--accent-color);
  text-decoration: none;
  border-radius: 40px;
  padding: 10px 40px;
  transition: all 0.3s ease;
}
body .btn:hover {
  background-color: var(--second-accent-color);
  color: var(--text-color);
}

.section {
  padding: clamp(40px, 8vw, 100px) clamp(20px, 5vw, 100px) !important;
  max-width: 100%;
}

.container {
  gap: 40px;
  width: fit-content;
  max-width: 100%;
  max-width: 1280px;
  margin: auto;
  padding-inline: clamp(16px, 5vw, 64px);
  margin: 0 auto;
  width: 100%;
}

.cv-img {
  width: clamp(300px, 20vw, 600px);
  height: auto;
}

.text-center {
  text-align: center !important;
}

.cv-sections {
  margin-bottom: 2.5rem;
}

.cv-subsections {
  margin-bottom: 2rem;
}

.cv-ul.contacts {
  list-style: none;
  padding: 0;
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1.1rem;
}
.cv-ul.contacts li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.cv-ul.contacts li i {
  color: #B497FF;
}

.divider {
  width: 2px;
  height: 100%;
  background-color: #FF6d90;
}

.row.justify-content-center {
  gap: 25px;
  margin-top: 3rem;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

*, ::after, ::before {
  box-sizing: border-box;
}

.col-content {
  padding-inline: 0.5rem;
}

@media screen and (max-width: 768px) {
  .cv-sections, .cv-subsections {
    margin-bottom: 2rem;
  }
  .divider {
    display: none;
  }
  .col-md-5,
  .col-md-1 {
    width: 100%;
    padding: 0px 20px;
  }
}
div {
  display: block;
  unicode-bidi: isolate;
}

/*# sourceMappingURL=curriculum.css.map */
