@media screen and (min-width: 1540px) {
  .container {
    max-width: 1440px;
  }
}
html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #E5E5E5;
}
*::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgb(214, 19, 23);
  cursor: pointer;
}
*::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #E5E5E5;
}

@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat-Alternates";
  src: url("../assets/fonts/MontserratAlternates-Medium.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open-Sans";
  src: url("../assets/fonts/OpenSans.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rajdhani";
  src: url("../assets/fonts/Rajdhani-Medium_new.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Open-Sans", sans-serif;
  font-weight: 400;
  line-height: 1.2;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, a {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 4rem;
  font-family: "Montserrat", sans-serif;
}

h2 {
  font-size: 2.6rem;
  font-family: "Montserrat", sans-serif;
}

h3 {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
}

h4 {
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
}

.text {
  font-size: 1.2rem;
}
.text--lg {
  font-size: 1.6rem;
}
.text--semibold {
  font-weight: 600;
}
.text--mont-alt {
  font-family: "Montserrat-Alternates", sans-serif;
}
.text--mont {
  font-family: "Montserrat", sans-serif;
}
.text--raj {
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
}
.text--white {
  color: #fff;
}
.text--red {
  color: rgb(214, 19, 23);
}
.text--gray {
  color: rgba(0, 0, 0, 0.63);
}
.text--blue-dark {
  color: #1E466C;
}
.text--blue-dark-alternate {
  color: #5485B2;
}

.btn-about {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 6px;
  cursor: pointer;
  padding: 0.5em 1em;
  color: #fff;
  border: 1px solid rgb(214, 19, 23);
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  border-radius: 6px;
  text-decoration: none;
  font-size: 1em;
  background: rgb(214, 19, 23);
  transition: all 0.5s ease;
}
.btn-about--xl {
  padding: 0.8em 1.2em;
  font-size: 1.8em;
}
.btn-about--radius-xl {
  border-radius: 27px;
}
.btn-about:hover {
  color: #fff;
  text-decoration: none !important;
  background-color: rgb(183, 15, 17);
  border: 1px solid rgb(183, 15, 17);
}
.btn-about:focus {
  color: #fff;
  text-decoration: none !important;
  background-color: rgb(183, 15, 17);
  border: 1px solid rgb(183, 15, 17);
}

.btn-alt {
  border: 1px solid transparent;
  background: linear-gradient(to bottom, #7694BA, #164589);
}
.btn-alt:hover {
  color: rgb(183, 15, 17);
  background: #fff;
}
.btn-alt:hover svg path {
  fill: rgb(183, 15, 17);
  stroke: rgb(183, 15, 17);
}
.btn-alt:focus {
  color: rgb(183, 15, 17);
  background: #fff;
}
.btn-alt:focus svg path {
  fill: rgb(183, 15, 17);
  stroke: rgb(183, 15, 17);
}

.rotate--180 {
  transform: rotate(180deg);
}

.btn-mobile__open {
  display: flex;
}
.btn-mobile__close {
  display: flex;
  align-self: end;
  margin-top: 2rem;
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1.5rem;
}

.img {
  width: 100%;
  height: auto;
}
.img--xxl {
  max-width: 1225px;
}

.video {
  position: relative;
  z-index: 10;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.25));
}
.video__img {
  filter: drop-shadow(0 0 2px #fff);
}
.video__btn {
  position: absolute;
  z-index: 11;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video svg {
  cursor: pointer;
  transition: all 1s ease;
}
.video svg:hover {
  fill: rgb(183, 15, 17);
  transform: scale(1.1);
}

.info {
  scroll-margin-top: 80px;
  background: url("../assets/bg_1.png") center/cover no-repeat, linear-gradient(180deg, #ECF7FF, #7DB3DF, #0178C0);
  background-size: 100% 100%;
  padding: 3rem 3rem calc(3rem + 180px) 3rem;
}

.solution-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -180px;
  padding-inline: 1rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.25));
}

.education {
  scroll-margin-top: 80px;
}
.education__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.education__link-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.education__link {
  background-color: #ECF7FF;
  border-radius: 10px;
  padding: 0.6rem;
  width: 220px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

#advantages {
  scroll-margin-top: 80px;
}

.advantages {
  background: url("../assets/bg_1.png") center no-repeat, linear-gradient(180deg, #ECF7FF, #7DB3DF, #0178C0);
  background-size: 100% 100%;
}
.advantages__title {
  text-align: center;
  margin-bottom: 3rem;
}
.advantages__card-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 1.5rem;
  column-gap: 6rem;
}
.advantages__card-item {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 8.5rem 1.5rem 3rem 1.5rem;
  border-radius: 14px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.25));
  margin-top: 4.5rem;
  background-image: radial-gradient(circle at top center, transparent 100px, white 100px);
  min-height: 160px;
}
.advantages__card-img-wrapper {
  position: absolute;
  z-index: 11;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
  padding: 20px;
  width: 160px;
  aspect-ratio: 1;
}
.advantages__card-img-wrapper img {
  max-width: 100px;
}
.advantages__points-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  width: 100%;
  padding: 2rem 1.5rem 2rem 1.5rem;
  border-radius: 14px;
  background-color: #fff;
}
.advantages__points-wrapper {
  margin-top: 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.advantages__points-text-wrapper {
  align-self: start;
  margin-top: -5%;
  padding: 6px 14px 6px 0;
  border-radius: 14px;
  background-color: #7DB3DF;
  filter: drop-shadow(6px 2px 4px rgba(0, 0, 0, 0.25));
}
.advantages__points-text {
  padding: 1rem 1.5rem;
  border-radius: 14px;
  background-color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
}
.advantages__points-list {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.advantages__points-item {
  position: relative;
  z-index: 10;
  padding: calc(1rem + 40px) 1rem 1.5rem 1rem;
  border-radius: 14px;
  background: linear-gradient(90deg, #7DB3DF 80%, transparent 0) 0 0/40px 4px repeat-x, linear-gradient(90deg, #7DB3DF 80%, transparent 0) 0 100%/40px 4px repeat-x, linear-gradient(0deg, #7DB3DF 80%, transparent 0) 0 0/4px 40px repeat-y, linear-gradient(0deg, #7DB3DF 80%, transparent 0) 100% 0/4px 40px repeat-y;
}
.advantages__point {
  position: absolute;
  top: 0;
  left: 2%;
  transform: translate(0, -50%);
  z-index: 11;
  max-width: 90px;
  background-color: #fff;
  border-radius: 50%;
}
.advantages__text-block {
  width: 100%;
  padding: 2rem 1.5rem;
  border-radius: 14px;
  background-color: #fff;
}

.programs {
  scroll-margin-top: 80px;
  padding: 5rem 3rem;
  position: relative;
  z-index: 1;
}
.programs__title {
  text-align: center;
  align-self: center;
}
.programs__vebinars-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.programs__vebinars-item {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
}
.programs__vebinars-item:nth-child(even) {
  flex-direction: row-reverse;
}
.programs__vebinars-item:nth-child(even) .programs__vebinars-data {
  align-self: end;
  text-align: end;
}
.programs__vebinars-item:nth-child(even) .programs__vebinars-video {
  align-self: start;
}
.programs__video-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(55% - 1rem);
}
.programs__vebinars-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-self: start;
  gap: 0.2rem;
  width: 45%;
  padding: 2.5rem 2rem;
  background-color: #ECF7FF;
  border-radius: 14px;
}
.programs__vebinars-video {
  align-self: end;
  margin-top: -1.5rem;
  width: 75%;
}
.programs__text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  width: calc(45% - 1rem);
}
.programs__link-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1.5rem;
}
.programs__vebinars-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 2rem;
  border-radius: 14px;
  background-color: #ECF7FF;
  cursor: pointer;
  border: 1px solid transparent;
}
.programs__vebinars-link * {
  transition: all 0.8s ease;
}
.programs__vebinars-link:hover {
  border: 1px solid rgb(183, 15, 17);
}
.programs__vebinars-link:hover *, .programs__vebinars-link:hover svg path {
  color: rgb(183, 15, 17);
  fill: rgb(183, 15, 17);
}
.programs__svg-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 4rem;
}
.programs__svg-wrapper svg {
  width: 60px;
  height: auto;
}
.programs__svg-wrapper span {
  margin-bottom: 10px;
}

