:root {
  --color-dark-blue: #5078e0;
  --color-light-blue: #A3CCF4;
  --color-blue: #6389DF;
  --color-white: #ffffff;
  --color-black: #0A0A0A;
  --color-gray: #797979;
  --color-link-hover-dark-blue: #3350a9;
  --color-btn-hover-dark-blue: #3350a9;
  --color-btn-hover-light-blue: #95bbe3;
  --border-radius-xs: 0.3rem;
  --border-radius-s: 1.5rem;
  --border-radius-md: 2.8rem;
  --font-family: "Nunito-Sans", sans-serif;
  --drop-shadow-btn: rgba(0, 0, 0, 0.17);
  --drop-shadow-link: rgba(0, 0, 0, 0.25);
}

@font-face {
  font-family: "Nunito-Sans";
  src: url("fonts/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
.js_reg_auth {
  display: none !important;
}

@media screen and (min-width: 1540px) {
  .container {
    max-width: 1400px;
  }
}
body {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  padding: 0;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

h1 {
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.4;
}

h2 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.4;
}

h3 {
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1.2;
}

h4 {
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.15;
}

h5 {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1;
}

h6 {
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1.3;
}

p {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.1;
}

.gradient-text--diagonal {
  background: linear-gradient(28deg, var(--color-light-blue), var(--color-dark-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.img {
  max-width: 100%;
  height: auto;
}
.img--min {
  width: 75%;
}

.btn {
  border-radius: var(--border-radius-xs);
  padding: 1rem 1.5rem;
  color: var(--color-white);
  background-color: var(--color-dark-blue);
  transition: 0.25s ease;
  font-weight: 600;
  font-size: 2rem;
}
.btn--wrapper {
  display: flex;
}
.btn:hover {
  color: var(--color-white);
  background-color: var(--color-btn-hover-dark-blue);
}
.btn--shadow {
  box-shadow: 6px 4px 10px 0 var(--drop-shadow-btn);
}
.btn--light-blue {
  background-color: #aa355b;
}
.btn--light-blue:hover {
  color: currentColor;
  background-color: #c03764;
}

.link {
  display: flex;
  align-items: center;
  color: var(--color-dark-blue);
  font-weight: 600;
  font-size: 2rem;
  transition: 0.25s ease;
}
.link--img {
  gap: 0.75rem;
}
.link__svg path {
  transition: fill 0.25s ease, stroke 0.25s ease;
  stroke: currentColor;
}
.link__svg path:hover {
  stroke: var(--color-link-hover-dark-blue);
}
.link--decorate {
  border-bottom: 2px solid var(--color-dark-blue);
}
.link--decorate:hover {
  border-bottom: 2px solid var(--color-link-hover-dark-blue);
}
.link--shadow {
  filter: drop-shadow(0 4px 2px var(--drop-shadow-link));
}
.link:hover {
  color: var(--color-link-hover-dark-blue);
}

.text--color-white {
  color: var(--color-white);
}
.text--color-gray {
  color: var(--color-gray);
}

.animated {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animated.show {
  opacity: 1;
  transform: translateY(0);
}

.info__logo {
  max-width: 300px;
  height: auto;
  margin-bottom: 5rem;
}
.info__img {
  width: 100%;
}
.info__container {
  margin-bottom: 2.2rem;
}
.info__content {
  display: flex;
  flex-direction: column;
  gap: 3.4rem;
}
.info__skills {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3.25rem 2rem;
  background: center no-repeat url("assets/back_skills_6.png");
  background-size: 100% 100%;
}
.info__list {
  margin: 0;
  gap: 2rem;
}
.info__item {
  display: flex;
  flex-direction: column;
  place-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background-color: aliceblue;
  border-radius: var(--border-radius-s);
}
.info__text {
  text-align: center;
  font-size: 1.3rem;
}

.advantages {
  padding: 4.5rem 0.5rem;
}
.advantages__content {
  display: flex;
  align-items: center;
}
.advantages__tooltip {
  position: absolute;
  width: 41%;
}
.advantages__tooltip--right-top {
  left: 65%;
  right: 0;
  top: -5%;
  bottom: 0;
}
.advantages__tooltip--right-bottom {
  left: 60%;
  right: 0;
  top: 65%;
  bottom: 0;
}
.advantages__tooltip--left-top {
  left: 3%;
  right: 0;
  top: -1%;
  bottom: 0;
}
.advantages__tooltip--left-bottom {
  left: 5%;
  right: 0;
  top: 60%;
  bottom: 0;
}

.img-container {
  margin: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.img-container img {
  width: 100%;
  height: auto;
}

.fox-span {
  color: #170cbd;
}

.fox-span-2 {
  color: #aa355b;
}

.contacts {
  padding: 10px 0;
  border-top: 3px solid #e30613;
  border-bottom: 3px solid #312783;
  text-align: center;
  line-height: 1.4;
  font-size: 18px;
}
.contacts a {
  color: #005fb0;
  text-decoration: none;
}

.program {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  gap: 10px;
}
.program__title {
  text-align: center;
}
.program__list {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  width: 100%;
}
.program__item {
  display: flex;
  gap: 4.5rem;
  justify-content: flex-start;
  align-items: center;
  color: var(--color-white);
  background-color: #170cbd;
  background-size: 100% 100%;
  border-radius: var(--border-radius-md);
}
.program__item__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.program__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.program__img {
  margin-top: -110px;
  width: 100%;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: auto;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-cont {
  padding: 1rem;
  border-radius: var(--border-radius-xs);
  max-width: 600px;
  width: 90%;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-cont {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: -1%;
  right: -1%;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  cursor: pointer;
}

@media (min-width: 1540px) {
  .program__item {
    flex-direction: row;
    padding: 30px 40px;
  }
}
@media (max-width: 1200px) {
  .program__item {
    flex-direction: column;
    padding: 2.5rem 2.5rem 0 2.5rem;
  }
}
@media (min-width: 1200px) and (max-width: 1540px) {
  .program__item {
    flex-direction: row;
    gap: 4.5rem;
    padding: 2.5rem 2.5rem 0 2.5rem;
  }
  .program__img {
    min-width: 336px;
  }
}
@media (max-width: 992px) {
  .info__skills {
    text-align: center;
    background: var(--color-blue);
    border-radius: var(--border-radius-s);
    padding: 1rem;
  }
  .info__text {
    font-size: 1.5rem;
  }
  .advantages__content {
    flex-direction: column;
    text-align: center;
  }
  .btn--wrapper {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .modal-cont {
    height: fit-content;
  }
  .program__wrapper {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 680px) {
  html {
    font-size: 12px;
  }
  .advantages {
    padding: 1.5rem 0.5rem;
  }
  .advantages__tooltip {
    width: 40%;
  }
  .advantages__tooltip--right-bottom {
    left: 58%;
  }
  .advantages__tooltip--right-top {
    left: 60%;
  }
  .advantages__tooltip-content {
    gap: 0.05rem;
  }
  .advantages__tooltip-title {
    font-weight: 700;
    font-size: 0.6rem;
    line-height: 1;
  }
  .advantages__tooltip-text {
    font-weight: 400;
    font-size: 0.5rem;
    line-height: 1;
  }
  .program {
    padding: 1.5rem 1rem;
  }
  .program__title {
    margin-bottom: 10rem;
  }
  .program__item {
    gap: 2rem;
  }
}
@media (max-width: 450px) {
  html {
    font-size: 10px;
  }
  .link {
    padding-bottom: 5px;
    display: flex;
    justify-content: center;
  }
  .info__logo {
    max-width: 180px;
    margin-bottom: 2rem;
  }
}

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