body {
  background-color: #000000;
  background-image: url("../img/top-section-bg.svg");
  background-repeat: no-repeat;
  background-position: center 64px;
  background-size: 100%;
  font-family: "Onest", sans-serif;
  padding-top: 194px; }

* {
  box-sizing: border-box; }

a {
  text-decoration: none; }
  a:visited {
    color: #000000; }

ul {
  margin: 0;
  padding: 0; }

p {
  font-size: 20px;
  color: #BDBFC5;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Onest", sans-serif;
  margin: 0 0 0 0; }
  p b {
    font-weight: 500;
    color: #ffffff; }

picture {
  max-width: 100%; }
  picture img {
    max-width: 100%; }

button {
  cursor: pointer; }

.redirect_to {
  cursor: pointer; }

.btn_2 {
  color: #ffffff;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  padding: 6px 16px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 50px;
  border: 1px solid #43464B;
  background: #000000;
  max-height: 48px; }
  .btn_2:hover, .btn_2.active {
    color: #000000;
    background: linear-gradient(18deg, #FFF 27.86%, rgba(220, 181, 248, 0.92) 41.49%, #364EB8 74.88%); }

h2 {
  font-size: 48px; }

.btn {
  display: flex;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  color: #000000;
  text-align: center;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-weight: 500;
  background-color: #ffffff;
  border-radius: 8px;
  width: fit-content;
  margin: 0 auto;
  transition: ease-in-out .3s;
  cursor: pointer;
  border: 1px transparent solid; }
  .btn:hover {
    background-color: #000000;
    color: #ffffff;
    border: 1px #ffffff solid; }

.start_order {
  margin-top: 48px; }

.btn:disabled, .btn.disabled {
  background: rgba(102, 106, 114, 0.66);
  color: #9BA1AB;
  cursor: not-allowed;
  transform: none; }

.btn:disabled:hover, .btn.disabled:hover {
  background-color: rgba(102, 106, 114, 0.66);
  transform: none;
  border: 1px transparent solid; }

.red_button_link {
  border-radius: 8px;
  background: linear-gradient(0deg, #a73c2e 0%, #eb5643 100%);
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-family: "Onest", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 14px 20px;
  transition: background .3s linear;
  width: 100%;
  max-width: 300px; }
  .red_button_link:hover {
    color: #ffffff; }

.hidden_menu_btn {
  display: none;
  width: 36px;
  height: 36px;
  background: url("../img/menu_open.svg") no-repeat center center;
  cursor: pointer;
  margin-left: 20px; }
  @media only screen and (max-width: 960px) {
    .hidden_menu_btn {
      display: block; } }
  .hidden_menu_btn.opened {
    background: url("../img/menu_close.svg") no-repeat center center; }

.container {
  padding: 0 16px;
  width: 100%;
  max-width: 1232px;
  margin: 0 auto; }

.inner_page {
  padding: 32px 16px;
  width: 100%;
  max-width: 1232px;
  margin: 0 auto; }

.header {
  min-height: 94px;
  padding: 24px 0;
  background: #000000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9; }
  .header .container {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
  .header .logo {
    margin-right: auto; }
    .header .logo img {
      width: 100%;
      max-width: 220px; }
    @media only screen and (max-width: 560px) {
      .header .logo {
        max-width: 200px; } }
  .header .menu_and_languages {
    display: flex;
    align-items: center;
    gap: 30px; }
    .header .menu_and_languages .languages {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 20px; }
      .header .menu_and_languages .languages a {
        font-weight: 400;
        font-size: 16px;
        color: #BDBFC5;
        transition: ease-in-out 0.3s; }
        .header .menu_and_languages .languages a:hover {
          color: #ffffff; }
        .header .menu_and_languages .languages a.active {
          color: #ffffff;
          font-weight: 500; }
          .header .menu_and_languages .languages a.active:after {
            content: "";
            display: block;
            width: 100%;
            height: 1px;
            background: #ffffff;
            margin-top: 3px; }
    .header .menu_and_languages .menu {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 24px; }
      .header .menu_and_languages .menu a {
        font-weight: 400;
        font-size: 16px;
        color: #BDBFC5;
        transition: ease-in-out 0.3s; }
        .header .menu_and_languages .menu a:hover {
          color: #ffffff; }
        .header .menu_and_languages .menu a.active {
          font-weight: 500;
          color: #ffffff; }
  .header .cart_icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3px;
    margin-left: 30px; }
    .header .cart_icon .items_in_cart {
      display: flex;
      align-items: center;
      text-align: center;
      justify-content: center;
      font-family: "Onest", sans-serif;
      color: #000000;
      font-size: 14px;
      font-weight: 500;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #ffffff; }

.hero {
  margin-bottom: 126px; }
  .hero h1 {
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
    font-family: "Inter Tight", sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.1; }
  .hero p {
    display: block;
    margin: 0 0 30px 0;
    text-align: center; }
    .hero p strong {
      font-weight: 500; }
  .hero .img_section {
    margin: 30px 0 90px;
    text-align: center; }
  .hero .features {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin: 0 auto;
    background-color: #0B0C0E;
    padding: 20px 0; }
    .hero .features li {
      display: flex;
      align-items: center;
      gap: 14px;
      color: #BDBFC5; }

.what_is_node {
  margin-bottom: 90px; }
  .what_is_node .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px; }
  .what_is_node .picture {
    max-width: 550px;
    width: 100%; }
    .what_is_node .picture img {
      max-width: 550px;
      width: 100%; }
  .what_is_node .about_the_node {
    display: flex;
    flex-direction: column;
    max-width: 591px;
    width: 100%; }
    .what_is_node .about_the_node span {
      color: #ffffff;
      font-family: "Onest", sans-serif;
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      padding: 6px 16px;
      border-radius: 50px;
      border: 1px solid #FFF;
      width: fit-content; }
    .what_is_node .about_the_node h2 {
      color: #ffffff;
      font-family: "Inter Tight", sans-serif;
      font-style: normal;
      font-weight: 500;
      margin: 28px 0;
      line-height: 1.2; }
    .what_is_node .about_the_node p {
      margin-bottom: 12px; }

.services {
  padding: 78px 0 125px;
  background: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0) 60%), radial-gradient(107.13% 130% at 50% 10%, rgba(0, 0, 0, 0) 42.41%, #B59ADE 76%, #FFF 100%); }
  .services h2 {
    color: #ffffff;
    text-align: center;
    font-family: "Inter Tight", sans-serif;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 50px; }
  .services .services_list {
    display: flex;
    justify-content: center;
    align-items: stretch;
    position: relative; }
    .services .services_list:before, .services .services_list:after {
      content: "";
      display: block;
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background-color: #ffffff;
      position: absolute;
      z-index: 2; }
    .services .services_list:before {
      right: -5px;
      top: -5px; }
    .services .services_list:after {
      right: -5px;
      bottom: -5px; }
  .services .service_item {
    padding: 40px;
    border: 1px solid #141619;
    background: #0B0C0E;
    position: relative;
    width: 33.333%;
    min-width: 33.333%; }
    .services .service_item:before, .services .service_item:after {
      content: "";
      display: block;
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background-color: #ffffff;
      position: absolute; }
    .services .service_item:before {
      left: -6px;
      top: -6px; }
    .services .service_item:after {
      left: -6px;
      bottom: -6px; }
    .services .service_item svg {
      margin-bottom: 60px; }
    .services .service_item h3 {
      color: #ffffff;
      font-family: "Inter Tight", sans-serif;
      font-size: 28px;
      font-style: normal;
      font-weight: 500;
      margin-bottom: 24px; }
    .services .service_item p {
      font-size: 18px; }

.nodes {
  padding: 120px 0;
  background: linear-gradient(0deg, #0B0C0E 0%, #0B0C0E 100%), linear-gradient(191deg, #000 27.5%, #1E2C68 52.08%, #364EB8 71%); }
  .nodes h2 {
    color: #ffffff;
    text-align: center;
    font-family: "Inter Tight", sans-serif;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 50px; }
  .nodes .node_items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto; }
  .nodes .custom_quantity {
    display: flex;
    align-items: center;
    max-height: 48px;
    border-radius: 50px;
    border: 1px solid #43464B;
    padding: 6px 16px; }
    .nodes .custom_quantity .plus {
      display: block;
      width: 20px;
      height: 28px;
      font-size: 1px;
      color: transparent;
      background: url("../img/plus-svgrepo-com.svg") no-repeat center center;
      background-size: contain;
      cursor: pointer; }
    .nodes .custom_quantity input {
      background: transparent;
      width: 52px;
      outline: none;
      border-radius: 8px;
      color: #ffffff;
      font-size: 16px;
      padding: 8px 6px 8px 6px;
      border: 1px solid #43464B;
      text-align: center;
      margin: 0 12px; }
      .nodes .custom_quantity input::placeholder {
        color: rgba(255, 255, 255, 0.75); }
    .nodes .custom_quantity .minus {
      display: block;
      width: 20px;
      height: 28px;
      font-size: 1px;
      color: transparent;
      background: url("../img/minus-svgrepo-com.svg") no-repeat center center;
      background-size: contain;
      cursor: pointer; }
  .nodes .node_item {
    display: flex;
    flex-wrap: wrap;
    padding: 24px;
    align-self: stretch;
    border: 1px solid #141619;
    background: #000000;
    justify-content: space-between; }
  .nodes .node_item_info {
    width: 100%;
    max-width: 524px; }
  .nodes .node_item_title {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    color: #ffffff;
    font-family: "Onest", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal; }
    .nodes .node_item_title img {
      margin-right: 16px;
      max-width: 40px;
      width: 100%;
      border-radius: 11px; }
  .nodes .node_item_description {
    padding-left: 56px;
    font-size: 14px;
    color: #BDBFC5;
    font-family: "Onest", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5; }
    .nodes .node_item_description a {
      color: #ffffff;
      font-family: "Onest", sans-serif;
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      text-decoration-line: underline;
      text-decoration-style: solid;
      text-decoration-skip-ink: none;
      text-decoration-thickness: auto;
      text-underline-offset: auto;
      text-underline-position: from-font; }
  .nodes .node_item_price {
    color: #ffffff;
    font-family: "Inter Tight", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.7; }
    .nodes .node_item_price b {
      margin-right: 10px;
      font-family: "Inter Tight", sans-serif;
      font-size: 48px;
      font-style: normal;
      font-weight: 500;
      line-height: 120%;
      text-transform: capitalize;
      color: #ffffff;
      background-image: linear-gradient(0deg, #fff 0%, #DCB5F8EC 29%, #364eb8 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; }
  .nodes .node_item_action_btns {
    margin-top: 24px;
    padding-top: 24px;
    width: 100%;
    gap: 16px;
    min-width: 100%;
    background: url("../img/delimeter.svg") no-repeat top center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start; }
    .nodes .node_item_action_btns:before, .nodes .node_item_action_btns:after {
      content: "";
      display: block;
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background-color: #ffffff;
      position: absolute;
      z-index: 2; }
    .nodes .node_item_action_btns:before {
      right: -5px;
      top: -5px; }
    .nodes .node_item_action_btns:after {
      left: -5px;
      top: -5px; }
    .nodes .node_item_action_btns .btn {
      margin: 0 0 0 auto; }

.cases {
  background-image: url("../img/top-section-bg.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%;
  padding: 120px 0 60px 0; }
  .cases h2 {
    color: #ffffff;
    text-align: center;
    font-family: "Inter Tight", sans-serif;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 50px; }
  .cases .cases_items {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap; }
  .cases .case {
    flex: none;
    width: calc((100% - 40px) / 3);
    border: 1px solid #141619;
    background: #0B0C0E;
    padding: 24px;
    transition: ease-in-out .3s; }
    .cases .case:hover {
      transform: scale(1.05); }
  .cases .case_title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    color: #ffffff;
    font-family: "Inter Tight", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 16px; }
    .cases .case_title img {
      max-width: 50px;
      border-radius: 12px;
      overflow: hidden;
      width: 100%; }
  .cases .case_description {
    color: #ffffff;
    font-family: "Onest", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 30px;
    min-height: 45px; }
  .cases .case_result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    border: 1px solid #43464B;
    padding-left: 20px; }
    .cases .case_result .btn {
      font-weight: 600;
      font-family: "Inter Tight", sans-serif; }
      .cases .case_result .btn:hover {
        background: #ffffff;
        border-color: transparent;
        color: #000000;
        cursor: default; }
    .cases .case_result span {
      width: 50%; }
      .cases .case_result span:first-child {
        color: #ffffff;
        font-family: "Onest", sans-serif;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.5; }

.faq {
  padding-bottom: 120px;
  padding-top: 60px; }
  .faq h2 {
    color: #ffffff;
    text-align: center;
    font-family: "Inter Tight", sans-serif;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 20px; }
  .faq .container > p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 40px; }
  .faq .faq_items {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px; }
  .faq .faq_item {
    border: 1px solid #141619;
    background: #000;
    padding: 28px 26px 0;
    transition: ease-in-out .3s; }
    .faq .faq_item.active {
      border: 1px solid #141619;
      background: #0B0C0E; }
      .faq .faq_item.active .faq_question:after {
        transform: rotate(180deg); }
  .faq .faq_question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    font-family: "Onest", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
    cursor: pointer;
    user-select: none;
    margin-bottom: 20px; }
    .faq .faq_question:after {
      content: "";
      display: block;
      width: 22px;
      min-width: 22px;
      height: 13px;
      background: url("../img/faq_arrow_bottom.svg") no-repeat;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      margin-left: 12px; }
  .faq .faq_answer {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding-top 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
    .faq .faq_answer p {
      color: #C4C9D4;
      font-family: "Onest", sans-serif;
      font-size: 18px;
      font-style: normal;
      font-weight: 300;
      line-height: 1.5; }
    .faq .faq_answer a {
      color: #DCB5F8EC; }
  .faq .faq_item.active {
    padding-bottom: 20px; }

.follow_us {
  padding-bottom: 120px;
  background: radial-gradient(107.13% 130% at 50% 10%, rgba(0, 0, 0, 0) 37.41%, #1E2C68 76%, #364EB8 100%); }
  .follow_us h2 {
    color: #ffffff;
    text-align: center;
    font-family: "Inter Tight", sans-serif;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 20px; }
  .follow_us .container > p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 50px; }
  .follow_us .social_platforms {
    display: flex;
    align-items: stretch;
    gap: 21px; }
  .follow_us .platform_card {
    border: 1px solid #141619;
    background: #0B0C0E;
    padding: 24px;
    position: relative;
    flex: 1 1 calc(25% - 15.75px);
    transition: ease-in-out .3s; }
    .follow_us .platform_card:hover {
      transform: scale(1.05); }
    .follow_us .platform_card:after {
      content: "";
      display: block;
      width: 18px;
      height: 18px;
      position: absolute;
      right: 24px;
      top: 24px; }
    .follow_us .platform_card .icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      border: 1px solid #2E2F33;
      position: relative;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center; }
      .follow_us .platform_card .icon img {
        max-width: 30px;
        width: 100%; }
      .follow_us .platform_card .icon.verified:after {
        content: "";
        display: block;
        width: 18px;
        height: 18px;
        position: absolute;
        right: 0;
        bottom: 0;
        background: url("../img/verified_icon.svg") no-repeat; }
    .follow_us .platform_card .platform_title {
      color: #ffffff;
      font-family: "Inter Tight", sans-serif;
      font-size: 28px;
      font-style: normal;
      font-weight: 500;
      line-height: 1.3;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      width: fit-content; }
      .follow_us .platform_card .platform_title:hover {
        text-decoration: underline; }
      .follow_us .platform_card .platform_title:after {
        content: "";
        display: flex;
        width: 24px;
        height: 24px;
        min-width: 24px;
        background: url("../img/out_link_icon.svg") no-repeat center center;
        margin-left: 10px; }
    .follow_us .platform_card .subscribers {
      color: #C4C9D4;
      font-family: "Onest", sans-serif;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 1.3;
      margin: 16px 0 24px; }
    .follow_us .platform_card ul li {
      color: #ffffff;
      font-family: "Onest", sans-serif;
      font-size: 18px;
      font-style: normal;
      font-weight: 300;
      margin-bottom: 12px;
      display: flex;
      align-items: center; }
      .follow_us .platform_card ul li:before {
        content: "";
        display: block;
        width: 6px;
        height: 6px;
        background: #ffffff;
        border-radius: 50%;
        margin-right: 10px; }

footer {
  padding: 50px 0 46px; }
  footer .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap; }
  footer .footer_left {
    display: flex;
    flex-direction: column; }
    footer .footer_left img {
      margin-bottom: 35px;
      max-width: 236px;
      width: 100%; }
    footer .footer_left p {
      font-size: 20px;
      color: #BDBFC5; }
      footer .footer_left p span {
        color: #ffffff; }
      footer .footer_left p a {
        color: #EB5643; }
  footer .footer_right {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start; }
    footer .footer_right h3 {
      color: #ffffff;
      font-family: "Inter Tight", sans-serif;
      font-size: 36px;
      font-style: normal;
      font-weight: 400;
      line-height: 1.3;
      margin-bottom: 30px; }
    footer .footer_right .btn {
      margin: 0 auto 0 0; }
  footer .copyright {
    margin-top: 97px;
    font-size: 16px;
    text-align: center;
    width: 100%; }

@media only screen and (max-width: 1100px) {
  footer .container {
    flex-direction: column; }
  footer .footer_left {
    margin-bottom: 32px; } }
@media only screen and (max-width: 960px) {
  h2 {
    font-size: 32px;
    margin-bottom: 30px; }

  body {
    padding-top: 144px; }

  .header {
    padding: 14px 0;
    min-height: 65px; }
    .header .menu_and_languages {
      position: fixed;
      width: 100%;
      background: #0B0C0E;
      left: calc(100% + 50px);
      top: 65px;
      transition: ease-in-out .3s;
      flex-direction: column;
      gap: 30px;
      padding-top: 60px;
      padding-bottom: 60px; }
      .header .menu_and_languages .menu {
        position: relative;
        flex-direction: column;
        left: unset;
        transform: unset;
        gap: 30px;
        margin-bottom: 54px; }
        .header .menu_and_languages .menu a {
          font-size: 28px; }
      .header .menu_and_languages .languages {
        margin-bottom: 30px; }
        .header .menu_and_languages .languages a {
          font-size: 28px; }
      .header .menu_and_languages.opened {
        left: 0; }
      .header .menu_and_languages .red_button_link {
        display: flex; }

  .hero {
    margin-bottom: 80px; }
    .hero h1 {
      font-size: 48px; }
    .hero p {
      font-size: 16px; }
    .hero .img_section {
      margin-top: 60px;
      margin-bottom: 60px; }
    .hero .features {
      flex-wrap: wrap;
      gap: 22px;
      justify-content: center; }
      .hero .features li {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        font-size: 14px;
        width: 100%;
        max-width: 182px; }
        .hero .features li:nth-child(1) {
          order: 2;
          max-width: 200px; }
        .hero .features li:nth-child(2) {
          order: 0; }
        .hero .features li:nth-child(3) {
          order: 1; }

  .what_is_node {
    margin-bottom: 40px; }
    .what_is_node .container {
      flex-direction: column-reverse;
      gap: 40px; }
    .what_is_node .about_the_node p {
      font-size: 16px; }

  .services {
    padding-top: 70px;
    padding-bottom: 60px; }

  .nodes {
    padding: 60px 0 60px; }
    .nodes h2 {
      margin-bottom: 30px; }

  .cases {
    display: none;
    padding-top: 60px; }
    .cases h2 {
      margin-bottom: 30px; }
    .cases .case {
      width: calc((100% - 20px) / 2); }

  .faq {
    padding-bottom: 60px; }
    .faq .container > p {
      margin-bottom: 30px; }
    .faq .faq_question {
      font-size: 18px; }
    .faq .faq_answer p {
      font-size: 14px; }

  .follow_us {
    padding-bottom: 80px; }
    .follow_us .container > p {
      text-align: left; }
    .follow_us h2 {
      text-align: left; }
    .follow_us .social_platforms {
      flex-wrap: wrap; }
    .follow_us .platform_card {
      width: calc(50% - 12px);
      flex: unset; } }
@media only screen and (max-width: 768px) {
  .btn_2 {
    font-size: 14px; }

  .services .services_list {
    flex-direction: column; }
    .services .services_list:before {
      left: -5px;
      bottom: -5px;
      top: unset;
      right: unset; }
    .services .services_list:after {
      right: -5px;
      bottom: -5px;
      top: unset;
      left: unset; }
    .services .services_list .service_item {
      width: 100%;
      max-width: 100%;
      padding: 24px; }
      .services .services_list .service_item svg {
        max-width: 40px;
        margin-bottom: 30px; }
      .services .services_list .service_item h3 {
        font-size: 28px;
        margin-bottom: 16px; }
      .services .services_list .service_item p {
        font-size: 16px; }
      .services .services_list .service_item:after {
        left: unset;
        bottom: unset;
        top: -6px;
        right: -6px; }

  .nodes .node_item {
    flex-direction: column; }
  .nodes .node_item_title {
    align-items: center; }
  .nodes .node_item_description {
    padding: 0;
    margin: 16px 0 24px; }
  .nodes .node_item_action_btns {
    flex-wrap: wrap;
    gap: 12px; }
    .nodes .node_item_action_btns .btn {
      margin-top: 30px;
      width: 100%; }

  .cases {
    padding-top: 60px; }
    .cases h2 {
      margin-bottom: 30px; }
    .cases .case {
      width: 100%; } }
@media only screen and (max-width: 568px) {
  .follow_us .platform_card {
    width: 100%; }
    .follow_us .platform_card ul {
      display: flex;
      flex-wrap: wrap; }
      .follow_us .platform_card ul li {
        width: calc(50% - 12px); }

  footer .footer_left {
    width: 100%;
    text-align: center;
    margin-bottom: 50px; }
    footer .footer_left p {
      display: none; }
    footer .footer_left img {
      max-width: 255px;
      margin: 0 auto; }
  footer .footer_right {
    align-items: center; }
    footer .footer_right h3 {
      font-size: 28px;
      text-align: center; }
    footer .footer_right .btn {
      display: none; }
    footer .footer_right .red_button_link {
      display: flex; }
  footer .copyright {
    margin-top: 60px; } }
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout,
.woocommerce-order,
body > .woocommerce {
  width: 100%;
  max-width: 960px;
  padding: 32px 24px;
  background: #ffffff;
  border-radius: 24px;
  margin: 0 auto 60px !important; }

/*Custom woocommerce styles */
.custom_woocommerce {
  padding: 0 20px 40px; }

.woocommerce_container {
  width: 100%;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  min-height: 700px; }
  .woocommerce_container > div:first-child {
    width: 100%; }
  .woocommerce_container .woocommerce-error, .woocommerce_container .woocommerce-info, .woocommerce_container .woocommerce-message {
    border-top-color: #EB5643; }
  .woocommerce_container .checkout-button {
    background: #EB5643 !important; }
  .woocommerce_container .cart-collaterals h2 {
    font-size: 36px;
    margin-bottom: 24px; }
  .woocommerce_container .woocommerce .cart-collaterals .cart_totals,
  .woocommerce_container .woocommerce .cart-collaterals td {
    text-align: right; }
  .woocommerce_container .woocommerce-form-login-toggle a,
  .woocommerce_container .woocommerce-info::before {
    color: #EB5643; }
  .woocommerce_container .checkout.woocommerce-checkout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap; }
    .woocommerce_container .checkout.woocommerce-checkout #customer_details {
      display: flex;
      flex-direction: column;
      width: 360px; }
      .woocommerce_container .checkout.woocommerce-checkout #customer_details > div {
        width: 100%; }
      .woocommerce_container .checkout.woocommerce-checkout #customer_details .form-row {
        width: 100%; }
    .woocommerce_container .checkout.woocommerce-checkout #order_review_heading {
      display: none; }
    .woocommerce_container .checkout.woocommerce-checkout #order_review {
      width: calc(100% - 400px); }
      .woocommerce_container .checkout.woocommerce-checkout #order_review .product-total, .woocommerce_container .checkout.woocommerce-checkout #order_review .cart-subtotal td, .woocommerce_container .checkout.woocommerce-checkout #order_review .order-total td, .woocommerce_container .checkout.woocommerce-checkout #order_review .cart-discount td {
        text-align: right; }
    .woocommerce_container .checkout.woocommerce-checkout .woocommerce-NoticeGroup-checkout {
      min-width: 100%; }
    .woocommerce_container .checkout.woocommerce-checkout .woocommerce-error li {
      margin-bottom: 12px; }
      .woocommerce_container .checkout.woocommerce-checkout .woocommerce-error li a {
        color: #333333; }
  .woocommerce_container .woocommerce-additional-fields {
    display: none; }
  .woocommerce_container #billing_first_name_description,
  .woocommerce_container #billing_email_description {
    font-size: 14px;
    color: #e30000; }
  .woocommerce_container .woocommerce form .form-row.woocommerce-invalid label {
    color: #e30000; }
  .woocommerce_container .woocommerce form .form-row label {
    color: #333333; }
  .woocommerce_container .woocommerce #payment #place_order, .woocommerce_container .woocommerce-page #payment #place_order {
    background: #EB5643; }
  .woocommerce_container .woocommerce p {
    font-size: 18px;
    color: #333333; }
  .woocommerce_container .woocommerce .woocommerce-notice--success {
    margin-bottom: 24px; }
  .woocommerce_container .woocommerce ul.order_details {
    padding: 20px 10px;
    border: 1px #eee solid;
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px; }
    .woocommerce_container .woocommerce ul.order_details li {
      text-align: center;
      float: none;
      margin: 0;
      padding: 10px; }
  .woocommerce_container .woocommerce .woocommerce-order-details {
    margin-top: 32px; }
  .woocommerce_container .woocommerce .woocommerce-order h2,
  .woocommerce_container .woocommerce .woocommerce-order-details__title {
    font-size: 28px;
    margin-bottom: 24px; }

.custom_woocommerce.account_page .woocommerce {
  display: flex;
  justify-content: space-between; }
.custom_woocommerce.account_page .woocommerce-MyAccount-navigation {
  width: 200px; }
  .custom_woocommerce.account_page .woocommerce-MyAccount-navigation ul {
    border: 1px #eee solid;
    border-radius: 12px; }
  .custom_woocommerce.account_page .woocommerce-MyAccount-navigation li {
    padding: 24px 12px;
    border-bottom: 1px #eee solid; }
    .custom_woocommerce.account_page .woocommerce-MyAccount-navigation li a {
      color: #333333; }
    .custom_woocommerce.account_page .woocommerce-MyAccount-navigation li.is-active a {
      color: #EB5643; }
.custom_woocommerce.account_page .woocommerce-MyAccount-content {
  width: calc(100% - 232px); }
  .custom_woocommerce.account_page .woocommerce-MyAccount-content p {
    margin-bottom: 18px; }
    .custom_woocommerce.account_page .woocommerce-MyAccount-content p a {
      color: #EB5643 !important; }
  .custom_woocommerce.account_page .woocommerce-MyAccount-content h2.mb-5 {
    margin-bottom: 32px;
    font-size: 32px; }
.custom_woocommerce.account_page .woocommerce-form.woocommerce-form-login.login {
  width: 100%; }

.profile-link {
  width: 32px;
  height: 32px;
  border: 1px #eee solid;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 18px; }

.fixed-quantity {
  display: block;
  font-size: 14px;
  color: #666;
  margin-top: 5px; }

.renewal-products-form {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
  margin: 20px 0; }

.renewal-product-item {
  margin: 15px 0;
  padding: 10px;
  background: white;
  border-radius: 3px;
  border-left: 4px solid #0073aa; }

.renewal-product-item label {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  margin-bottom: 5px;
  cursor: pointer; }

.renewal-product-item input[type="checkbox"] {
  margin-right: 10px; }

.renewal-actions {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #ddd; }

.renewal-actions button {
  margin-right: 10px;
  padding: 8px 15px; }

#add-renewals-to-cart {
  background: #0073aa;
  color: white;
  border: none;
  border-radius: 3px;
  font-weight: bold; }

.readonly-quantity {
  font-weight: bold;
  color: #333;
  display: inline-block;
  padding: 5px 10px;
  background: #f8f9fa;
  border-radius: 3px;
  border: 1px solid #e9ecef; }

.readonly-quantity small {
  font-style: italic;
  font-weight: normal; }

.stats_container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px; }
  .stats_container .stat-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease; }
  .stats_container .stat-card:hover {
    transform: translateY(-5px); }
  .stats_container .icon {
    font-size: 32px;
    margin-bottom: 10px; }
  .stats_container .value {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px; }
  .stats_container .label {
    font-size: 14px;
    color: #555; }
  .stats_container .purple .icon {
    color: #9b59b6; }
  .stats_container .blue .icon {
    color: #3498db; }
  .stats_container .orange .icon {
    color: #e67e22; }

.product-thumbnail img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  object-position: center; }

@media only screen and (max-width: 960px) {
  .stats_container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 10px; }

  .custom_woocommerce.account_page .woocommerce-MyAccount-navigation,
  .custom_woocommerce.account_page .woocommerce-MyAccount-content {
    width: 100%; }
  .custom_woocommerce.account_page .woocommerce-MyAccount-navigation {
    margin-bottom: 32px; }
    .custom_woocommerce.account_page .woocommerce-MyAccount-navigation ul {
      display: flex;
      flex-wrap: wrap;
      align-items: stretch; }
      .custom_woocommerce.account_page .woocommerce-MyAccount-navigation ul li {
        width: 50%;
        text-align: center; }
        .custom_woocommerce.account_page .woocommerce-MyAccount-navigation ul li:nth-child(odd) {
          border-right: 1px #eee solid; }
  .custom_woocommerce.account_page .woocommerce {
    flex-direction: column;
    justify-content: flex-start; } }
@media only screen and (max-width: 600px) {
  .renewal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px; } }

/*# sourceMappingURL=style.css.map */
