/* Geologica */
@font-face {
  font-family: "Geologica";
  src: url("../fonts/geologica/Geologica-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/* GENERAL */
.visually-hidden {
  position: absolute;
  width: 0.1rem;
  height: 0.1rem;
  margin: -0.1rem;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

/* ANIMATION */
@keyframes stroke-dash {
  0% {
    stroke-dashoffset: 2570;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/* SITE-FOOTER */
.site-footer {
  padding-bottom: 1.5rem;
  font-size: 1.2rem;
  line-height: 1.33;
  font-weight: 400;
  color: rgba(130, 190, 233, 0.5);
  background-image: linear-gradient(89.71deg, #293360 7.2%, #293360 50.15%, #2A6FC4 163.73%);
}

.site-footer__animation-text {
  position: relative;
  top: -1.5rem;
}
@media (min-width: 576px) {
  .site-footer__animation-text {
    top: -3rem;
  }
}

.site-footer__animation-path {
  stroke-dasharray: 2570;
  animation: stroke-dash 3s linear alternate infinite;
}

.site-footer__row {
  row-gap: 2rem;
}
.site-footer__row--bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 0.1rem solid rgba(130, 190, 233, 0.2);
}

.site-footer__col {
  margin-bottom: 2rem;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .site-footer__col {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .site-footer__col {
    margin-bottom: 0;
  }
}

.site-footer__logo {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 18.5rem;
  line-height: 1.17;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  transition: color 0.2s ease-in;
}
.site-footer__logo:hover, .site-footer__logo:focus {
  color: #ffffff;
  text-decoration: none;
}

.site-footer__logo-icon {
  fill: #ffffff;
}

.site-footer__contacts-list {
  margin-top: 3.5rem;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .site-footer__contacts-list {
    flex-basis: calc(50% - 1.5rem);
    margin-top: 0;
  }
}

.site-footer__contacts-item:not(:last-child) {
  margin-bottom: 1rem;
}

.site-footer__contacts-link {
  font-size: 1.6rem;
  line-height: 1.31;
  color: #82BEE9;
  transition: color 0.2s ease-in;
}
.site-footer__contacts-link:hover, .site-footer__contacts-link:focus {
  color: #ffffff;
  text-decoration: none;
}

.site-footer__menu-list {
  display: grid;
  gap: 2rem 3rem;
  grid-auto-flow: dense;
}
@media (min-width: 576px) {
  .site-footer__menu-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .site-footer__menu-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 576px) {
  .site-footer__menu-item:first-child {
    grid-column: 1/-1;
  }
}
@media (min-width: 576px) {
  .site-footer__menu-item:first-child .site-footer__submenu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 3rem;
  }
}
@media (min-width: 576px) {
  .site-footer__menu-item:first-child .site-footer__submenu-item {
    flex-basis: calc(50% - 1.5rem);
  }
}
@media (min-width: 992px) {
  .site-footer__menu-item:first-child .site-footer__submenu-item {
    flex-basis: calc(33.3333333333% - 2rem);
  }
}
@media (min-width: 576px) {
  .site-footer__menu-item:nth-child(n+2):nth-child(-n+4) {
    grid-column: 1/2;
  }
}
@media (min-width: 576px) {
  .site-footer__menu-item:nth-child(n+5):nth-child(-n+7) {
    grid-column: 1/2;
  }
}
@media (min-width: 992px) {
  .site-footer__menu-item:nth-child(n+5):nth-child(-n+7) {
    grid-column: 2/3;
  }
}
@media (min-width: 576px) {
  .site-footer__menu-item:nth-child(8) {
    grid-column: 2/3;
  }
}
@media (min-width: 576px) {
  .site-footer__menu-item:nth-child(9) {
    grid-column: -1/-2;
    grid-row: 3/span 4;
  }
}
@media (min-width: 992px) {
  .site-footer__menu-item:nth-child(9) {
    grid-row: 2/span 4;
  }
}
@media (max-width: 575.98px) {
  .site-footer__menu-item--children .site-footer__menu-wrapper {
    position: relative;
    display: inline-block;
    padding-right: 4.5rem;
  }
  .site-footer__menu-item--children .site-footer__menu-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 4rem;
    height: 2rem;
    background: url("../img/shevron.svg") no-repeat center/auto;
    transition: transform 0.2s ease-in;
  }
  .site-footer__menu-item--children .site-footer__menu-wrapper.open::after {
    transform: rotate(-180deg);
  }
}
@media (max-width: 575.98px) {
  .site-footer__menu-item--children .site-footer__submenu-list {
    display: none;
  }
}
@media (min-width: 992px) {
  .site-footer__menu-item--promo {
    grid-column: 1/2;
    grid-row: 5/6;
  }
}
.site-footer__menu-item--promo .site-footer__menu-link {
  position: relative;
  padding-left: 2.8rem;
  color: #0AAF48;
  text-decoration: none;
  transition: color 0.2s ease-in;
}
.site-footer__menu-item--promo .site-footer__menu-link:hover, .site-footer__menu-item--promo .site-footer__menu-link:focus {
  color: #ffffff;
  text-decoration: none;
}
.site-footer__menu-item--promo .site-footer__menu-icon {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2rem;
  height: 2rem;
  transform: translateY(-50%);
}

.site-footer__menu-link {
  font-size: 1.8rem;
  line-height: 1.17;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-text-decoration: underline transparent 0.1rem solid;
          text-decoration: underline transparent 0.1rem solid;
  text-underline-offset: 0.4rem;
  transition: text-decoration-color 0.2s ease-in;
}
.site-footer__menu-link:hover, .site-footer__menu-link:focus {
  color: #ffffff;
  text-decoration-color: #ffffff;
}

.site-footer__submenu-list {
  margin-top: 2rem;
}
@media (max-width: 575.98px) {
  .site-footer__submenu-list {
    margin-bottom: 1rem;
  }
}

.site-footer__submenu-item:not(:last-child) {
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  .site-footer__submenu-item:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.site-footer__submenu-item ul {
  display: none;
}
@media (min-width: 576px) {
  .site-footer__submenu-item ul {
    display: block;
    margin-top: 1rem;
  }
}
.site-footer__submenu-item a:not(.site-footer__submenu-link) {
  line-height: 1.67;
  color: rgba(130, 190, 233, 0.7);
  transition: color 0.2s ease-in;
}
.site-footer__submenu-item a:not(.site-footer__submenu-link):hover, .site-footer__submenu-item a:not(.site-footer__submenu-link):focus {
  color: #82BEE9;
  text-decoration: none;
}

.site-footer__submenu-link {
  font-size: 1.6rem;
  line-height: 1.31;
  color: #82BEE9;
  transition: color 0.2s ease-in;
}
.site-footer__submenu-link:hover, .site-footer__submenu-link:focus {
  color: #ffffff;
  text-decoration: none;
}

.site-footer__social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.site-footer__social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(130, 190, 233, 0.2);
  border-radius: 50%;
  transition: background-color 0.2s ease-in;
}
.site-footer__social-link:hover, .site-footer__social-link:focus {
  background-color: rgba(130, 190, 233, 0.5);
}

.site-footer__social-icon {
  fill: #ffffff;
}

.site-footer__link {
  display: inline-block;
  color: inherit;
  transition: color 0.2s ease-in;
}
.site-footer__link:not(:last-child) {
  margin-bottom: 1rem;
}
.site-footer__link:hover, .site-footer__link:focus {
  color: #82BEE9;
  text-decoration: none;
}

.site-footer__copyright {
  display: block;
  font-size: 1.2rem;
}

.site-footer__rating {
  border: 0;
}

/* NEW DESKTOP MENU */
.dropdown.nav-item:hover .dropdown-menu--large {
  display: flex;
}

.dropdown-menu__sublist {
  font-size: 1.2rem;
  line-height: 1.67;
}
.dropdown-menu__sublist a {
  color: #737789;
  text-decoration: none;
  transition: color 0.2s ease-in;
}
.dropdown-menu__sublist a:hover {
  color: #293360;
  text-decoration: none;
}
.dropdown-menu--large {
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  width: 105rem;
}
@media (min-width: 1400px) {
  .dropdown-menu--large {
    width: 115rem;
  }
}
.dropdown-menu--large > li {
  width: calc(33.3333333333% - 2rem);
}
.dropdown-menu--large::before {
  left: 12.5rem;
}

.dropdown-item {
  font-size: 1.6rem;
  color: #293360;
}

/* NEW MOBILE MENU */
.navbar-mobile__menu-list {
  margin-top: 4rem;
  margin-bottom: 6rem;
  font-size: 1.2rem;
}
.navbar-mobile__contacts-list {
  margin-bottom: 3rem;
}
@media (min-width: 576px) {
  .navbar-mobile__contacts-list {
    display: none;
  }
}

/* VACANCIES */
.vacancies {
  padding-top: 5.5rem;
  padding-bottom: 6.5rem;
  font-size: 1.6rem;
  line-height: 1.31;
  color: #293360;
  background-color: #EBEFF9;
}
.vacancies--empty {
  margin-bottom: -6.3rem;
  padding-bottom: 13.5rem;
}
.vacancies--empty .vacancies__title {
  font-size: 2.3rem;
}
.vacancies--empty .vacancies__img {
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

.vacancies__row {
  row-gap: 3rem;
}

.vacancies__title {
  margin-bottom: 0.86em;
}

.vacancies__description a {
  color: #1971DD;
}
.vacancies__description a:hover, .vacancies__description a:focus {
  text-decoration: underline;
}

.vacancies__img {
  display: block;
  width: 100%;
  border-radius: 0.8rem;
}

.vacancies__list {
  margin-top: 3rem;
}

.vacancies__item {
  padding: 2.5rem;
  border-radius: 0.8rem;
  color: #060606;
  background-color: #ffffff;
}
@media (min-width: 576px) {
  .vacancies__item {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.vacancies__item:not(:last-child) {
  margin-bottom: 2rem;
}
.vacancies__item-title {
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 1.22;
}
@media (min-width: 576px) {
  .vacancies__item-title {
    font-size: 2.3rem;
  }
}
.vacancies__item-button {
  position: relative;
  display: block;
  width: 100%;
  padding-left: 3rem;
  padding-right: 0;
  border: 0;
  background-color: transparent;
  text-align: left;
}
@media (min-width: 576px) {
  .vacancies__item-button {
    padding-left: 5.5rem;
  }
}
.vacancies__item-button::before, .vacancies__item-button::after {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 1.6rem;
  height: 0.4rem;
  background-color: #1971DD;
  transform: rotate(0);
  transition: transform 0.15s ease-in;
}
@media (min-width: 576px) {
  .vacancies__item-button::before, .vacancies__item-button::after {
    left: 0.8rem;
  }
}
.vacancies__item-button.collapsed::before {
  transform: rotate(180deg);
}
.vacancies__item-button.collapsed::after {
  transform: rotate(90deg);
}
.vacancies__item-button:hover, .vacancies__item-button:focus {
  color: #1971DD;
}
.vacancies__item-description {
  max-width: 90rem;
  margin-top: 3.5rem;
}
@media (min-width: 768px) {
  .vacancies__item-description {
    padding-left: 5.5rem;
    padding-right: 5.5rem;
  }
}
.vacancies__item-term {
  margin-bottom: 0.83em;
  font-size: 1.6rem;
  line-height: 1.17;
  font-weight: 400;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .vacancies__item-term {
    font-size: 1.8rem;
  }
}
.vacancies__item-data {
  margin-bottom: 3rem;
}
.vacancies__item-data ul,
.vacancies__item-data li {
  list-style-type: disc;
}
.vacancies__item-data ul::marker,
.vacancies__item-data li::marker {
  color: #1971DD;
}
.vacancies__item-data ul {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding-left: 1.8rem;
}
.vacancies__item-data li {
  margin-bottom: 1rem;
}
.vacancies__item-data p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.vacancies__button {
  margin-top: 0.5rem;
}

/* QUESTION BLOCK */
.question-block--vacancies {
  margin-bottom: -6.3rem;
}
.question-block--vacancies a {
  color: #1971DD;
}
.question-block--vacancies a:hover, .question-block--vacancies a:focus {
  text-decoration: underline;
}

/* NEW-ARTICLE */
.new-article {
  font-size: 1.6rem;
  line-height: 1.31;
  color: #060606;
  background-color: #ffffff;
}

.article__header {
  padding-top: 3rem;
  padding-bottom: 7rem;
  color: #293360;
  background-color: #EBEFF9;
}

.article__meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4rem;
  margin-bottom: 3rem;
}
.article__meta-item {
  position: relative;
  padding-left: 3rem;
}
.article__meta-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.1rem;
  height: 2.1rem;
  background-position: center;
  background-repeat: no-repeat;
}
.article__meta-item--views::before {
  background-image: url("../img/icon-eye.svg");
}
.article__meta-item--duration::before {
  background-image: url("../img/icon-clock.svg");
}
.article__meta-item--date::before {
  background-image: url("../img/icon-calendar.svg");
}

.article__author {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem;
  margin-bottom: 2.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 0.1rem solid #C1CCE9;
  border-bottom: 0.1rem solid #C1CCE9;
}
.article__author-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  overflow: hidden;
}
.article__author-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article__author-position {
  margin-top: 0.4rem;
  font-size: 1.2rem;
  line-height: 1.33;
  color: #737789;
}

.article__title {
  font-size: 2.7rem;
  line-height: 1.19;
  font-weight: 500;
}

.article__navigation-list {
  margin-top: 3rem;
  line-height: 1.37;
}
.article__navigation-item:not(:last-child) {
  margin-bottom: 1rem;
}
.article__navigation-link {
  color: #1971DD;
}
.article__navigation-link::after {
  content: "";
  display: inline-block;
  height: 1.2rem;
  width: 0.8rem;
  margin-left: 0.6rem;
  background: url("../img/icon-arrow-down.svg") no-repeat center;
}
.article__navigation-link:hover, .article__navigation-link:focus {
  color: #1971DD;
  text-decoration: underline;
}

.article__content {
  padding-top: 3rem;
  padding-bottom: 4rem;
}
.article__content p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.article__content h2,
.article__content h3 {
  margin-top: 4rem;
  margin-bottom: 2rem;
  color: #293360;
}
.article__content h2 {
  font-size: 2.3rem;
  line-height: 1.19;
}
@media (min-width: 576px) {
  .article__content h2 {
    font-size: 2.7rem;
  }
}
.article__content h3 {
  font-size: 2rem;
  line-height: 1.21;
  font-weight: 400;
}
@media (min-width: 576px) {
  .article__content h3 {
    font-size: 2.3rem;
  }
}
.article__content ul, .article__content ul > li {
  list-style-type: disc;
}
.article__content ul::marker, .article__content ul > li::marker {
  color: #1971DD;
}
.article__content ol, .article__content ol > li {
  list-style-type: decimal;
}
.article__content ul,
.article__content ol {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-left: 2rem;
}
@media (min-width: 576px) {
  .article__content ul,
  .article__content ol {
    padding-left: 5.8rem;
  }
}
.article__content li {
  margin-bottom: 1rem;
}
.article__content img,
.article__content figure {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.article__content img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 1.1rem;
}
.article__content figure img {
  margin-top: 0;
  margin-bottom: 0;
}
.article__content figcaption {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.33;
  color: #737789;
  text-align: right;
}
.article__content a {
  color: #1971DD;
  text-decoration: underline;
}
.article__content a:hover, .article__content a:focus {
  text-decoration: none;
}
.article__content h4,
.article__content h5 {
  font-size: 1.6rem;
  line-height: 1.31;
  color: #060606;
}
.article__content h4 + p,
.article__content h5 + p {
  margin-top: 0;
}
.article__content b,
.article__content strong,
.article__content h4,
.article__content h5 {
  font-weight: 700 !important;
}
.article__content dt,
.article__content h4,
.article__content h5 {
  margin-bottom: 0.5rem;
}
.article__content blockquote {
  position: relative;
  margin-top: 4rem;
  margin-bottom: 4rem;
  padding: 2.5rem 4rem 3rem;
  border-radius: 1.1rem;
  color: #2E305D;
  background-color: #EBEFF9;
  text-align: center;
}
@media (min-width: 576px) {
  .article__content blockquote {
    padding: 2.5rem 8rem 3rem;
  }
}
.article__content blockquote::before, .article__content blockquote::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../img/icon-cite-quote.svg") no-repeat center/contain;
}
@media (min-width: 576px) {
  .article__content blockquote::before, .article__content blockquote::after {
    width: 3rem;
    height: 3rem;
  }
}
.article__content blockquote::before {
  left: 1.2rem;
  transform: translateY(-50%);
}
.article__content blockquote::after {
  right: 1.2rem;
  transform: translateY(-50%) rotate(180deg);
}
.article__content blockquote p {
  margin-top: 0;
  margin-bottom: 3.4rem;
}
.article__content cite {
  font-style: normal;
}
.article__content cite span {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.2rem;
  line-height: 1.33;
  color: #737789;
}
.article__content .note {
  position: relative;
  margin-top: 4rem;
  margin-bottom: 4rem;
  padding: 2.5rem 3rem 2.5rem 3.7rem;
  font-size: 1.6rem;
  line-height: 1.3;
  border-radius: 1.1rem;
  color: #293360;
  background: rgba(65, 195, 255, 0.2);
  overflow: hidden;
}
.article__content .note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0.7rem;
  background-color: #56B9E4;
}
.article__content .note *:first-child {
  margin-top: 0;
}
.article__content .note *:last-child {
  margin-bottom: 0;
}
.article__content .note img {
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.article__content .note p,
.article__content .note ul,
.article__content .note ol {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.article__content .note ul,
.article__content .note ol {
  padding-left: 3rem;
}
.article__content .special {
  margin-top: 4rem;
  margin-bottom: 4rem;
  padding: 3.5rem 2rem;
  border-radius: 1.1rem;
  color: #737789;
  background-image: linear-gradient(268.81deg, #CBEFC3 6.42%, #EFF5FF 55.91%, #B9C1E4 93.14%);
  text-align: center;
}
@media (min-width: 576px) {
  .article__content .special {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
.article__content .special h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.article__content .special .btn {
  margin-bottom: 0;
}
.article__content .btn-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.article__content .btn-wrap .btn-success,
.article__content .btn-wrap .more-link {
  margin-top: 0;
  margin-bottom: 0;
}
.article__content .btn-success,
.article__content .more-link {
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-decoration: none;
}
.article__content .btn-success {
  color: #ffffff;
}

.article__col > *:first-child {
  margin-top: 0;
}
.article__col > *:last-child {
  margin-bottom: 0;
}

.article__footer-source {
  font-style: italic;
}
.article__footer a {
  color: #1971DD;
  text-decoration: underline;
}
.article__footer a:hover, .article__footer a:focus {
  text-decoration: none;
}

.article__publication-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 7rem;
  font-size: 1.4rem;
  line-height: 1.29;
  color: #737789;
}
.article__publication-list:not(:first-child) {
  margin-top: 4rem;
}
.article__publication-item:not(:last-child) {
  position: relative;
}
.article__publication-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3.8rem;
  width: 0.8rem;
  height: 0.8rem;
  background-color: #1971DD;
  border-radius: 50%;
  transform: translateY(-50%);
}
.article__publication-date {
  color: #293360;
}

/* CONTACTS */
.contacts {
  padding-top: 5rem;
  padding-bottom: 5.5rem;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #737789;
}
.contacts + .question-block {
  margin-bottom: -6.5rem;
}

.contacts__subtitle,
.contacts__list {
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
  color: #293360;
}
@media (min-width: 576px) {
  .contacts__subtitle,
  .contacts__list {
    font-size: 2.3rem;
  }
}

.contacts__subtitle {
  margin-bottom: 1.3em;
}

.contacts__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 5rem;
}
@media (min-width: 576px) {
  .contacts__list {
    gap: 2rem;
  }
}
.contacts__list--social {
  color: #ffffff;
}

.contacts__link {
  position: relative;
  display: block;
  padding: 1.6rem 2.6rem 1.6rem 6rem;
  text-decoration: none;
  background-color: #EBEFF9;
  border-radius: 0.8rem;
  transition: background-color 0.2s ease-in-out;
}
.contacts__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.4rem;
  width: 3.5rem;
  height: 3.5rem;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
}
.contacts__link:hover {
  background-color: #d7dff3;
}
.contacts__link--phone::before {
  background-image: url("../img/contacts-phone.svg");
}
.contacts__link--mail::before {
  background-image: url("../img/contacts-email.svg");
}
.contacts__link--telegram {
  background-color: #269BD9;
}
.contacts__link--telegram::before {
  background-image: url("../img/contacts-telegram.svg");
}
.contacts__link--telegram:hover {
  background-color: #228cc3;
}
.contacts__link--vk {
  background-color: #0077FF;
}
.contacts__link--vk::before {
  background-image: url("../img/contacts-vk.svg");
}
.contacts__link--vk:hover {
  background-color: #006be6;
}
.contacts__link--dzen {
  background-color: #36383D;
}
.contacts__link--dzen::before {
  background-image: url("../img/contacts-dzen.svg");
}
.contacts__link--dzen:hover {
  background-color: #2a2c2f;
}
.contacts__link--rutube {
  background-color: #100943;
}
.contacts__link--rutube::before {
  background-image: url("../img/contacts-rutube.svg");
}
.contacts__link--rutube:hover {
  background-color: #0b062d;
}
.contacts__link:hover, .contacts__link:focus {
  text-decoration: none;
}

.contacts__meta {
  margin-bottom: 5.5rem;
}
.contacts__meta-content p,
.contacts__meta-content address {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.contacts__address-list {
  row-gap: 3rem;
}
.contacts__address-item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 8rem 2rem 3rem;
  border-radius: 0.8rem;
  background-color: #EBEFF9;
}
@media (min-width: 576px) {
  .contacts__address-item {
    padding: 3rem 4.5rem 4.5rem 8.5rem;
  }
}
.contacts__address-item::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  width: 3.8rem;
  height: 4.6rem;
  background: url("../img/contacts-map-pin.svg") no-repeat center;
}
@media (min-width: 576px) {
  .contacts__address-item::before {
    top: 3rem;
    left: 2rem;
  }
}
.contacts__address-item .contacts__subtitle {
  margin-bottom: 1.6rem;
}
.contacts__address-text {
  margin-bottom: 1.8rem;
}
.contacts__address-text--metro {
  position: relative;
  padding-left: 4rem;
  margin-bottom: 4.5rem;
}
.contacts__address-text--metro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.7rem;
  height: 1.8rem;
  background: url("../img/contacts-metro.svg") no-repeat center;
}
.contacts__address-link {
  margin-top: auto;
}
.contacts__address-link:hover {
  color: #1971DD;
}

.contacts__map {
  position: relative;
  height: 34rem;
  margin-top: 3.5rem;
  overflow: hidden;
}
.contacts__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* MODAL */
.modal-video .modal-content {
  background-color: transparent;
}
.modal-video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: none;
}
.modal-video--clip iframe {
  aspect-ratio: 9/16;
}
@media (min-width: 576px) {
  .modal-video .modal-dialog {
    margin: 1.75rem auto;
    max-width: 50rem;
  }
  .modal-video--clip .modal-dialog {
    max-width: 28rem;
  }
}
@media (min-width: 768px) {
  .modal-video .modal-dialog {
    max-width: 70rem;
  }
  .modal-video--clip .modal-dialog {
    max-width: 32.5rem;
  }
}
@media (min-width: 992px) {
  .modal-video .modal-dialog {
    max-width: 90rem;
  }
  .modal-video--clip .modal-dialog {
    max-width: 32.5rem;
  }
}

