.nav-wrapper {
  background-color: var(--color-background);
  width: 100%;
  height: 100%;
  transition: background-color 900ms var(--ease-out-cubic); }
  .nav-wrapper._dark {
    background-color: #131618; }

.navbar {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9000;
  transition: top ease-in-out 0.5s;
  box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.322);
  height: 64px; }
  .navbar .navbar__logo {
    cursor: none;
    display: flex;
    justify-content: center;
    align-items: center; }
    .navbar .navbar__logo img {
      height: 40px; }
  .navbar__back-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000b9;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px); }
  .navbar_hide {
    top: -80px; }
  @media (max-width: 900px) {
    .navbar {
      width: 100%;
      padding: 0 20px;
      top: 64px; } }
  @media (min-width: 900px) {
    .navbar {
      width: 100%;
      padding: 0 80px;
      top: 80px; } }
  @media (min-width: 1440px) {
    .navbar {
      width: 100%;
      padding: 0 calc((100vw - 1280px) / 2); } }
  @media (min-width: 1600px) {
    .navbar {
      width: 100%;
      padding: 0 calc((100vw - 1440px) / 2); } }
  .navbar__controls {
    display: flex; }
  .navbar__burger {
    position: relative;
    display: flex;
    align-items: center;
    background: none;
    border: none;
    outline: none;
    padding: 0; }
    .navbar__burger::before {
      content: "";
      display: block;
      position: absolute;
      transform: translate(-50%, -50%);
      left: 50%;
      top: 50%;
      z-index: -1; }
  .navbar__logo {
    position: relative;
    width: auto; }
    @media (max-width: 900px) {
      .navbar__logo {
        height: 40px; }
        .navbar__logo > img {
          height: 40px; } }
    @media (min-width: 900px) {
      .navbar__logo {
        min-width: 140px;
        height: 48px; }
        .navbar__logo > img {
          height: 48px; } }
  .navbar__langs {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 25px; }

@-webkit-keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.hide {
  top: -80px !important; }

.banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  z-index: 9000;
  background-color: #FFE475;
  font-family: futura-pt, sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 80px 0px;
  transition: top ease-in-out 0.5s; }
  .banner .img-patern {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url("/static/images/waves.svg");
    background-size: 500px;
    opacity: 1; }
  .banner .banner-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center; }
  @media (max-width: 900px) {
    .banner {
      width: 100%;
      height: 64px; } }
  .banner__image-one {
    height: 72px;
    margin-right: 32px; }
    @media (max-width: 900px) {
      .banner__image-one {
        height: 56px; } }
  .banner__image-two {
    height: 72px; }
    @media (max-width: 900px) {
      .banner__image-two {
        display: none; } }
  .banner__text-one {
    font-size: 22px;
    font-weight: 700;
    color: #423500 !important;
    margin-bottom: 0px;
    font-family: futura-pt, sans-serif; }
  .banner__text-two {
    font-size: 18px;
    font-weight: 500;
    color: #423500 !important;
    font-family: futura-pt, sans-serif; }

.classic-banner-content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center; }
  .classic-banner-content-wrapper .text-wrapper {
    display: flex;
    flex-direction: column; }
    .classic-banner-content-wrapper .text-wrapper p {
      height: -webkit-fit-content;
      height: -moz-fit-content;
      height: fit-content;
      line-height: normal; }

@media (max-width: 500px) {
  .banner.classic {
    padding: 0 1rem;
    justify-content: center !important; }
    .banner.classic .classic-banner-content-wrapper {
      display: flex;
      width: 100%;
      gap: 1rem;
      justify-content: center; }
    .banner.classic .banner__image-one {
      margin: 0; } }