.videotwits {
  scroll-margin-top: 80px;
  padding: 10rem 3rem;
  background: url("../assets/bg_2.png") center no-repeat, linear-gradient(180deg, #ECF7FF, #7DB3DF, #0178C0);
  background-size: 100% 100%;
}
.videotwits__title {
  text-align: center;
  align-self: center;
}
.videotwits__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.videotwits__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.experts {
  scroll-margin-top: 80px;
  padding: 5rem 3rem;
}
.experts__title {
  text-align: center;
  align-self: center;
}
.experts__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.experts__item {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  width: 100%;
  border-radius: 14px;
  padding: 1.5rem 1rem;
  background-color: #ECF7FF;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.25));
}
.experts__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.experts__img {
  margin-top: -15px;
}
.experts__img img {
  width: 120px;
}

.footer {
  background-color: #164589;
  height: 100px;
}

.modal-message {
  display: none;
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}
.modal-message.active {
  display: flex;
}
.modal-message__content {
  border-radius: 12px;
  width: 80%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  max-height: 90vh;
}
.modal-message__close {
  font-weight: bold;
  position: absolute;
  top: -25px;
  right: -25px;
  font-size: 20px;
  cursor: pointer;
  color: #fff;
}
.modal-message__close:hover {
  color: rgb(183, 15, 17);
}

@media (max-width: 1399px) {
  html {
    font-size: 14px;
  }
  .solution-wrapper {
    margin-top: -160px;
  }
  .info {
    padding-bottom: calc(3rem + 160px);
  }
  .advantages__points-text-wrapper {
    margin-top: -6%;
  }
  .advantages__card-item {
    padding: 10rem 1.5rem 3rem 1.5rem;
  }
}
@media (max-width: 1199px) {
  html {
    font-size: 12px;
  }
  .solution-wrapper {
    margin-top: -130px;
  }
  .info {
    padding-bottom: calc(3rem + 130px);
  }
  .education__link {
    width: 160px;
  }
  .advantages__card-list {
    column-gap: 2rem;
  }
  .advantages__points-text-wrapper {
    margin-top: -7%;
  }
  .programs__svg-wrapper svg {
    width: 40px;
    height: auto;
  }
  .programs__svg-wrapper span {
    margin-bottom: 5px;
  }
}
@media (max-width: 991px) {
  .solution-wrapper {
    margin-top: -100px;
  }
  .info {
    padding-bottom: calc(3rem + 100px);
  }
  .education__link-wrapper {
    justify-content: center;
  }
  .advantages__title {
    text-align: start;
    margin-bottom: 1rem;
  }
  .advantages__card-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .advantages__card-item {
    padding: 2rem 1.5rem 2rem 6rem;
    margin-top: 0;
    margin-left: 50px;
    background-image: radial-gradient(circle at left center, transparent 55px, white 55px);
  }
  .advantages__card-img-wrapper {
    padding: 16px;
    width: 90px;
    top: 50%;
    left: 0;
  }
  .advantages__card-img-wrapper img {
    max-width: 70px;
  }
  .advantages__points-wrapper {
    margin-left: 2rem;
    margin-top: 0;
    flex-direction: column-reverse;
    gap: 1.5rem;
  }
  .advantages__points-text-wrapper {
    margin-left: -2rem;
    margin-top: 0;
    padding: 0;
    background-color: transparent;
    filter: none;
  }
  .advantages__points-text {
    padding: 0;
    background-color: transparent;
    text-align: start;
  }
  .advantages__points-list {
    flex-direction: column;
  }
  .advantages__points-item {
    padding: 1.5rem 1rem 1.5rem calc(1rem + 25px);
  }
  .advantages__point {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    max-width: 60px;
  }
  .programs__vebinars-item {
    flex-direction: column;
    gap: 1.5rem;
  }
  .programs__vebinars-item:nth-child(even) {
    flex-direction: column;
  }
  .programs__video-wrapper {
    width: 100%;
  }
  .programs__text-wrapper {
    width: 100%;
  }
  .experts__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .solution-wrapper {
    margin-top: -80px;
  }
  .info {
    padding-bottom: calc(3rem + 80px);
  }
  .videotwits {
    padding: 3rem;
    background: url("../assets/bg_2-mobile.png") center no-repeat, linear-gradient(180deg, #ECF7FF, #7DB3DF, #0178C0);
    background-size: 100% 100%;
  }
  .videotwits__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .programs {
    padding: 3rem;
  }
}
@media (max-width: 575px) {
  html {
    font-size: 10px;
  }
  .advantages__card-item {
    padding: 1rem 1rem 1rem 5.5rem;
    margin-left: 35px;
    background-image: radial-gradient(circle at left center, transparent 42px, white 42px);
  }
  .advantages__card-img-wrapper {
    padding: 8px;
    width: 70px;
    top: 50%;
    left: 0;
  }
  .advantages__card-img-wrapper img {
    max-width: 50px;
  }
  .experts__img img {
    width: 80px;
  }
}
@media (max-width: 510px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.3rem;
  }
  h4 {
    font-size: 1.4rem;
  }
  .solution-wrapper {
    margin-top: -60px;
  }
  .info {
    padding-bottom: calc(3rem + 60px);
  }
  .education__link {
    width: 140px;
  }
  .programs__svg-wrapper {
    gap: 3rem;
  }
}
@media (max-width: 390px) {
  .solution-wrapper {
    margin-top: -50px;
  }
  .info {
    padding-bottom: calc(3rem + 50px);
  }
}

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