/* ARTICLES */
.articles__slider,
.articles__slider .slick-list,
.articles__slider .slick-track,
.articles__slider.slick-initialized .preview-block__item {
  display: flex;
}

@media screen and (min-width: 992px) {
  .articles__slider.slick-initialized .preview-block__item {
    margin: 0 1rem;
  }
}
.articles__slider.slick-initialized .preview-block__item:hover {
  top: 0;
  text-decoration: none;
  box-shadow: none;
}

.articles__slider-nav {
  position: relative;
  width: 12rem;
  height: 5.4rem;
}

.articles__slider-nav .slick-arrow {
  width: 5.4rem;
  height: 5.4rem;
  background-color: rgba(25, 113, 221, 0.05);
  border-radius: 50%;
  bottom: 0;
  transition: background-color 0.2s;
}

.articles__slider-nav .slick-prev {
  left: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIzIDI2TDE3IDIwTDIzIDE0IiBzdHJva2U9IiMyOTMzNjAiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=");
}

.articles__slider-nav .slick-next {
  right: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE3IDI2TDIzIDIwTDE3IDE0IiBzdHJva2U9IiMyOTMzNjAiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=");
}

.articles__slider-nav .slick-arrow:not(.slick-arrow_circle):hover,
.articles__slider-nav .slick-arrow:not(.slick-arrow_circle):focus {
  background-color: rgba(41, 51, 96, 0.1);
  transform: none;
}