@media (max-width: 1000px) {
  .banner.classic .banner__text-two {
    font-size: 15px;
    text-shadow: 0px 1px 0.64rem #ffffff; } }

@media (max-width: 780px) {
  .banner.classic .banner__text-two {
    font-size: 13px; } }

@media (max-width: 750px) {
  .banner.classic .banner__text-two {
    font-size: 11px; } }

@media (max-width: 900px) {
  .banner.classic .banner__text-one {
    font-size: 18px; } }

@media (max-width: 720px) {
  .banner.classic .banner__text-one {
    font-size: 14px;
    text-shadow: 0px 1px 0.4rem #ffffff; } }

@media (max-width: 900px) {
  .banner.classic {
    display: flex;
    justify-content: center;
    align-items: center; } }

.banner.indep {
  color: azure;
  padding: 0px 80px 0px;
  align-items: center; }
  @media (max-width: 1330px) {
    .banner.indep {
      padding-right: 20px; } }
  .banner.indep .banner__image-one {
    height: 56px; }
    @media (max-width: 900px) {
      .banner.indep .banner__image-one {
        height: 34px; } }
  .banner.indep .banner__image-two {
    height: 72px; }
    @media (max-width: 900px) {
      .banner.indep .banner__image-two {
        display: block; } }
  @media (max-width: 1600px) {
    .banner.indep .banner__text-one {
      font-size: 18px; } }
  @media (max-width: 720px) {
    .banner.indep .banner__text-one {
      font-size: 16px; } }
  @media (max-width: 540px) {
    .banner.indep .banner__text-one {
      font-size: 14px; } }
  @media (max-width: 1600px) {
    .banner.indep .banner__text-two {
      font-size: 16px;
      text-shadow: 0px 1px 0.4rem #1b5c7552; } }
  @media (max-width: 1340px) {
    .banner.indep .banner__text-two {
      font-size: 14px; } }
  @media (max-width: 1050px) {
    .banner.indep .banner__text-two {
      font-size: 12px;
      font-weight: 800;
      text-shadow: 0px 1px 0.4rem #ffffff94; } }
  @media (max-width: 990px) {
    .banner.indep .banner__text-two {
      display: none; } }
  .banner.indep .portraits-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 5px; }
    @media (max-width: 1600px) {
      .banner.indep .portraits-wrapper .portrait-container:nth-last-child(1) {
        display: none; }
      .banner.indep .portraits-wrapper .portrait-container:nth-last-child(2) {
        display: none; } }
    @media (max-width: 1200px) {
      .banner.indep .portraits-wrapper .portrait-container:nth-last-child(3) {
        display: none; }
      .banner.indep .portraits-wrapper .portrait-container:nth-last-child(4) {
        display: none; } }
    @media (max-width: 710px) {
      .banner.indep .portraits-wrapper .portrait-container:nth-last-child(5) {
        display: none; }
      .banner.indep .portraits-wrapper .portrait-container:nth-last-child(6) {
        display: none; } }
    @media (max-width: 500px) {
      .banner.indep .portraits-wrapper .portrait-container:nth-last-child(7) {
        display: none; } }
    @media (max-width: 430px) {
      .banner.indep .portraits-wrapper .portrait-container:nth-last-child(8) {
        display: none; } }
    .banner.indep .portraits-wrapper .portrait-container {
      -webkit-animation: fade-in ease-in 0.4s;
              animation: fade-in ease-in 0.4s;
      transition: transform ease-in-out 0.2s;
      margin: 0 10px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
      background-image: url("/static/images/patern.png");
      background-size: 80px;
      height: 100%;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      max-width: 80px; }
      @media (max-width: 1350px) {
        .banner.indep .portraits-wrapper .portrait-container {
          max-width: 70px; } }
      @media (max-width: 900px) {
        .banner.indep .portraits-wrapper .portrait-container {
          max-width: 60px; } }
      .banner.indep .portraits-wrapper .portrait-container img {
        height: 100%;
        width: 100%; }
      .banner.indep .portraits-wrapper .portrait-container:hover {
        z-index: 3;
        transform: scale(1.1); }

.banner.dec6 {
  background: linear-gradient(#6985B4, #839BC6);
  padding: 0;
  margin: 0; }
  .banner.dec6 .bg-image {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: bottom;
    background-image: url("/static/images/banner/6dec/Background.png"); }
    @media (max-width: 1800px) {
      .banner.dec6 .bg-image {
        background-repeat: repeat-x;
        background-position-x: 40px; } }
    @media (max-width: 1400px) {
      .banner.dec6 .bg-image {
        background-position-x: 100px; } }
    @media (max-width: 1310px) {
      .banner.dec6 .bg-image {
        background-position-x: left;
        background-size: auto; } }
    @media (max-width: 750px) {
      .banner.dec6 .bg-image {
        background-position-x: -100px; } }
    @media (max-width: 660px) {
      .banner.dec6 .bg-image {
        background-position-x: -150px; } }
    @media (max-width: 570px) {
      .banner.dec6 .bg-image {
        background-position-x: -10rem; } }
    @media (max-width: 530px) {
      .banner.dec6 .bg-image {
        background-position-x: -12rem; } }
    @media (max-width: 470px) {
      .banner.dec6 .bg-image {
        background-position-x: -16rem; } }
    @media (max-width: 400px) {
      .banner.dec6 .bg-image {
        background-position-x: -20rem; } }
    @media (max-width: 270px) {
      .banner.dec6 .bg-image {
        background-position-x: center;
        background-size: auto;
        opacity: 0.7; } }
  .banner.dec6 .st-image {
    position: absolute;
    bottom: 0;
    left: 37%; }
    @media (max-width: 2200px) {
      .banner.dec6 .st-image {
        left: 35%; } }
    @media (max-width: 1800px) {
      .banner.dec6 .st-image {
        left: 37%; } }
    @media (max-width: 1400px) {
      .banner.dec6 .st-image {
        left: 41%; } }
    @media (max-width: 1310px) {
      .banner.dec6 .st-image {
        left: 42.5rem;
        height: 95%; } }
    @media (max-width: 750px) {
      .banner.dec6 .st-image {
        left: 36.5rem; } }
    @media (max-width: 660px) {
      .banner.dec6 .st-image {
        left: 33.5rem; } }
    @media (max-width: 600px) {
      .banner.dec6 .st-image {
        display: none; } }
  @media (max-width: 1000px) {
    .banner.dec6 {
      justify-content: flex-start !important; } }
  .banner.dec6 .dec6-content-wrapper {
    -webkit-text-size-adjust: 100%;
    padding-left: 6rem;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    align-items: center; }
    @media (max-width: 900px) {
      .banner.dec6 .dec6-content-wrapper {
        padding-left: 4rem; } }
    @media (max-width: 750px) {
      .banner.dec6 .dec6-content-wrapper {
        padding-left: 2.5rem;
        gap: 1rem; } }
    @media (max-width: 615px) {
      .banner.dec6 .dec6-content-wrapper {
        padding-left: 1rem; } }
    @media (max-width: 500px) {
      .banner.dec6 .dec6-content-wrapper {
        width: 100%; }
        .banner.dec6 .dec6-content-wrapper .dec-text {
          text-align: right;
          padding-right: 1rem; } }
    @media (max-width: 270px) {
      .banner.dec6 .dec6-content-wrapper {
        padding-left: 1rem; }
        .banner.dec6 .dec6-content-wrapper .dec-text {
          text-align: center; }
        .banner.dec6 .dec6-content-wrapper .main-image {
          display: none; } }
    .banner.dec6 .dec6-content-wrapper .ukr-dec-text {
      font-size: 21px !important;
      width: 18rem !important; }
      @media (max-width: 500px) {
        .banner.dec6 .dec6-content-wrapper .ukr-dec-text {
          font-size: 17.6px !important; } }
      @media (max-width: 365px) {
        .banner.dec6 .dec6-content-wrapper .ukr-dec-text {
          font-size: 14.4px !important; } }
      @media (max-width: 320px) {
        .banner.dec6 .dec6-content-wrapper .ukr-dec-text {
          font-size: 12.8px !important; } }
      @media (max-width: 280px) {
        .banner.dec6 .dec6-content-wrapper .ukr-dec-text {
          font-size: 10px !important; } }
      @media (max-width: 300px) {
        .banner.dec6 .dec6-content-wrapper .ukr-dec-text {
          font-size: 9.5px !important; } }
    .banner.dec6 .dec6-content-wrapper .dec-text {
      line-height: 115%;
      font-size: 1rem;
      color: #ffffffe8;
      width: 20rem;
      font-family: Calibri, futura-pt, sans-serif;
      font-weight: bold; }
      @media (max-width: 750px) {
        .banner.dec6 .dec6-content-wrapper .dec-text {
          font-size: 1rem;
          color: #ffffff; } }
      @media (max-width: 500px) {
        .banner.dec6 .dec6-content-wrapper .dec-text {
          font-size: 0.9rem; } }
      @media (max-width: 365px) {
        .banner.dec6 .dec6-content-wrapper .dec-text {
          font-size: 0.8rem; } }
      @media (max-width: 320px) {
        .banner.dec6 .dec6-content-wrapper .dec-text {
          font-size: 10px; } }
    .banner.dec6 .dec6-content-wrapper .main-image {
      height: 100%; }
      @media (max-width: 900px) {
        .banner.dec6 .dec6-content-wrapper .main-image {
          height: 64px; } }

.banner.xmas {
  padding: 0;
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  background-color: #eee5c8; }
  @media (max-width: 700px) {
    .banner.xmas {
      gap: 0; } }
  @media (max-width: 330px) {
    .banner.xmas {
      gap: 0.2rem; } }
  .banner.xmas .bg-big-xmas-tree {
    height: 105%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content; }
    @media (max-width: 700px) {
      .banner.xmas .bg-big-xmas-tree {
        display: none; } }
  .banner.xmas .bg-big-xmas-text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 100%; }
    @media (max-width: 700px) {
      .banner.xmas .bg-big-xmas-text {
        display: none; } }
  .banner.xmas .bg-small-xmas-tree {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 100%;
    display: none; }
    @media (max-width: 700px) {
      .banner.xmas .bg-small-xmas-tree {
        display: block; } }
  .banner.xmas .bg-small-xmas-text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 100%;
    display: none; }
    @media (max-width: 700px) {
      .banner.xmas .bg-small-xmas-text {
        display: block; } }
    @media (max-width: 330px) {
      .banner.xmas .bg-small-xmas-text {
        width: 70%; } }

footer {
  padding: 6rem 12rem;
  display: flex;
  justify-content: center;
  padding-bottom: 5rem;
  width: 100%;
  font-family: 'sofia-pro'; }
  @media (max-width: 1400px) {
    footer {
      padding-left: 4rem;
      padding-right: 4rem; } }
  @media (max-width: 900px) {
    footer {
      padding-left: 1rem;
      padding-right: 1rem;
      padding-top: 4rem; } }
  footer .footer-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 1920px; }
    footer .footer-content__info-wrapper {
      flex-grow: 1;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-end;
      padding-bottom: 1rem; }
      @media (max-width: 550px) {
        footer .footer-content__info-wrapper {
          flex-direction: column;
          justify-content: center;
          align-items: flex-start;
          gap: 1.5rem; } }
      footer .footer-content__info-wrapper .geo-wrapper {
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
        gap: 1rem; }
        @media (max-width: 550px) {
          footer .footer-content__info-wrapper .geo-wrapper {
            align-items: flex-start;
            justify-content: flex-start;
            gap: 0.4rem; } }
        footer .footer-content__info-wrapper .geo-wrapper a, footer .footer-content__info-wrapper .geo-wrapper p {
          line-height: 1.4rem;
          text-align: right;
          font-size: 1.4rem;
          color: var(--color-light); }
          @media (max-width: 550px) {
            footer .footer-content__info-wrapper .geo-wrapper a, footer .footer-content__info-wrapper .geo-wrapper p {
              text-align: left; } }
          @media (max-width: 900px) {
            footer .footer-content__info-wrapper .geo-wrapper a, footer .footer-content__info-wrapper .geo-wrapper p {
              font-size: 1.1rem;
              line-height: normal; } }
        footer .footer-content__info-wrapper .geo-wrapper .geo-block {
          text-align: right; }
          @media (max-width: 550px) {
            footer .footer-content__info-wrapper .geo-wrapper .geo-block {
              text-align: left; } }
        footer .footer-content__info-wrapper .geo-wrapper .tel-block {
          display: flex;
          align-items: center;
          font-size: 1.5rem;
          gap: 0.5rem;
          opacity: 0.8; }
          footer .footer-content__info-wrapper .geo-wrapper .tel-block svg, footer .footer-content__info-wrapper .geo-wrapper .tel-block a {
            color: rgba(255, 255, 255, 0.589); }
        footer .footer-content__info-wrapper .geo-wrapper p {
          opacity: 0.6; }
      footer .footer-content__info-wrapper .contact-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        height: 100%;
        justify-content: space-between; }
        @media (max-width: 550px) {
          footer .footer-content__info-wrapper .contact-wrapper {
            flex-direction: row;
            justify-content: space-between;
            width: 100%; } }
        @media (max-width: 380px) {
          footer .footer-content__info-wrapper .contact-wrapper {
            flex-direction: column;
            justify-content: flex-start;
            gap: 0; } }
        footer .footer-content__info-wrapper .contact-wrapper .text-content-wrapper {
          display: flex;
          flex-direction: column; }
          footer .footer-content__info-wrapper .contact-wrapper .text-content-wrapper .heading {
            font-size: 2rem;
            margin: 0 !important;
            line-height: normal; }
            @media (max-width: 900px) {
              footer .footer-content__info-wrapper .contact-wrapper .text-content-wrapper .heading {
                font-size: 1.5rem; } }
            @media (max-width: 550px) {
              footer .footer-content__info-wrapper .contact-wrapper .text-content-wrapper .heading {
                line-height: 1.5rem; } }
          footer .footer-content__info-wrapper .contact-wrapper .text-content-wrapper .contact {
            font-size: 1.8rem; }
            @media (max-width: 900px) {
              footer .footer-content__info-wrapper .contact-wrapper .text-content-wrapper .contact {
                font-size: 1.2rem; } }
        footer .footer-content__info-wrapper .contact-wrapper .iso-wrapper {
          display: flex;
          gap: 0.2rem; }
          footer .footer-content__info-wrapper .contact-wrapper .iso-wrapper img {
            opacity: 0.75;
            width: 4rem;
            height: 4rem; }
            @media (max-width: 900px) {
              footer .footer-content__info-wrapper .contact-wrapper .iso-wrapper img {
                width: 3rem;
                height: 3rem; } }
            @media (max-width: 550px) {
              footer .footer-content__info-wrapper .contact-wrapper .iso-wrapper img {
                width: 3.5rem;
                height: 3.5rem; } }
    footer .footer-content .copyright-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 0.5rem;
      padding-top: 0.7rem;
      padding-bottom: 2rem;
      width: 100%;
      border-top: 2px solid rgba(255, 255, 255, 0.2); }
      @media (max-width: 700px) {
        footer .footer-content .copyright-wrapper {
          flex-direction: column-reverse; } }
      footer .footer-content .copyright-wrapper .cpright-span {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.42); }
        @media (max-width: 700px) {
          footer .footer-content .copyright-wrapper .cpright-span {
            font-size: 1.1rem; } }
        @media (max-width: 700px) {
          footer .footer-content .copyright-wrapper .cpright-span {
            text-align: center; } }
      footer .footer-content .copyright-wrapper .links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        color: white; }
        @media (max-width: 700px) {
          footer .footer-content .copyright-wrapper .links {
            width: 100%;
            justify-content: space-between;
            margin-bottom: 1rem; } }
        footer .footer-content .copyright-wrapper .links img {
          width: 2rem;
          height: 2rem; }

@-webkit-keyframes preloader {
  0% {
    transform: translateY(0); }
  100% {
    transform: translateY(-100%); } }

@keyframes preloader {
  0% {
    transform: translateY(0); }
  100% {
    transform: translateY(-100%); } }

@-webkit-keyframes circle_1 {
  0% {
    transform: translateX(50px) scale(0.5); }
  25% {
    transform: translateX(50px) scale(0.25); }
  50% {
    transform: translateX(50px) scale(1); }
  100% {
    transform: translateX(10px); } }

@keyframes circle_1 {
  0% {
    transform: translateX(50px) scale(0.5); }
  25% {
    transform: translateX(50px) scale(0.25); }
  50% {
    transform: translateX(50px) scale(1); }
  100% {
    transform: translateX(10px); } }

@-webkit-keyframes circle_2 {
  0% {
    transform: translateX(-50px) scale(0.5); }
  25% {
    transform: translateX(-50px) scale(0.25); }
  50% {
    transform: translateX(-50px) scale(1); }
  100% {
    transform: translateX(-10px); } }

@keyframes circle_2 {
  0% {
    transform: translateX(-50px) scale(0.5); }
  25% {
    transform: translateX(-50px) scale(0.25); }
  50% {
    transform: translateX(-50px) scale(1); }
  100% {
    transform: translateX(-10px); } }

@-webkit-keyframes text_1 {
  0% {
    transform: translateX(20px);
    opacity: 0; }
  25% {
    transform: translateX(20px);
    opacity: 0; }
  50% {
    transform: translateX(20px);
    opacity: 0; }
  100% {
    transform: translateX(-2px);
    opacity: 1; } }

@keyframes text_1 {
  0% {
    transform: translateX(20px);
    opacity: 0; }
  25% {
    transform: translateX(20px);
    opacity: 0; }
  50% {
    transform: translateX(20px);
    opacity: 0; }
  100% {
    transform: translateX(-2px);
    opacity: 1; } }

@-webkit-keyframes text_2 {
  0% {
    transform: translateX(-20px);
    opacity: 0; }
  25% {
    transform: translateX(-20px);
    opacity: 0; }
  50% {
    transform: translateX(-20px);
    opacity: 0; }
  100% {
    transform: translateX(2px);
    opacity: 1; } }

@keyframes text_2 {
  0% {
    transform: translateX(-20px);
    opacity: 0; }
  25% {
    transform: translateX(-20px);
    opacity: 0; }
  50% {
    transform: translateX(-20px);
    opacity: 0; }
  100% {
    transform: translateX(2px);
    opacity: 1; } }

.preloader {
  position: fixed;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0F0F0F;
  z-index: 100000;
  -webkit-animation: preloader 1s cubic-bezier(0.075, 0.82, 0.165, 1) 4s forwards;
          animation: preloader 1s cubic-bezier(0.075, 0.82, 0.165, 1) 4s forwards; }

.circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 6px solid #fafafa;
  background-color: #0F0F0F;
  display: flex;
  justify-content: center;
  align-items: center; }

.circle_1 {
  -webkit-animation: circle_1 3s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
          animation: circle_1 3s cubic-bezier(0.075, 0.82, 0.165, 1) forwards; }
  .circle_1 > svg {
    opacity: 0;
    -webkit-animation: text_1 3s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
            animation: text_1 3s cubic-bezier(0.075, 0.82, 0.165, 1) forwards; }

.circle_2 {
  -webkit-animation: circle_2 3s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
          animation: circle_2 3s cubic-bezier(0.075, 0.82, 0.165, 1) forwards; }
  .circle_2 > svg {
    opacity: 0;
    -webkit-animation: text_2 3s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
            animation: text_2 3s cubic-bezier(0.075, 0.82, 0.165, 1) forwards; }

.circle_2:before {
  content: " ";
  position: absolute;
  z-index: 99;
  top: -21px;
  left: -21px;
  right: -21px;
  bottom: -21px;
  border-radius: 50%;
  border: 15px solid #0F0F0F; }

@-webkit-keyframes video-container-mobile {
  0% {
    transform: translateX(100%); }
  100% {
    transform: translateX(240px); } }

@keyframes video-container-mobile {
  0% {
    transform: translateX(100%); }
  100% {
    transform: translateX(240px); } }

@-webkit-keyframes video-container {
  0% {
    transform: translateX(100%); }
  100% {
    transform: translateX(0); } }

@keyframes video-container {
  0% {
    transform: translateX(100%); }
  100% {
    transform: translateX(0); } }

.hero__right-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  min-width: 560px;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end; }

.hero__video-container {
  height: 560px;
  width: 800px;
  background-color: var(--color-primary);
  background-image: url("/static/images/Home/Hero.jpg");
  background-size: cover;
  background-position: center center;
  position: relative;
  transform: translateX(100%);
  z-index: 89; }
  @media (max-width: 900px) {
    .hero__video-container {
      -webkit-animation: video-container-mobile 900ms 900ms var(--ease-out-cubic) forwards;
              animation: video-container-mobile 900ms 900ms var(--ease-out-cubic) forwards;
      opacity: 0.4; } }
  @media (min-width: 900px) {
    .hero__video-container {
      -webkit-animation: video-container 900ms 900ms var(--ease-out-cubic) forwards;
              animation: video-container 900ms 900ms var(--ease-out-cubic) forwards; } }

@-webkit-keyframes widthAnim {
  0% {
    width: 0%; }
  80% {
    opacity: 1; }
  100% {
    width: 100%;
    opacity: 0; } }

@keyframes widthAnim {
  0% {
    width: 0%; }
  80% {
    opacity: 1; }
  100% {
    width: 100%;
    opacity: 0; } }

.hero-sub-content {
  height: 12rem;
  margin-left: 3rem; }
  .hero-sub-content .content-wrapper {
    position: relative;
    border-radius: 5px;
    padding: 10px; }
  .hero-sub-content .content-wrapper::before {
    content: '';
    background-color: #7093dd;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-animation: widthAnim 10s ease-in forwards infinite;
            animation: widthAnim 10s ease-in forwards infinite;
    height: 3px; }

.stage-list-wrapper {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all ease-in-out 0.2s;
  gap: 10px;
  padding: 1rem;
  flex-grow: 1;
  justify-content: center; }
  .stage-list-wrapper .stage-block {
    box-shadow: inset 0.1em 0.1em 10px rgba(11, 12, 12, 0.267);
    -webkit-filter: drop-shadow(0 10px 0.75rem rgba(211, 222, 230, 0.295));
            filter: drop-shadow(0 10px 0.75rem rgba(211, 222, 230, 0.295));
    transition: background-color 0.2s ease-in-out, -webkit-filter 0.25s ease-in-out;
    transition: filter 0.25s ease-in-out, background-color 0.2s ease-in-out;
    transition: filter 0.25s ease-in-out, background-color 0.2s ease-in-out, -webkit-filter 0.25s ease-in-out;
    padding: 0.2rem 0;
    width: 350px;
    text-align: center;
    background-color: #87c5ee;
    border-radius: 50px;
    padding-right: 0; }
    .stage-list-wrapper .stage-block h3 {
      font-size: 1.5rem; }
  .stage-list-wrapper .stage-block:last-child {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px; }
  .stage-list-wrapper .stage-block.active {
    box-shadow: inset 0.1em 0.1em 10px rgba(0, 0, 0, 0.493);
    background-color: #fce795;
    -webkit-filter: drop-shadow(0 10px 0.75rem rgba(78, 169, 230, 0.685));
            filter: drop-shadow(0 10px 0.75rem rgba(78, 169, 230, 0.685)); }
  .stage-list-wrapper .stage-block.mark {
    background-color: #ffffff; }

.tech-stack-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 4rem 0; }
  @media (max-width: 1340px) {
    .tech-stack-wrapper {
      flex-direction: column;
      gap: 40px;
      align-items: center; } }
  .tech-stack-wrapper .tech-content-wrapper {
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    box-shadow: 0px 3px 0.3rem 0.1rem rgba(0, 0, 0, 0.205); }
    .tech-stack-wrapper .tech-content-wrapper h2 {
      margin: 0; }
    @media (max-width: 1340px) {
      .tech-stack-wrapper .tech-content-wrapper {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content; } }
    .tech-stack-wrapper .tech-content-wrapper .bg-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -webkit-filter: blur(70px);
              filter: blur(70px); }
      .tech-stack-wrapper .tech-content-wrapper .bg-wrapper .circle {
        opacity: 0.6;
        z-index: -1;
        width: 400px;
        height: 400px;
        position: absolute;
        background-color: rgba(146, 146, 146, 0.377); }
      .tech-stack-wrapper .tech-content-wrapper .bg-wrapper .right {
        top: 50px;
        left: -50px; }
      .tech-stack-wrapper .tech-content-wrapper .bg-wrapper .left {
        top: 50px;
        right: -50px; }
    .tech-stack-wrapper .tech-content-wrapper .content.dev {
      align-items: center; }
    .tech-stack-wrapper .tech-content-wrapper .content {
      padding: 0.5rem 2rem;
      display: flex;
      gap: 10px;
      flex-direction: column;
      justify-content: flex-start; }
      .tech-stack-wrapper .tech-content-wrapper .content h2 {
        text-align: center; }
      .tech-stack-wrapper .tech-content-wrapper .content div {
        margin: 0;
        padding: 0; }
        .tech-stack-wrapper .tech-content-wrapper .content div h4 {
          font-weight: 900;
          font-size: 1.5rem;
          margin: 0;
          padding: 0; }

