@import "https://use.fontawesome.com/releases/v5.15.4/css/all.css";
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotocondensed/v30/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyosBD5Xk.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotocondensed/v30/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWAosBD5Xk.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotocondensed/v30/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVVpcBD5Xk.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotocondensed/v30/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyUbpcBD5Xk.ttf) format('truetype');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw0aX8.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw0aX8.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM73w0aX8.ttf) format('truetype');
}

html {
  max-width: 100vw;
  overflow-x: hidden;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto Condensed";
  font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
a,
div,
p,
button {
  margin: 0;
  padding: 0;
  font-family: "Roboto Condensed";
  font-weight: 400;
  color: inherit;
  list-style: none;
  font-size: 16px;
  text-decoration: none;
}
img {
  pointer-events: none;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
}
p {
  line-height: 1.7;
}
.btn {
  display: inline-block;
  padding: 12px 25px;
  color: #fff;
  border-radius: 100px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  border: none;
  box-shadow: none;
  transition: all 0.2s ease;
  font-size: 16px;
  white-space: nowrap;
  outline-color: transparent;
  font-family: "Roboto Condensed";
  font-weight: 500;
}
.btn.yellow {
  background-color: #F3BC72;
}
.btn.red {
  background-color: #CF2458;
}
.btn.primary {
  background-color: #11BCA9;
}
.btn.dark {
  background-color: #3a4151;
}
.btn:hover.yellow {
  background-color: #f1b15a;
}
.btn:hover.red {
  background-color: #b9204f;
}
.btn:hover.primary {
  background-color: #0fa594;
}
.btn:hover.dark {
  background-color: #2f3542;
}
.btn.shadow {
  box-shadow: 0 30px 50px 0 rgba(59, 134, 255, 0.3);
}
.btn .fas,
.btn .fab {
  margin-right: 5px;
}
.form form {
  display: flex;
}
.form form input {
  outline-color: transparent;
  flex-grow: 10;
  display: inline-block;
  border: solid 2px #ebebeb;
  padding: 12px 15px;
  border-radius: 100px;
  font-family: "Roboto Condensed";
  font-weight: 500;
  font-size: 14px;
  background-color: #fff;
  box-shadow: none;
  box-sizing: border-box;
  color: #2d3748;
  transition: all 0.2s ease;
}
.form form input:focus {
  border-color: #11BCA9;
}
.form form .btn {
  margin-left: 15px;
  flex-grow: 0;
}
.section-title {
  margin: 0 auto;
  text-align: center;
  color: #2d3748;
  font-size: 32px;
  font-family: "Roboto Condensed";
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}
.section-title.main {
  display: flex;
  justify-content: center;
  white-space: nowrap;
  align-items: center;
  gap: 30px;
}
.section-title.main:before,
.section-title.main:after {
  content: "";
  height: 2px;
  flex-grow: 10;
  width: 100%;
  background: linear-gradient(270deg, #CF2458, transparent 75%, transparent);
}
.section-title.main:after {
  background: linear-gradient(90deg, #CF2458, transparent 75%, transparent);
}
.section-title.left {
  text-align: left;
  margin: 0;
}
.modal-container {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.modal-container.active {
  opacity: 1;
  visibility: visible;
}
.modal-container.active .modal {
  transform: none;
  transition-delay: 0.1s;
  opacity: 1;
}
.modal-container.intro-video .modal {
  background-color: transparent;
  overflow: hidden;
  padding: 0;
  max-width: 70vw;
  height: 39vw;
}
.modal-container.intro-video .modal .video {
  width: 100%;
}
.modal-container.intro-video .modal .video video {
  width: 100%;
}
.modal-container .overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.modal-container .modal {
  z-index: 2;
  position: relative;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  box-sizing: border-box;
  margin: 50px auto;
  transform: translateY(-20px);
  transition: all 0.4s ease;
  opacity: 0;
}
.modal-container .modal .close-btn {
  position: absolute;
  z-index: 10;
  top: 12px;
  right: 10px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.modal-container .modal .close-btn .fas {
  color: #CF2458;
  font-size: 20px;
}
.custom-scrollbar::-webkit-scrollbar {
  background-color: #efefef;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: #11BCA9;
  height: 5px;
  width: 8px;
  border: 2px solid #fff;
}
.page-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 15px 0;
  z-index: 100;
  transition: all 0.3s ease;
}
.page-header.fixed {
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  padding: 5px 0;
}
.page-header.fixed .actions {
  transform: none;
  opacity: 1;
  transition-delay: 0.1s;
}
.page-header .wrapper {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}
.page-header .logo {
  display: inline-block;
  cursor: pointer;
  padding: 3px 0;
}
.page-header .logo img {
  height: 42px;
  display: block;
}
.page-header .menu {
  background-color: #fff;
  padding: 0 15px;
  border-radius: 100px;
  box-sizing: border-box;
}
.page-header .menu ul {
  text-align: center;
}
.page-header .menu ul li {
  display: inline-block;
}
.page-header .menu ul li a {
  font-family: "Roboto Condensed";
  font-weight: 500;
  padding: 10px 15px;
  display: inline-block;
  color: #2d3748;
  cursor: pointer;
  position: relative;
}
.page-header .menu ul li a:after {
  content: "";
  position: absolute;
  right: 10px;
  left: 10px;
  bottom: -2px;
  height: 2px;
  transform: scaleX(0);
  background-color: #CF2458;
  transition: all 0.2s ease;
  opacity: 0;
}
.page-header .menu ul li a:hover {
  color: #CF2458;
}
.page-header .menu ul li a:hover:after {
  opacity: 1;
  transform: scaleX(1);
}
.page-header .actions {
  text-align: right;
  display: flex;
  gap: 10px;
  transform: translateY(-7px);
  opacity: 0;
  transition: all 0.3s ease;
}
.page-footer {
  border-top: 1px solid #e6e6e6;
  padding: 120px 0 170px;
  position: relative;
}
.page-footer .bg-icon {
  z-index: 1;
  position: absolute;
}
.page-footer .bg-icon.i1 {
  bottom: 230px;
  right: 0;
}
.page-footer .bg-icon.i2 {
  bottom: 0;
  right: 0;
}
.page-footer .bg-icon.i3 {
  bottom: 0;
  left: 0;
}
.page-footer .footer-content {
  position: relative;
  z-index: 2;
}
.page-footer .footer-content .footer-title {
  font-family: "Roboto Condensed";
  font-weight: 700;
  color: #2d3748;
  font-size: 32px;
  line-height: 130%;
  text-align: center;
}
.page-footer .footer-content .footer-description {
  text-align: center;
  color: #718096;
  max-width: 600px;
  margin: 20px auto;
}
.page-footer .footer-content .footer-description a {
  color: #CF2458;
  font-family: "Roboto Condensed";
  font-weight: 700;
}
.page-footer .footer-content .form {
  max-width: 500px;
  margin: 0 auto;
}
.page-footer .footer-content .form .msg {
  margin-top: 30px;
  text-align: center;
}
.page-footer .footer-content .form .msg.success .fas {
  color: #F3BC72;
}
.page-footer .footer-content .form .msg.error .fas {
  color: #CF2458;
}
.page-footer .footer-content .form .msg .fas {
  font-size: 45px;
}
.page-footer .footer-content .form .msg .text {
  margin-top: 15px;
  display: block;
  font-family: "Roboto Condensed";
  font-weight: 500;
  color: #2d3748;
}
.page-footer .footer-content .actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.intro {
  padding: 200px 0 150px;
  position: relative;
  box-sizing: border-box;
}
.intro .bg-icon {
  z-index: 1;
  position: absolute;
  top: -500px;
  right: 0;
}
.intro .intro-content {
  position: relative;
  z-index: 2;
}
.intro .intro-content .intro-title {
  color: #2d3748;
  font-size: 50px;
  line-height: 120%;
  font-family: "Roboto Condensed";
  font-weight: 700;
}
.intro .intro-content .intro-title span {
  color: #11BCA9;
}
.intro .intro-content .intro-description {
  margin-top: 30px;
  color: #718096;
  line-height: 180%;
}
.intro .intro-content .intro-form {
  margin-top: 50px;
}
.intro .intro-content .actions {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}
.intro .intro-content .pl-title {
  margin-top: 30px;
  color: #2d3748;
  font-size: 18px;
  font-family: "Roboto Condensed";
  font-weight: 700;
}
.intro .intro-content .partners-list {
  margin-top: 15px;
}
.intro .intro-content .partners-list .partner {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 15px;
}
.intro .intro-content .partners-list .partner a {
  display: block;
}
.intro .intro-content .partners-list .partner a img {
  width: 50px;
}
.intro .intro-content .partners-list .partner .info {
  color: #718096;
}
.intro .intro-screenshots {
  position: relative;
  z-index: 3;
}
.intro .intro-screenshots img {
  position: absolute;
  width: 110%;
  top: -100px;
  right: -80px;
  display: block;
}
.advantages {
  margin-top: 30px;
}
.advantages .advantages-title {
  max-width: 500px;
}
.advantages .card-list {
  margin: 70px auto 0;
  max-width: 1000px;
}
.advantages .card-list .card {
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 50px;
}
.advantages .card-list .card .icon {
  display: inline-block;
  padding: 15px 20px;
  border-radius: 11px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
}
.advantages .card-list .card .icon .fas {
  color: #CF2458;
  font-size: 30px;
}
.advantages .card-list .card .card-title {
  margin-top: 25px;
  color: #2d3748;
  font-size: 19px;
  font-family: "Roboto Condensed";
  font-weight: 700;
}
.advantages .card-list .card .card-text {
  margin-top: 10px;
  color: #718096;
}
.usecases {
  margin-top: 150px;
  padding-bottom: 120px;
  position: relative;
}
.usecases .bg-icon {
  z-index: 1;
  position: absolute;
}
.usecases .bg-icon.i1 {
  top: -400px;
  left: 35px;
  transform: rotate(-45deg);
}
.usecases .bg-icon.i2 {
  top: 245px;
  left: -300px;
}
.usecases .bg-icon.i3 {
  bottom: 0;
  right: -400px;
}
.usecases .bg-icon.i5 {
  bottom: 700px;
  left: -400px;
}
.usecases .bg-icon.i4 {
  top: 900px;
  right: -300px;
}
.usecases .usecase-section {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 200px;
}
.usecases .usecase-section:nth-child(odd) {
  flex-direction: row-reverse;
}
.usecases .usecase-section:nth-child(odd) .content {
  padding-right: 10px;
  padding-left: 130px;
}
.usecases .usecase-section:last-child {
  margin-bottom: 100px;
}
.usecases .usecase-section .banner {
  width: 50%;
}
.usecases .usecase-section .banner img {
  display: block;
  width: 65%;
  margin: 0 auto;
}
.usecases .usecase-section .content {
  box-sizing: border-box;
  width: 50%;
  padding-right: 130px;
  padding-left: 10px;
}
.usecases .usecase-section .content .section-title {
  padding: 20px 20px 0;
  background-color: #fff;
  border-top-left-radius: 11px;
  border-top-right-radius: 11px;
}
.usecases .usecase-section .content .description {
  color: #718096;
  padding: 20px;
  background-color: #fff;
}
.usecases .usecase-section .content .actions {
  padding: 0 20px 20px;
  background-color: #fff;
  border-bottom-left-radius: 11px;
  border-bottom-right-radius: 11px;
}
.usecases .usecase-section .content .actions .link {
  text-transform: uppercase;
  color: #2d3748;
  font-family: "Roboto Condensed";
  font-weight: 700;
}
.usecases .usecase-section .content .actions .link .fas {
  color: #11BCA9;
  margin-left: 7px;
}
.team {
  margin: 130px 0 130px;
  position: relative;
  z-index: 2;
}
.team .bg-icon {
  z-index: 1;
  position: absolute;
}
.team .bg-icon.i3 {
  bottom: 0;
  left: -400px;
}
.team .team-list {
  margin: 70px auto 0;
  position: relative;
  z-index: 2;
}
.team .team-list .team-box {
  position: relative;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  padding: 30px;
  transition: all 0.5s ease;
  border-radius: 11px;
  overflow: hidden;
}
.team .team-list .team-box:hover {
  transform: translateY(10px);
  box-shadow: 0 100px 99px 0 rgba(31, 72, 93, 0.2);
}
.team .team-list .team-box:hover:after {
  width: 100%;
}
.team .team-list .team-box:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 3px;
  background-color: #F3BC72;
  transition: all 0.5s ease;
}
.team .team-list .team-box .text {
  color: #718096;
  font-family: "Roboto Condensed";
  font-weight: 400;
}
.team .team-list .team-box .user-box {
  position: relative;
}
.team .team-list .team-box .user-box .avatar {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  overflow: hidden;
}
.team .team-list .team-box .user-box .avatar img {
  width: 100%;
}
.team .team-list .team-box .user-box .info {
  padding-top: 5px;
}
.team .team-list .team-box .user-box .info .name {
  display: block;
  color: #2d3748;
  margin-bottom: 7px;
  font-family: "Roboto Condensed";
  font-weight: 700;
  font-style: normal;
  font-size: 19px;
}
.team .team-list .team-box .user-box .info .about {
  display: block;
  color: #718096;
  font-family: "Roboto Condensed";
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
}
.team .team-list .team-box .user-box .info .links {
  margin-top: 5px;
}
.team .team-list .team-box .user-box .info .links a {
  color: #11BCA9;
  text-decoration: underline;
  font-style: normal;
}
.team .team-list .team-box .user-box .info .links a .fab {
  margin-right: 5px;
}
.partners .advantages-title {
  max-width: 500px;
}
.partners .card-list {
  margin: 50px auto 0;
  max-width: 1000px;
}
.partners .card-list .card {
  padding: 20px 14px;
  background-color: #fff;
  border-radius: 11px;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 10;
}
.partners .card-list .card .icon {
  padding: 15px 20px;
  border-radius: 11px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  width: 100px;
  height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.partners .card-list .card .icon img {
  width: 85%;
}
.partners .card-list .card .card-title {
  margin-top: 25px;
  color: #2d3748;
  font-size: 19px;
  font-family: "Roboto Condensed";
  font-weight: 700;
  line-height: 150%;
}
.partners .card-list .card .card-text {
  margin-top: 10px;
  color: #718096;
}
.scientific-work {
  margin-top: 180px;
  position: relative;
  z-index: 10;
  margin-bottom: 120px;
}
.scientific-work .sw-content .info {
  margin-bottom: 30px;
}
.scientific-work .sw-content .info p {
  max-width: 700px;
  text-align: center;
  margin: 20px auto 30px;
  color: #718096;
}
.scientific-work .sw-content .sw-title {
  color: #2d3748;
  font-size: 22px;
  font-family: "Roboto Condensed";
  font-weight: 600;
}
.scientific-work .sw-content .research-results .lists-nav {
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 2px solid #eee;
}
.scientific-work .sw-content .research-results .lists-nav .tab {
  background-color: transparent;
  font-family: "Roboto Condensed";
  font-weight: 600;
  cursor: pointer;
  color: #2d3748;
  transition: all 0.3s ease;
  padding: 5px 15px 8px;
  position: relative;
  z-index: 2;
  color: #718096;
  white-space: nowrap;
  border: none;
}
.scientific-work .sw-content .research-results .lists-nav .tab:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #CF2458;
  transform: scaleX(0);
  opacity: 0;
  transition: all 0.3s ease;
}
.scientific-work .sw-content .research-results .lists-nav .tab.active {
  color: #3a4151;
}
.scientific-work .sw-content .research-results .lists-nav .tab.active:after {
  background-color: #CF2458;
  transform: none;
  opacity: 1;
}
.scientific-work .sw-content .research-results .lists-nav .tab:hover {
  color: #3a4151;
}
.scientific-work .sw-content .research-results .lists-wrapper {
  position: relative;
  overflow: hidden;
}
.scientific-work .sw-content .research-results .publication-list {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.scientific-work .sw-content .research-results .publication-list.active {
  position: static;
  opacity: 1;
  visibility: visible;
}
.scientific-work .sw-content .research-results .publication-list .publication {
  color: #718096;
  padding-left: 10px;
  border-left: 3px solid #F3BC72;
  transition: all 0.3s ease;
  text-align: justify;
}
.scientific-work .sw-content .research-results .publication-list .publication:hover {
  transform: translateX(5px);
  color: #2d3748;
  border-color: #11BCA9;
}
.scientific-work .sw-content .research-results .publication-list .publication:hover a {
  text-decoration: underline;
  color: #11BCA9;
}
.scientific-work .sw-content .research-results .publication-list .publication a {
  transition: all 0.3s ease;
}
.scientific-work .sw-content .diploma-list {
  margin-bottom: 15px;
  width: 100%;
  position: relative;
}
.scientific-work .sw-content .diploma-list:before,
.scientific-work .sw-content .diploma-list:after {
  content: "";
  position: absolute;
  left: -30px;
  bottom: 0;
  top: 0;
  width: 100px;
  background: linear-gradient(90deg, #fff 0, #fff 30%, transparent 90%);
  z-index: 10;
}
.scientific-work .sw-content .diploma-list:after {
  left: auto;
  right: -30px;
  background: linear-gradient(-90deg, #fff 0, #fff 30%, transparent 90%);
}
.scientific-work .sw-content .diploma-list .diploma-row {
  margin-left: -10px;
}
.scientific-work .sw-content .diploma-list .diploma-row .slick-slide {
  height: auto;
  padding: 15px 10px;
}
.scientific-work .sw-content .diploma-list .diploma-row .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-size: 0px;
  color: transparent;
  background-image: url(../img/icons/arrow-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
  height: 35px;
  z-index: 12;
  width: 35px;
  background-color: #CF2458;
  border: none;
  cursor: pointer;
  border-radius: 11px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.16);
}
.scientific-work .sw-content .diploma-list .diploma-row .slick-arrow.slick-prev {
  left: 20px;
}
.scientific-work .sw-content .diploma-list .diploma-row .slick-arrow.slick-next {
  right: 10px;
  transform: translateY(-50%) rotate(180deg);
}
.scientific-work .sw-content .diploma-list .diploma a {
  display: block;
  transition: all 0.3s ease;
  border-radius: 11px;
  overflow: hidden;
}
.scientific-work .sw-content .diploma-list .diploma a img {
  display: block;
  height: 250px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.16);
}
.scientific-work .sw-content .diploma-list .diploma a:hover {
  transform: translateY(-5px);
  box-shadow: 0 3px 15px 0 rgba(31, 72, 93, 0.2);
}
@media (max-width: 1200px) {
  .intro {
    padding-top: 150px;
    padding-bottom: 50px;
  }
  .usecases .usecase-section .content {
    padding: 0 !important;
  }
}
@media (max-width: 900px) {
  .usecases {
    margin-top: 100px;
  }
  .usecases .usecase-section {
    margin-bottom: 100px;
  }
  .usecases .usecase-section:last-child {
    margin-bottom: 0;
  }
  .modal-container.intro-video .modal {
    max-width: 90vw;
    height: 50vw;
  }
  .scientific-work .sw-content .research-results .lists-nav {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .form form {
    text-align: center;
    display: block;
  }
  .form form input {
    width: 100%;
  }
  .form form .btn {
    margin: 15px 0 0 0;
  }
  .section-title {
    font-size: 26px;
  }
  .page-header.fixed {
    padding: 0;
  }
  .page-header.fixed .menu {
    top: 40px;
  }
  .page-header .actions {
    opacity: 1;
    transform: none;
  }
  .page-header .actions .fas {
    font-size: 20px;
  }
  .page-header [data-menu-trigger] {
    margin-right: -8px;
    position: relative;
    height: 30px;
    width: 30px;
  }
  .page-header [data-menu-trigger] .fas {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page-header [data-menu-trigger] .close {
    opacity: 0;
    transform: scale(0);
  }
  .page-header [data-menu-trigger] .open {
    opacity: 1;
    transform: none;
  }
  .page-header [data-menu-trigger].active .close {
    opacity: 1;
    transform: none;
  }
  .page-header [data-menu-trigger].active .open {
    opacity: 0;
    transform: scale(0);
  }
  .page-header .menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 0;
    margin-right: -15px;
    position: absolute;
    top: 55px;
    right: 20px;
    background-color: #fff;
    padding: 15px;
    z-index: 10;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  }
  .page-header .menu.active {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .page-header .menu ul {
    display: flex;
    flex-direction: column;
  }
  .page-header .menu ul li a {
    white-space: nowrap;
  }
  .intro .intro-content .intro-title {
    font-size: 42px;
  }
  .intro .intro-content .partners-list {
    flex-wrap: wrap;
  }
  .advantages {
    margin-top: 0;
  }
  .advantages .advantages-title {
    font-size: 25px;
    line-height: 150%;
  }
  .advantages .card-list {
    margin-top: 50px;
  }
  .usecases {
    padding-bottom: 100px;
  }
  .usecases .usecase-section {
    margin-bottom: 100px;
    flex-direction: column;
  }
  .usecases .usecase-section:nth-child(odd) {
    flex-direction: column;
  }
  .usecases .usecase-section .banner {
    width: 100%;
    margin-bottom: 30px;
  }
  .usecases .usecase-section .content {
    width: 100%;
  }
  .usecases .usecase-section .content .case-title {
    font-size: 25px;
    line-height: 150%;
  }
  .usecases .usecase-section .content .actions {
    margin-top: 20px;
  }
  .team {
    margin-top: 60px;
  }
  .page-footer {
    padding: 80px 0 100px;
  }
  .page-footer .footer-content .footer-title {
    font-size: 25px;
    line-height: 150%;
  }
  .scientific-work {
    margin-bottom: 80px;
    margin-top: 50px;
  }
  .scientific-work .section-title {
    text-align: left;
  }
  .scientific-work .sw-content .info p {
    text-align: left;
  }
}