.preview-block__item.slick-slide:hover .preview-block__title {
  color: #1971DD;
}

.articles {
  padding-top: 5.5rem;
  padding-bottom: 6.5rem;
  background-color: #EBEFF9;
}

.articles--news {
  background-color: #ffffff;
}

.articles__row {
  row-gap: 3rem;
}

.articles__subscribe {
  position: relative;
  width: 100%;
  padding: 2rem 2.5rem 3rem;
  font-size: 1.3rem;
  line-height: 1.3;
  color: #293360;
  background-image: linear-gradient(48.93deg, #B6ECB0 8.11%, #8EF3E4 58.54%, #9BC3FF 111.67%);
  text-align: center;
  border-radius: 0.8rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .articles__subscribe {
    min-height: 37rem;
  }
}
.articles__subscribe::before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 21rem;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 50%, 50% 100%, 0 50%);
          clip-path: polygon(0 0, 100% 0, 100% 50%, 50% 100%, 0 50%);
  background: linear-gradient(182.46deg, #95EBD3 5.66%, #13CB8D 88.39%);
}
.articles__subscribe--news {
  background: linear-gradient(46.77deg, #BEFFC3 -1.87%, #E7DBFF 31.48%, #D0BAFF 63.02%, #72B0FF 121.47%);
}
.articles__subscribe--news::before {
  background: linear-gradient(139.74deg, #B8D7FF 4.67%, #AB8CF0 72.89%);
}
.articles__subscribe form {
  position: relative;
}
.articles__subscribe .request-block-form {
  margin-top: 0;
  max-width: 100%;
}
.articles__subscribe .btn {
  margin-top: 1.5rem;
}

.articles__subscribe-title {
  position: relative;
  margin-bottom: 0.77em;
  font-size: 1.8rem;
  line-height: 1;
}

.articles__subscribe-description {
  position: relative;
  margin-bottom: 1.5rem;
}

.articles__subscribe-input {
  width: 100%;
  margin-bottom: 1.87em;
  padding: 0.7rem 1.3rem;
  font-size: 1.6rem;
  border-radius: 0.4rem;
  border: none;
  background-color: #ffffff;
}

.articles__subscribe-note {
  font-size: 1.2rem;
}
.articles__subscribe-note a {
  color: #1971DD;
}

.contacts__title {
  margin-bottom: 0.93em;
}

/* Общие */
.title {
    font-family: "Geologica", sans-serif;
    font-weight: 300;
    font-size: 3rem;
    line-height: 1.2;
    color: #293360;
}
@media (min-width: 576px) {
    .title {
        font-size: 3.5rem;
    }
}
@media (min-width: 992px) {
    .title {
        font-size: 4rem;
    }
}
.section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #fff;
}

/* О компании */
.about-twize {
    color: #737789;
}
.about-twize__row {
    row-gap: 4rem;
}
.about-twize__title {
    margin-bottom: 0.65em;
}
.about-twize__description p {
    margin-bottom: 0.63em;
}
.about-twize__btn {
    margin-top: 2.4rem;
}
.about-twize__img-wrapper {
    position: relative;
    padding-bottom: 10rem;
}
.about-twize__img {
    border-radius: 1.6rem;
}
.about-twize__img--large {
    box-shadow: 0.1rem 1.3rem 4rem -2rem #A6A8B4;
}
.about-twize__img--medium {
    position: absolute;
    bottom: 5.5rem;
    right: 1rem;
}
.about-twize__img--small {
    position: absolute;
    bottom: 0;
    right: 2rem;
    box-shadow: -2.1rem -1.1rem 4rem 0 rgba(17, 25, 70, 0.8);
}
.about-twize .btn {
    color: #ffffff;
}
.about-twize .btn:focus,
.about-twize .btn:hover {
    color: #ffffff;
    text-decoration: none;
}
@media (min-width: 576px) {
    .about-twize__img-wrapper {
        padding-bottom: 0;
    }
    .about-twize__img--medium {
        bottom: 6.5rem;
    }
    .about-twize__img--small{
        right: 6.5rem;
        bottom: 3rem;
    }
}
@media (min-width: 768px) {
    .about-twize__img-wrapper {
        padding-bottom: 10rem;
    }
}
@media (min-width: 992px) {
    .about-twize__img-wrapper {
        padding-left: 5rem;
        padding-bottom: 0;
    }
}

/* Компетенции */
.competencies {
    color: #060606;
    background: linear-gradient(167.41deg, #EBEFF9 63.42%, rgba(235, 239, 249, 0) 96.13%);
}
.competencies__title {
    margin-bottom: 0.65em;
}
.competencies__list {
    row-gap: 3rem;
}
.competencies__col {
    display: flex;
}
.competencies__item {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 0.8rem;
    border: 0.1rem solid #F2F2F2;
    background-color: #ffffff;
    box-shadow: 0.1rem 2.8rem 2rem -2rem #DEE7FC;
}
.competencies__item-wrapper {
    position: relative;
    padding: 3rem 1.5rem 4rem;
}
.competencies__item-title {
    margin-bottom: 1.17em;
    font-size: 2.3rem;
    line-height: 1.2;
    color: #1971DD;
}
.competencies__item-list {
    padding-left: 1.8rem;
    list-style-type: disc;
}
.competencies__item-list li {
    list-style-type: disc;
}
.competencies__item-list li:not(:last-child) {
    margin-bottom: 1rem;
}
.competencies__item-list li::marker {
    color: #1971DD;
}
.competencies__item-thumbnail {
    width: 100%;
    height: 23.4rem;
    order: -1;
}
.competencies__item-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 0.8rem;
    border-top-right-radius: 0.8rem;
}
.competencies__item-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
a.competencies__item-link:hover,
a.competencies__item-link:focus {
    color: #1971DD;
    text-decoration: none;
}
.competencies__item-link .arrow-more {
    width: 1.5rem;
    transition: margin-left 0.2s;
}
a.competencies__item-link:hover .arrow-more,
a.competencies__item-link:focus .arrow-more {
    margin-left: 0.5rem;
}
.competencies__item-icon {
    position: absolute;
    top: -4.4rem;
    right: 3.5rem;
}
.competencies__col:nth-child(1) .competencies__item-icon {
    filter: drop-shadow(0.3rem 1.4rem 1.5rem rgba(31, 85, 165, 0.5));
}
.competencies__col:nth-child(2) .competencies__item-icon {
    filter: drop-shadow(.3rem 1.4rem 1.5rem rgba(60, 189, 170, 0.5));
    
}
.competencies__col:nth-child(3) .competencies__item-icon {
    filter: drop-shadow(.3rem 1.4rem 1.5rem rgba(146, 79, 192, 0.5));
}
@media (min-width: 576px) {
    .competencies__item-wrapper {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

/* Почему выбирают нас */
.why-choose-us {
    color: #FFFFFF;
    background: linear-gradient(89.71deg, #293360 7.2%, #293360 50.15%, #2A6FC4 163.73%);
}
.why-choose-us__title {
    margin-bottom: 1.25em;
    color: inherit;
}
.why-choose-us__row {
    row-gap: 4rem;
}
.why-choose-us__img {
    position: relative;
    border-radius: 1.6rem 1.6rem 0 0;
    overflow: hidden;
}
.why-choose-us__img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(42, 52, 97, 0) 59.86%, #2A3461 90%);
}
.why-choose-us__quote {
    position: relative;
    top: -11.5rem;
    margin-bottom: -11.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.why-choose-us__quote-wrapper {
    display: block;
    margin-bottom: 1.8rem;
    font-style: normal;
}
.why-choose-us__quote-author,
.why-choose-us__quote-text,
.why-choose-us__item-number {
    font-family: "Geologica", sans-serif;
    line-height: 1.2;
    font-weight: 300;
}
.why-choose-us__quote-author {
    display: block;
    font-size: 1.8rem;
}
.why-choose-us__quote-text {
    position: relative;
    padding-top: 4rem;
    font-size: 1.6rem;
}
.why-choose-us__quote-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3rem;
    height: 2.3rem;
    background: url("../img/quotes-icon.svg") no-repeat center / contain;
}
.why-choose-us__list {
    display: grid;
    row-gap: 3.5rem;
    margin-bottom: 0;
}
.why-choose-us__item:nth-child(1) {
    background: url("../img/why-choose-us-bg-1.svg") no-repeat top left / contain;
}
.why-choose-us__item:nth-child(2) {
    background: url("../img/why-choose-us-bg-2.svg") no-repeat top left / contain;
}
.why-choose-us__item:nth-child(3) {
    background: url("../img/why-choose-us-bg-3.svg") no-repeat top left / contain;
}
.why-choose-us__item:nth-child(4) {
    background: url("../img/why-choose-us-bg-4.svg") no-repeat top left / contain;
}
.why-choose-us__item-number {
    margin-bottom: 0.29em;
    font-size: 6rem;
}
@media (min-width: 576px) {
    .why-choose-us__list {
        row-gap: 2rem;
    }
    .why-choose-us__quote {
        top: -16rem;
        margin-bottom: -16rem;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    .why-choose-us__quote-author {
        font-size: 2.3rem;
    }
    .why-choose-us__quote-text {
        font-size: 2rem;
    }
    .why-choose-us__item-number {
        font-size: 5.5rem;
    }
    .why-choose-us__list {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 3rem;
    }
}
@media (min-width: 768px) {
    .why-choose-us__quote {
        top: -11.5rem;
        margin-bottom: -11.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .why-choose-us__quote-author {
        font-size: 1.8rem;
    }
    .why-choose-us__quote-text {
        font-size: 1.6rem;
    }
    .why-choose-us__list {
        grid-template-columns: 1fr;
        column-gap: 0;
    }
    .why-choose-us__item-number {
        font-size: 4rem;
    }
}
@media (min-width: 992px) {
    .why-choose-us__quote {
        top: -16rem;
        margin-bottom: -16rem;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    .why-choose-us__quote-author {
        font-size: 2.3rem;
    }
    .why-choose-us__quote-text {
        font-size: 2rem;
    }
    .why-choose-us__item-number {
        font-size: 5.5rem;
    }
    .why-choose-us__list {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, auto);
    }
    .why-choose-us__item {
        padding: 5rem 0 2rem 3rem;
    }
    .why-choose-us__item:nth-child(1) {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }
    .why-choose-us__item:nth-child(2) {
        grid-column: 2 / 3;
        grid-row: 2 / 4;
    }
    .why-choose-us__item:nth-child(3) {
        grid-column: 1 / 2;
        grid-row: 3 / 5;
    }
    .why-choose-us__item:nth-child(4) {
        grid-column: 2 / 3;
        grid-row: 4 / 6;
    }
}
@media (min-width: 1200px) {
    .why-choose-us__quote {
        top: -20rem;
        margin-bottom: -20rem;
        padding-left: 4rem;
        padding-right: 4rem;
    }
    .why-choose-us__item {
        padding: 7.5rem 0 4rem 5.5rem;
    }
    .why-choose-us__item-number {
        font-size: 7rem;
    }
}

/* Как сделать заказ */
.how-to-order {
    color: #293360;
    background: #EBEFF9 url("../img/how-to-order-bg-light.svg") no-repeat top 50% left 50vw;
}
.how-to-order__row {
    row-gap: 4rem;
}
.how-to-order__title {
    margin-bottom: 1em;
    color: inherit;
}
.how-to-order__description {
    margin-bottom: 5rem;
}
.how-to-order__description p {
    margin-bottom: 1rem;
}
.how-to-order__contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem 6rem;
    margin-bottom: 5rem;
}
.how-to-order__contacts-item {
    position: relative;
    padding-left: 4.5rem;
}
.how-to-order__contacts-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 4rem;
    height: 4rem;
    transform: translateY(-50%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.how-to-order__contacts-item--phone::before {
    background-image: url("../img/phone-dark.svg");
}
.how-to-order__contacts-item--telegram::before {
    background-image: url("../img/telegram.svg");
}
.how-to-order__contacts-item--email::before {
    background-image: url("../img/mail-light.svg");
}
.how-to-order__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}
.how-to-order__more-link {
    color: inherit;
}
.how-to-order__more-link .arrow-more,
.how-to-order__more-link .arrow-more::before, 
.how-to-order__more-link .arrow-more::after {
    background-color: #293360;
}

/* Реквизиты */
.details {
    position: relative;
    padding: 2rem 1.5rem 4rem;
    backdrop-filter: blur(2.3rem);
}
.details::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 1rem; 
    padding: 0.1rem; 
    background: linear-gradient(113.42deg, #87B3FF -9.4%, #4065AC 65.11%); 
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude; 
    z-index: -1;
}
.details__title {
    margin-bottom: 0.87em;
    font-size: 2.3rem;
    line-height: 1.2;
    color: inherit;
}
.details__item:not(:last-child) {
    margin-bottom: 1rem;
}
@media (min-width: 576px) {
    .details {
        padding: 2rem 3.5rem 4rem;
    }
}

/* Текстовый блок на странице Услуги */
.service-intro {
  padding-top: 4rem; 
  padding-bottom: 4rem; 
  background-color: #EBEFF9;
} 
@media (min-width: 576px) {
  .service-intro {
    padding-top: 6rem; 
    padding-bottom: 6rem; 
  } 
}
.service-intro__col > *:first-child {
  margin-top: 0;
}
.service-intro__col > *:last-child {
  margin-bottom: 0;
}

/* Cookie */
.legacy-cookie {
    left: 0;
    right: 20px;
    bottom: 0px;
    max-width: 360px;
    position: fixed;
}
.legacy-cookie>div {
    padding: 20px;
    flex-direction: column;
    row-gap: 20px;
    align-items: flex-start;
    font-family: "Ubuntu", sans-serif;
    border-radius: 0;
    color: #494C4F !important;
    background-color: #F6F9FC;
    box-shadow: 0 8px 24px 0 #323C6133;
} 
.legacy-cookie a {
    color: #1971DD !important;
}
.legacy-cookie a:hover {
    text-decoration: underline;
}
.legacy-cookie .button {
    margin-left: 0;
    padding: 5px 24px;
    font-family: "Geologica", sans-serif;
    font-size: 10px;
    line-height: 1;
    font-weight: 400;
    border-radius: 50px;
    color: #F6F9FC;
    background-color: #1971DD;
    text-transform: uppercase;
    transition: background-color 0.2s ease-in-out;
    position: relative;
}
.legacy-cookie .button:hover {
    background-color: #1367CD;
}

/* New stock */
.menu-stock.menu-stock--new {
  padding: 10px 24px;
  margin: auto;
  border-radius: 50px;
  background: #D6272A;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  transition: background 0.2s ease-in-out;
}
.menu-stock-item {
  margin-right: 55px;
}
.menu-stock.menu-stock--new:focus-visible,
.menu-stock.menu-stock--new:hover {
  background: #AD1F22;
}
.menu-stock.menu-stock--new::before {
  display: none;
}

/*# sourceMappingURL=new-edits.css.map */