@font-face {
  font-family: 'Montserrat';
  src: url('../font/Montserrat-Light.ttf');
  font-weight: 300;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../font/Montserrat-Medium.ttf');
  font-weight: 500;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../font/Montserrat-Bold.ttf');
  font-weight: 700;
}
:root {
  --font_color: white;
  --bg_color: #393a3a;
  --titles: white;
  --logo_frame_text: white;
  --primary_color: #8a148a;
  --secondary_color: #18a9a9;
  --bg_gradient: linear-gradient(1deg, #0c221d 2%, #0e5a5a 25%, #18a9a9 40%);
  --bg_gradient_mob: linear-gradient(1deg, #0c221d 2%, #0e5a5a 40%, #18a9a9 50%);
  --header_bg: linear-gradient(1deg, rgba(24, 169, 169, 0.554) 0%, rgba(24, 169, 169, 0.554) 7%, rgba(41, 41, 41, 0.628) 8%, #d8e6e6 12%, #d8e6e6 26%, rgba(111, 6, 109) 26.5%, #6f066d 33%, rgba(111, 6, 109, 0.178) 80%, #072a29 100%);
  --header_navbar_scrolled: blur(24px) saturate(120%);
  --header_navbar_scrolled_bg: rgba(0, 0, 0, 0.3);
  --footer_bg: #71817f;
  --header_lang_btn_hover: #18a9a9;
  --icon_links: url("../icons/lang_dark.svg");
  --icon_theme: url("../icons/theme_light.svg");
  --icon_color_primary: brightness(0) saturate(100%) invert(15%) sepia(92%) saturate(2833%) hue-rotate(287deg) brightness(86%) contrast(93%);
  --icon_color_secondary: brightness(0) saturate(100%) invert(56%) sepia(28%) saturate(6241%) hue-rotate(144deg) brightness(95%) contrast(81%);
}
[data-theme="light"] {
  --font_color: #393a3a;
  --bg_color: white;
  --titles: #393a3a;
  --logo_frame_text: #393a3a;
  --primary_color: #18a9a9;
  --secondary_color: #8a148a;
  --bg_gradient: linear-gradient(1deg, #f3f7f6 0%, #f7f3f7 100%);
  --bg_gradient_mob: linear-gradient(1deg, #f3f7f6 0%, #f7f3f7 100%);
  --header_bg: linear-gradient(1deg, rgba(138, 20, 138, 0) 3%, #614a4a 6%, #e5e5e5 10%, #d8e6e6 10.5%, #a2adad 10.7%, #18a9a9 26%, #f7f3f7 26.5%), #f7f3f7 100%;
  --header_navbar_scrolled: blur(14px) saturate(100%);
  --header_navbar_scrolled_bg: rgba(247, 251, 250, 0.3);
  --footer_bg: rgba(57, 58, 58, 0.4);
  --header_lang_btn_hover: #e7ebea;
  --icon_links: url("../icons/lang_light.svg");
  --icon_theme: url("../icons/theme_dark.svg");
  --icon_color_primary: brightness(0) saturate(100%) invert(56%) sepia(28%) saturate(6241%) hue-rotate(144deg) brightness(95%) contrast(81%);
  --icon_color_secondary: brightness(0) saturate(100%) invert(15%) sepia(92%) saturate(2833%) hue-rotate(287deg) brightness(86%) contrast(93%);
}
[data-theme="light"] .header-navbar-actions-btn-icon-color,
[data-theme="light"] .header-navbar-actions-theme-icon-color {
  filter: brightness(0) saturate(100%) invert(12%) sepia(24%) saturate(2805%) hue-rotate(131deg) brightness(94%) contrast(98%);
}
.hidden {
  display: none;
  width: 0;
  height: 0;
}
body {
  margin: 0;
  padding: 0;
  height: 100%;
  max-width: 100vw;
  font-family: 'Montserrat';
  font-size: 18px;
  font-weight: 300;
  color: var(--font_color);
  background: var(--bg_color);
}
a,
p,
li {
  color: var(--font_color);
}
.header-navbar {
  animation: moveDownNavbar 2s forwards;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  width: 100%;
  top: -200px;
  left: 0;
  right: 0;
  height: 200px;
  padding: 20px 55px 0;
  align-items: center;
  justify-content: space-between;
  box-shadow: none;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .header-navbar {
    height: 120px;
    padding-inline: 0;
    padding: 20px 15px 0;
  }
}
.header-navbar-logo {
  flex-grow: 1;
}
.header-navbar-logo svg {
  max-width: 660px;
  width: 100%;
  animation: scaleUpLogo 4s;
}
@media screen and (max-width: 1050px) {
  .header-navbar-logo svg {
    max-width: 480px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 750px) {
  .header-navbar-logo svg {
    max-width: 330px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 500px) {
  .header-navbar-logo svg {
    max-width: 260px;
    margin-right: 20px;
  }
}
.header-navbar-logo #logo path {
  transition: color 0.2s;
}
.header-navbar-logo #frame-text path {
  fill: var(--logo_frame_text) !important;
}
.header-navbar-actions {
  display: flex;
  margin-top: 20px;
  margin-left: 20px;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .header-navbar-actions {
    margin-top: 0;
  }
}
.header-navbar-actions-btn {
  display: flex;
  align-items: center;
  border-radius: 3px;
  padding: 5px 0 5px 5px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}
.header-navbar-actions-btn:hover,
.header-navbar-actions-btn:focus,
.header-navbar-actions-btn:active,
.header-navbar-actions-btn:focus-within {
  background: var(--header_lang_btn_hover);
}
.header-navbar-actions-btn:hover .dropdown-content-menu,
.header-navbar-actions-btn:focus .dropdown-content-menu,
.header-navbar-actions-btn:active .dropdown-content-menu,
.header-navbar-actions-btn:focus-within .dropdown-content-menu {
  display: block;
  animation: dropdownMenu 1s forwards;
}
.header-navbar-actions-btn .dropdown-content-menu {
  display: none;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 35px;
  box-sizing: border-box;
  border-radius: 3px;
  line-height: 1.2;
  background: var(--header_lang_btn_hover);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.25);
}
.header-navbar-actions-btn .dropdown-content-menu ul {
  padding: 10px 20px;
  list-style: none;
  margin-block: 0;
}
.header-navbar-actions-btn .dropdown-content-menu ul li {
  margin: 5px 0;
}
.header-navbar-actions-btn .dropdown-content-menu-links {
  display: block;
}
.header-navbar-actions-btn .dropdown-content-menu-links-lang {
  opacity: 0.5;
}
.header-navbar-actions-btn .dropdown-content-menu a {
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: var(--font_color);
}
.header-navbar-actions-btn .dropdown-content-menu a:hover {
  border-bottom: 2px solid #8a148a;
}
.header-navbar-actions-btn-icon {
  display: inline-block;
  width: 29px;
  height: 29px;
}
.header-navbar-actions-btn-icon-color {
  background: var(--icon_links) center center;
  background-size: contain;
  filter: invert(1);
}
.header-navbar-actions-btn-text {
  margin: 0 4px;
  color: var(--font_color);
}
@media screen and (max-width: 750px) {
  .header-navbar-actions-btn-text {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .header-navbar-actions-btn {
    padding: 5px;
    font-size: 16px;
  }
}
.header-navbar-actions-theme {
  padding: 5px;
}
.header-navbar-actions-theme:hover {
  border-radius: 3px;
  background-color: var(--header_lang_btn_hover);
}
.header-navbar-actions-theme-icon {
  align-self: center;
  cursor: pointer;
  display: block;
  width: 30px;
  height: 30px;
}
.header-navbar-actions-theme-icon-color {
  color: var(--logo_frame_text);
  background: var(--icon_theme) center center;
  background-size: contain;
  filter: invert(1);
}
@media screen and (max-width: 750px) {
  .header-navbar-actions-theme-icon-color {
    width: 30px;
    height: 30px;
  }
}
.header-navbar-scrolled {
  position: fixed;
  height: 80px;
  top: 80px;
  box-sizing: border-box;
  padding: 6px 15px 0;
  box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.25);
  background: var(--header_navbar_scrolled_bg);
  animation: moveDownNavbarScroll 1s forwards;
  z-index: 2;
  backdrop-filter: var(--header_navbar_scrolled);
  -webkit-backdrop-filter: var(--header_navbar_scrolled);
}
.header-navbar-scrolled .header-navbar-logo {
  animation: none;
}
.header-navbar-scrolled .header-navbar-logo svg {
  width: 80%;
  max-width: 300px;
}
.header-navbar-scrolled .header-navbar-actions {
  margin-top: 0;
}
.header-frames_bg {
  position: relative;
  height: 1015px;
  background: var(--header_bg);
}
@media screen and (max-width: 750px) {
  .header-frames_bg {
    height: 680px;
  }
}
.header-frames-container {
  position: absolute;
  display: flex;
  width: 100%;
  left: 0;
  top: 0;
  height: 800px;
  align-items: end;
  justify-content: center;
  gap: 50px;
  perspective: 1600px;
}
@media screen and (max-width: 1050px) {
  .header-frames-container {
    gap: 0;
  }
}
@media screen and (max-width: 750px) {
  .header-frames-container {
    height: 540px;
  }
}
.header-frames-frame {
  position: relative;
  border-radius: 16px;
  background: linear-gradient(42deg, #191818 10%, #2e2d2d 30%, #1e1b1b 60%, rgba(150, 150, 160) 80%, #2e2d2d 92%, #191818 100%);
}
.header-frames-frame div {
  background: #191818;
  position: absolute;
  left: 16px;
  top: 16px;
  right: 16px;
  bottom: 16px;
  overflow: hidden;
}
.header-frames-frame div::after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(31deg, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.35) 70%, rgba(255, 255, 255, 0) 80%);
  opacity: 1;
}
.header-frames-frame div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 0%;
  animation: moveUpImg 8s infinite alternate ease-in-out;
  animation-delay: 2.45s;
}
.header-frames-desk {
  opacity: 0;
  animation: fadeInDevices 2s forwards linear;
  animation-delay: 0.3s;
  width: 600px;
  height: 400px;
}
@media screen and (max-width: 750px) {
  .header-frames-desk {
    width: 70vw;
    height: 46vw;
    margin: 0 0 0 0;
    border-radius: 8px;
  }
  .header-frames-desk div {
    left: 8px;
    top: 8px;
    right: 8px;
    bottom: 8px;
  }
}
.header-frames-tab {
  opacity: 0;
  animation: fadeInDevices 2.15s forwards linear;
  animation-delay: 0.15s;
  width: 200px;
  height: 270px;
  border-radius: 10px;
}
@media screen and (max-width: 1050px) {
  .header-frames-tab {
    margin: 0 0 -15px -160px;
    border-radius: 6px;
  }
}
@media screen and (max-width: 750px) {
  .header-frames-tab {
    width: 23vw;
    height: 31vw;
    margin: 0 0 -2vw -20vw;
  }
}
.header-frames-tab div {
  left: 10px;
  top: 10px;
  right: 10px;
  bottom: 10px;
}
@media screen and (max-width: 1050px) {
  .header-frames-tab div {
    left: 6px;
    top: 6px;
    right: 6px;
    bottom: 6px;
  }
}
.header-frames-mob {
  opacity: 0;
  animation: fadeInDevices 2.3s forwards linear;
  animation-delay: 0s;
  width: 100px;
  height: 210px;
  border-radius: 6px;
}
@media screen and (max-width: 1050px) {
  .header-frames-mob {
    margin: 0 0 -25px -80px;
    border-radius: 4px;
  }
}
@media screen and (max-width: 750px) {
  .header-frames-mob {
    width: 12vw;
    height: 25vw;
    margin: 0 0 -4vw -10vw;
  }
}
.header-frames-mob div {
  left: 3px;
  top: 8px;
  right: 3px;
  bottom: 20px;
}
@media screen and (max-width: 1050px) {
  .header-frames-mob div {
    top: 6px;
    bottom: 12px;
  }
}
.header-text_title {
  position: absolute;
  left: 0;
  width: 100%;
  top: 250px;
  text-align: center;
  font-size: 60px;
  font-weight: bold;
  color: var(--titles);
  box-sizing: border-box;
  padding: 0 20px;
}
@media screen and (max-width: 1050px) {
  .header-text_title {
    top: 240px;
    font-size: 50px;
  }
}
@media screen and (max-width: 750px) {
  .header-text_title {
    top: calc(200px - 10vw);
    font-size: 35px;
  }
}
.content {
  width: 100%;
  background: var(--bg_gradient);
}
@media screen and (max-width: 750px) {
  .content {
    background: var(--bg_gradient_mob);
  }
}
.content .header {
  position: relative;
  height: 97vh;
}
.content-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 120px 80px;
  background: transparent;
}
@media screen and (max-width: 1050px) {
  .content-info {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 750px) {
  .content-info {
    padding: 40px;
  }
}
.content-info-text_title {
  margin-bottom: 50px;
  font-size: 50px;
  font-weight: bold;
  color: var(--titles);
  margin-bottom: 80px;
}
@media screen and (max-width: 750px) {
  .content-info-text_title {
    margin-bottom: 60px;
    font-size: 40px;
  }
}
@media screen and (max-width: 500px) {
  .content-info-text_title {
    margin-top: -20px;
    font-size: 30px;
    font-weight: bold;
  }
}
.content-info-blocks {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1050px) {
  .content-info-blocks {
    flex-direction: column;
    gap: 80px;
  }
}
.content-info-blocks-block {
  display: flex;
  flex-direction: column;
  width: 35%;
  height: 100%;
  font-size: 18px;
  color: var(--font_color);
}
.content-info-blocks-block:last-child {
  width: 15%;
}
@media screen and (max-width: 1050px) {
  .content-info-blocks-block {
    width: 100%;
  }
  .content-info-blocks-block:last-child {
    width: 100%;
  }
}
.content-info-blocks-block-text_title {
  margin: 20px 0;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 1050px) {
  .content-info-blocks-block-text_title {
    margin: 10px 0;
    font-size: 20px;
  }
}
.content-info-blocks-block-icons-icon_1 {
  display: block;
  width: 130px;
  height: 130px;
  background-image: url("../icons/consult.svg");
  filter: var(--icon_color_primary);
}
.content-info-blocks-block-icons-icon_2 {
  display: block;
  width: 130px;
  height: 130px;
  margin-left: -5px;
  background: url("../icons/program.svg");
  filter: var(--icon_color_secondary);
}
.content-info-blocks-block-icons-icon_3 {
  display: block;
  width: 130px;
  height: 130px;
  margin-left: -5px;
  transform: scaleX(-1);
  background-image: url("../icons/contact.svg");
  filter: var(--icon_color_primary);
}
.content-info-blocks-block-text_box {
  min-height: 230px;
  text-align: left;
}
.content-info-blocks-block-text_box ul {
  margin-top: 0;
  padding-inline-start: 0;
  list-style: none;
}
@media screen and (max-width: 1050px) {
  .content-info-blocks-block-text_box {
    font-size: 18px;
  }
  .content-info-blocks-block-text_box:last-child {
    min-height: 0;
    height: fit-content;
  }
}
.footer {
  display: flex;
  height: 60px;
  padding: 0 80px;
  align-items: center;
  justify-content: center;
  background: var(--footer_bg);
}
@media screen and (max-width: 1050px) {
  .footer {
    justify-content: center;
  }
}
.footer-info {
  display: flex;
  margin: 6px 0 0 0;
  align-items: center;
}
.footer-info-text {
  font-size: 18px;
  font-weight: bold;
  color: var(--font_color);
}
.footer-info-text:last-child {
  margin-left: 15px;
}
.footer-info-text a {
  color: var(--font_color);
}
@media screen and (max-width: 750px) {
  .footer-info-text {
    font-size: 16px;
  }
}
@keyframes scaleUpLogo {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes fadeInDevices {
  0% {
    opacity: 0;
    transform: rotateY(180deg);
    filter: brightness(0);
  }
  1% {
    opacity: 0;
  }
  50% {
    opacity: 0.7;
    transform: rotateY(270deg);
    filter: brightness(0);
  }
  55% {
    transform: rotateY(290deg);
    filter: brightness(0.5);
  }
  100% {
    opacity: 1;
    transform: rotateY(360deg);
    filter: brightness(1);
  }
}
@keyframes moveUpImg {
  0% {
    object-position: 0% 0%;
  }
  100% {
    object-position: 0% 100%;
  }
}
@keyframes moveDownNavbar {
  0% {
    top: -200px;
  }
  100% {
    top: 0;
  }
}
@keyframes moveDownNavbarScroll {
  0% {
    top: -80px;
  }
  100% {
    top: 0;
  }
}
@keyframes dropdownMenu {
  0% {
    max-height: 0px;
  }
  100% {
    max-height: 150px;
  }
}
