@charset "UTF-8";
/* Global */
/* ------------------------------------ */
/* Fonts */
/* ------------------------------------ */
/* Colors */
/* ------------------------------------ */
/* Breakpoints */
/* ------------------------------------ */
@font-face {
  font-family: "Mont";
  src: url("../../fonts/Mont-Heavy.woff2") format("woff2"), url("../../fonts/Mont-Heavy.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mont";
  src: url("../../fonts/Mont-Regular.woff2") format("woff2"), url("../../fonts/Mont-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mont";
  src: url("../../fonts/Mont-Light.woff2") format("woff2"), url("../../fonts/Mont-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mont";
  src: url("../../fonts/Mont-ExtraLight.woff2") format("woff2"), url("../../fonts/Mont-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #000000;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #F0F5FB;
}

main {
  flex-grow: 1;
}
@media (max-width: 1439px) {
  main {
    margin-top: 110px;
  }
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
  height: auto;
}

a {
  color: #000000;
  text-decoration: none;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.container {
  max-width: 1440px;
  padding: 0 30px;
  margin: 0 auto;
}
@media (max-width: 1439px) {
  .container {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 10px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
}

/* Blocks */
/* ------------------------------------ */
.burger__btn {
  padding: 0;
  width: 26px;
  height: 16px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  position: relative;
}
.burger__btn:hover, .burger__btn:focus-visible {
  outline: none;
}
.burger__menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out, visibility 0s linear 0.4s, top 0.4s ease-in-out;
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
@media (max-width: 1439px) {
  .burger__menu--active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    top: 70px;
    border-top: 2px solid #F0F5FB;
    transition: opacity 0.4s ease-in-out, visibility 0s linear 0s, top 0.4s ease-in-out;
  }
}
.burger__btn-icon {
  display: flex;
  width: 60%;
  height: 2px;
  background-color: #000000;
  margin-left: auto;
  transition: background-color 0.4s ease-in-out, transform 0.4s ease-in-out;
}
.burger__btn-icon::before, .burger__btn-icon::after {
  content: "";
  display: flex;
  width: 100%;
  height: 2px;
  background-color: #000000;
  position: absolute;
  transition: transform 0.4s ease-in-out, top 0.4s ease-in-out, bottom 0.4s ease-in-out;
  left: 0;
}
.burger__btn-icon::before {
  transform: translate(0, 6px);
}
.burger__btn-icon::after {
  transform: translate(0, -6px);
}
.burger__no-scroll {
  overflow: hidden;
  height: 100vh;
}
.burger__overlay {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.burger__nav {
  position: relative;
  background-color: #ffffff;
  width: 100%;
  height: 92%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
}
.burger__nav-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.burger__nav-item {
  padding: 0 0 10px;
  border-bottom: 1px solid #F0F5FB;
}
.burger__nav-item:first-child {
  padding: 0;
  border-bottom: none;
}
.burger__nav-link {
  font-weight: 400;
  font-size: 18px;
  color: #303239;
}
.burger__nav-link--accordeon {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.burger__subnav-list {
  padding: 15px 0 0 20px;
  list-style-type: none;
  display: none;
  flex-direction: column;
  gap: 10px;
}
.burger__subnav-list--active {
  display: flex;
}
.burger__nav-contact-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.burger__nav-contact-item:last-child {
  display: flex;
  justify-content: space-between;
}
.burger__nav-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.burger__nav-contact-social {
  display: flex;
  gap: 10px;
}

.burger__btn--active .burger__btn-icon {
  background-color: transparent;
  transition: background-color 0.4s ease-in-out;
}
.burger__btn--active .burger__btn-icon::before {
  transform: rotate(45deg);
  background-color: #18154B;
}
.burger__btn--active .burger__btn-icon::after {
  transform: rotate(-45deg);
  background-color: #18154B;
}

.breadcrumb-nav {
  margin: 0 0 20px;
}
.breadcrumb-nav__list {
  margin: 0;
  padding: 0 0 0 30px;
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .breadcrumb-nav__list {
    flex-wrap: wrap;
  }
}
.breadcrumb-nav__item:not(:last-child) {
  border-right: 1px solid #000000;
  padding: 0 10px 0 0;
}
.breadcrumb-nav__item:last-child {
  font-size: 12px;
  font-weight: 200;
}
.breadcrumb-nav__link {
  font-size: 12px;
  font-weight: 600;
  display: flex;
}
.breadcrumb-nav__link:hover {
  text-decoration: underline;
}

.header {
  margin: 0 0 40px;
}
@media (max-width: 1439px) {
  .header {
    margin: 0;
    position: fixed;
    width: 100%;
    z-index: 99;
  }
}
.header__top {
  background-color: #18154B;
}
@media (max-width: 1439px) {
  .header__top {
    display: none;
  }
}
.header__top-inner {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
}
.header__contacts {
  display: flex;
  gap: 45px;
  align-items: center;
}
.header__contacts-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}
.header__social {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header__social-link {
  display: flex;
  align-items: center;
  color: #ffffff;
}
.header__bottom {
  box-shadow: 0px 4px 20px 0px rgba(0, 7, 94, 0.1);
  background-color: #ffffff;
}
.header__bottom-inner {
  display: grid;
  grid-template-columns: 200px 1fr 150px;
  padding: 22px 0;
  gap: 20px;
}
@media (max-width: 1439px) {
  .header__bottom-inner {
    display: flex;
    justify-content: space-between;
    padding: 22px 0 8px 0;
  }
}
.header__logo-link {
  margin: 0 auto;
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: 900;
  user-select: none;
  text-transform: uppercase;
  background: linear-gradient(73.56deg, #0D748B -10.13%, #1A0B73 75.49%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1439px) {
  .header__logo-link {
    margin: 0;
    font-size: 26px;
  }
}
.header__users-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: right;
}
@media (max-width: 1439px) {
  .header__users-list {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .header__users-list {
    gap: 15px;
  }
}
.header__users-item:last-child {
  display: none;
}
@media (max-width: 1439px) {
  .header__users-item:last-child {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    padding: 7px;
    border-radius: 50%;
    background: #F0F5FB;
  }
}
.header__users-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F0F5FB;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.header__users-link:hover .header__user-count, .header__users-link:focus-visible .header__user-count, .header__users-link:active .header__user-count {
  background-color: #18154B;
}
.header__users-link:hover .header__users-icon, .header__users-link:focus-visible .header__users-icon, .header__users-link:active .header__users-icon {
  opacity: 0.8;
}
.header__users-icon {
  color: #18154B;
}
.header__user-count {
  align-items: center;
  background-color: #808080;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  font-size: 10px;
  font-weight: 600;
  height: 17px;
  justify-content: center;
  line-height: 10px;
  position: absolute;
  right: -5px;
  top: -5px;
  width: 17px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1439px) {
  .main-nav {
    display: none;
  }
}
.main-nav__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.main-nav__item {
  display: flex;
  align-items: center;
  position: relative;
}
.main-nav__item--submenu:hover .main-nav__submenu-inner, .main-nav__item--submenu:focus-visible .main-nav__submenu-inner {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.main-nav__submenu-inner {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(41, 83, 155, 0.4);
  gap: 20px;
  left: -131%;
  min-width: 1310px;
  padding: 30px;
  position: absolute;
  top: calc(100% + 12px);
  transform: translateY(-10%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in, transform 0.3s ease-in;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  z-index: 3;
}
.main-nav__submenu-inner::before {
  content: "";
  height: 12px;
  width: 100%;
  position: absolute;
  top: -12px;
  left: 0;
}
.main-nav__sublist {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.main-nav__sublist > li:not(:first-child) {
  margin-top: 10px;
}
.main-nav__subitem:first-child {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 600;
  user-select: none;
}
.main-nav__link {
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}
.main-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.main-nav__link:hover {
  color: #B8B8B8;
}
.main-nav__link:hover::after {
  transform: scaleX(1);
}

.hero {
  margin: 0 0 80px;
}
@media (max-width: 1439px) {
  .hero {
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .hero {
    margin: 0 0 20px;
  }
}
.hero__wrapper {
  height: 440px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 20px;
}
@media (max-width: 1439px) {
  .hero__wrapper {
    height: unset;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.hero__slide-inner {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 1439px) {
  .hero__slide-inner {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .hero__slide-inner {
    height: 400px;
  }
}
.hero__slide-list {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__slide-item {
  background: linear-gradient(73.56deg, #0D748B -10.13%, #1A0B73 75.49%);
  padding: 80px 60px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
@media (max-width: 1439px) {
  .hero__slide-item {
    padding: 40px;
  }
}
.hero__slide-item:first-child {
  opacity: 1;
  z-index: 2;
}
.hero__slide-item--1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../images/sprite/bg-hero.svg");
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  pointer-events: none;
  z-index: -1;
}
.hero__slide-item--1::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../images/bg-hero.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hero__slide-item--1::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero__slide-item--1 .hero__slide-content {
    display: flex;
    flex-direction: column;
  }
}
.hero__slide-item--1 .hero__slide-content-list {
  z-index: 2;
}
@media (max-width: 767px) {
  .hero__slide-item--1 .hero__slide-content-img {
    width: 100px;
    height: 100px;
    margin: 0 0 0 auto;
  }
}
.hero__slide-item--2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../images/sprite/bg-hero.svg");
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  pointer-events: none;
  z-index: -1;
}
.hero__slide-item--2::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../images/bg-hero.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hero__slide-item--2::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero__slide-item--2 .hero__slide-content {
    display: flex;
    flex-direction: column;
  }
}
.hero__slide-item--2 .hero__slide-content-list {
  z-index: 2;
}
@media (max-width: 767px) {
  .hero__slide-item--2 .hero__slide-content-img {
    display: none;
  }
}
.hero__slide-item--3 {
  background: transparent;
  background-image: url("../../images/slide/5.jpg");
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.hero__slide-item--3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
@media (max-width: 767px) {
  .hero__slide-item--3 .hero__slide-content {
    display: flex;
    flex-direction: column;
  }
}
.hero__slide-item--3 .hero__slide-content-list {
  z-index: 2;
}
.hero__slide-item--3 .hero__slide-content-img {
  display: none;
}
.hero__slide-item--4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../images/sprite/bg-hero.svg");
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  pointer-events: none;
  z-index: -1;
}
.hero__slide-item--4::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../images/bg-hero.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hero__slide-item--4::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero__slide-item--4 .hero__slide-content {
    display: flex;
    flex-direction: column;
  }
}
.hero__slide-item--4 .hero__slide-content-list {
  z-index: 2;
}
@media (max-width: 767px) {
  .hero__slide-item--4 .hero__slide-content-img {
    width: 100px;
    height: 100px;
    margin: 0 0 0 auto;
  }
}
.hero__slide-item--5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../images/sprite/bg-hero.svg");
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  pointer-events: none;
  z-index: -1;
}
.hero__slide-item--5::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../images/bg-hero.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hero__slide-item--5::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero__slide-item--5 .hero__slide-content {
    display: flex;
    flex-direction: column;
  }
}
.hero__slide-item--5 .hero__slide-content-list {
  z-index: 2;
}
@media (max-width: 767px) {
  .hero__slide-item--5 .hero__slide-content-img {
    display: none;
  }
}
.hero__slide-content {
  display: grid;
  grid-template-columns: 1fr 270px;
  gap: 20px;
}
@media (max-width: 1439px) {
  .hero__slide-content {
    display: grid;
    grid-template-columns: 1fr 200px;
  }
}
.hero__slide-content-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: #ffffff;
}
@media (max-width: 1439px) {
  .hero__slide-content-list {
    gap: 15px;
    justify-content: space-between;
  }
}
.hero__slide-content-item {
  font-weight: 600;
  font-size: 18px;
}
.hero__slide-content-item:first-child {
  font-weight: 800;
  font-size: 38px;
  text-transform: uppercase;
}
@media (max-width: 1439px) {
  .hero__slide-content-item:first-child {
    font-size: 22px;
  }
}
@media (max-width: 1439px) {
  .hero__slide-content-item--text {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .hero__slide-content-item--text {
    font-size: 14px;
  }
}
.hero__slide-content-img {
  z-index: 1;
}
.hero__dots {
  display: flex;
  gap: 10px;
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 2;
}
@media (max-width: 1439px) {
  .hero__dots {
    bottom: 20px;
  }
}
.hero__dots-dot {
  background-color: rgba(56, 176, 193, 0.4);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.hero__dots-dot--active {
  background-color: #38B0C1;
}
.hero__static-inner {
  position: relative;
  overflow: hidden;
  background: radial-gradient(106.32% 141.75% at -6.32% -2.5%, #42E8E0 0%, #40DDDA 0%, #3AAEC0 9.21%, #3484A9 17.3%, #2F6195 25.73%, #2B4486 34.58%, #282E79 44%, #261E71 54.25%, #24156C 65.94%, #24126A 82.26%), linear-gradient(0deg, #1A0B73, #1A0B73);
  border-radius: 10px;
  padding: 40px 30px 30px 40px;
  color: #ffffff;
}
.hero__static-inner::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../images/sprite/hero-coin.svg);
  background-repeat: no-repeat;
  background-position: bottom left;
  pointer-events: none;
}
@media (max-width: 1439px) {
  .hero__static-inner::before {
    background-position: bottom right;
    opacity: 0.5;
  }
}
@media (max-width: 767px) {
  .hero__static-inner::before {
    bottom: unset;
    left: unset;
  }
}
.hero__static-inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../images/bg-hero-static.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  pointer-events: none;
}
@media (max-width: 1439px) {
  .hero__static-inner::after {
    background-position: right;
  }
}
.hero__static-title {
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
  margin: 0 0 10px;
  display: block;
}
@media (max-width: 767px) {
  .hero__static-title {
    font-weight: 600;
    font-size: 22px;
    position: relative;
    z-index: 2;
  }
}
.hero__static-discount {
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .hero__static-discount {
    position: relative;
    z-index: 2;
  }
}
.hero__static-percent {
  font-weight: 700;
  font-size: 56px;
}
@media (max-width: 767px) {
  .hero__static-percent {
    font-size: 36px;
  }
}
.hero__static-link {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 767px) {
  .hero__static-link {
    bottom: unset;
    right: 10px;
    top: 10px;
  }
}

.categories {
  margin: 0 0 80px;
}
@media (max-width: 1439px) {
  .categories {
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .categories {
    margin: 0 0 20px;
  }
}
.categories__title {
  font-weight: 800;
  font-size: 36px;
  margin: 0 0 40px;
  color: #18154B;
  text-transform: uppercase;
}
@media (max-width: 1439px) {
  .categories__title {
    font-size: 28px;
    margin: 0 0 20px;
  }
}
@media (max-width: 767px) {
  .categories__title {
    font-size: 22px;
    margin: 0 0 15px;
  }
}
.categories__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 1439px) {
  .categories__list {
    justify-content: space-around;
  }
}
@media (max-width: 767px) {
  .categories__list {
    justify-content: center;
  }
}
.categories__item {
  background-color: #ffffff;
  display: flex;
  text-align: right;
  width: 360px;
  padding: 30px;
  gap: 20px;
  height: 170px;
  justify-content: space-between;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 4px 20px 0px rgba(0, 7, 94, 0.1);
}
.categories__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../images/bg-categories.png");
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  pointer-events: none;
}
@media (max-width: 1439px) {
  .categories__item {
    width: 340px;
  }
}
@media (max-width: 767px) {
  .categories__item {
    justify-content: center;
  }
}
.categories__item-left {
  z-index: 2;
}
.categories__item-image {
  width: 140px;
  height: 130px;
}
.categories__item-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.categories__item-title {
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
}
.categories__item-link {
  font-weight: 700;
  font-size: 16px;
}

.advantages {
  margin: 0 0 80px;
}
@media (max-width: 1439px) {
  .advantages {
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .advantages {
    margin: 0 0 20px;
  }
}
.advantages__wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  padding: 30px;
  gap: 35px;
  background: url("../../images/bg-advantages.png"), radial-gradient(98.19% 130.91% at -8.58% -1.44%, #42E8E0 0%, #40DDDA 1.57%, #3AB7C7 9.21%, #3591B2 17.3%, #3075A0 25.73%, #2D5D92 34.58%, #2A4986 44%, #220B72 82.26%);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  box-shadow: 0px 4px 20px 0px rgba(0, 7, 94, 0.1);
  border-radius: 10px;
  position: relative;
}
.advantages__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../images/sprite/bg-advantages.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.8;
  pointer-events: none;
}
@media (max-width: 1439px) {
  .advantages__wrapper {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .advantages__wrapper {
    gap: 20px;
  }
}
.advantages__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
}
.advantages__title {
  margin: 0;
  font-weight: 800;
  font-size: 36px;
  text-transform: uppercase;
  color: #ffffff;
  width: 400px;
}
@media (max-width: 1439px) {
  .advantages__title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .advantages__title {
    font-size: 22px;
    width: unset;
  }
}
.advantages__img {
  width: 350px;
  margin: 0 0 0 auto;
}
@media (max-width: 1439px) {
  .advantages__img {
    opacity: 0.3;
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
.advantages__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 30px 60px;
  color: #ffffff;
}
@media (max-width: 1439px) {
  .advantages__list {
    display: flex;
    flex-direction: column;
  }
}
.advantages__item {
  display: flex;
  flex-direction: column;
  position: relative;
  perspective: 1000px;
}
.advantages__item::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  clip-path: polygon(14% 44%, 39% 65%, 84% 18%, 100% 35%, 39% 90%, 0% 50%);
  z-index: 2;
  position: absolute;
  left: -34px;
  top: 0px;
  transition: transform 0.6s ease-in-out;
  transform-origin: center;
}
@media (max-width: 767px) {
  .advantages__item::before {
    width: 10px;
    height: 10px;
    left: -20px;
    top: 5px;
  }
}
.advantages__item::after {
  content: "";
  width: 30px;
  height: 30px;
  background-color: #25307B;
  box-shadow: 0px 4px 40px 0px rgba(0, 6, 84, 0.8980392157);
  position: absolute;
  border-radius: 50%;
  left: -40px;
  top: -5px;
}
@media (max-width: 767px) {
  .advantages__item::after {
    width: 20px;
    height: 20px;
    left: -25px;
    top: 0px;
  }
}
.advantages__item:hover::before {
  transform: rotateY(180deg);
}
.advantages__text {
  margin: 0;
  font-size: 14px;
}
.advantages__text-title {
  display: block;
  margin: 0 0 5px;
  font-weight: 800;
  font-size: 16px;
  color: #B8B8B8;
  user-select: none;
}

.hits {
  margin: 0 0 80px;
}
@media (max-width: 1439px) {
  .hits {
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .hits {
    margin: 0 0 20px;
  }
}
.hits__title {
  font-weight: 800;
  font-size: 36px;
  margin: 0 0 40px;
  color: #18154B;
  text-transform: uppercase;
}
@media (max-width: 1439px) {
  .hits__title {
    font-size: 28px;
    margin: 0 0 20px;
  }
}
@media (max-width: 767px) {
  .hits__title {
    font-size: 22px;
    margin: 0 0 15px;
  }
}
.hits__wrapper {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-width: 1360px;
  margin: 0 auto;
}
@media (max-width: 1439px) {
  .hits__wrapper {
    max-width: 670px;
  }
}
@media (max-width: 767px) {
  .hits__wrapper {
    max-width: 325px;
  }
}
.hits__inner {
  display: flex;
  gap: 20px;
  margin: 0 0 30px;
  flex-wrap: nowrap;
  transition: transform 0.5s ease-in-out;
  transform: translateX(0);
  width: max-content;
}
.hits__card {
  width: 325px;
  padding: 15px 20px 30px 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 20px 0px rgba(0, 7, 94, 0.1);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.hits__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hits__top-label {
  padding: 3px 10px;
  background-color: #F0F5FB;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 4px;
  user-select: none;
  color: #18154B;
}
.hits__top-favorite {
  stroke: #18154B;
  fill: transparent;
  transition: fill 0.5s ease-in-out;
}
.hits__image {
  margin: 20px auto 20px;
}
.hits__description {
  margin-top: auto;
}
.hits__name {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 10px;
}
.hits__link {
  font-weight: 600;
  font-size: 18px;
}
.hits__link:hover, .hits__link:focus-visible {
  text-decoration: underline;
}
.hits__position {
  font-weight: 600;
  font-size: 14px;
  color: #9B9B9B;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hits__position--yes::before {
  content: "";
  background: #2FE50F;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.hits__position--no::before {
  content: "";
  background: #FF0000;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.hits__info {
  margin: 0 0 30px;
}
.hits__info-hashrate {
  display: flex;
  gap: 10px;
  margin: 0 0 5px;
}
.hits__info-coins {
  display: flex;
  gap: 10px;
  margin: 0 0 10px;
}
.hits__info-buy {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hits__info-buy-price {
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hits__info-buy-price-old {
  font-weight: 600;
  font-size: 14px;
  color: #808080;
  text-decoration: line-through;
}
.hits__dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.hits__dots-dot {
  width: 10px;
  height: 10px;
  background-color: rgba(56, 176, 193, 0.4);
  border-radius: 50%;
  cursor: pointer;
}
.hits__dots-dot--active {
  background-color: #38B0C1;
}

.about {
  margin: 0 0 80px;
}
@media (max-width: 1439px) {
  .about {
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .about {
    margin: 0 0 20px;
  }
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  overflow: hidden;
  gap: 75px;
  margin: 0 0 80px;
}
@media (max-width: 1439px) {
  .about__inner {
    display: flex;
    flex-direction: column;
  }
}
.about__description {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 250px;
}
.about__title {
  font-size: 36px;
  color: #18154B;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 1439px) {
  .about__title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .about__title {
    font-size: 22px;
  }
}
.about__text {
  margin: 0;
  font-size: 16px;
}
.about__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
  background: radial-gradient(52.98% 79.47% at 60.22% 53.83%, #42E8E0 0%, #42E8E0 3.11%, #308BA7 17.63%, #265587 32.63%, #201A6C 48.03%, #160E5A 63.97%, #11074F 80.79%, #0F054C 100%);
  border-radius: 10px;
  position: relative;
}
.about__banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../images/sprite/bg-1-about.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.8;
  pointer-events: none;
}
.about__banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../images/sprite/bg-2-about.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.8;
  pointer-events: none;
}
.about__banner-icon {
  position: relative;
}
.about__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
  gap: 75px;
}
@media (max-width: 1439px) {
  .about__list {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .about__list {
    gap: 40px 20px;
  }
}
.about__item {
  display: flex;
  flex-direction: column;
  width: 130px;
  gap: 35px;
  align-items: center;
  text-align: center;
  position: relative;
}
.about__item::before {
  content: "";
  background-color: #ffffff;
  width: 80px;
  height: 80px;
  position: absolute;
  border-radius: 50%;
  transform: translateY(-25%);
}
.about__item::after {
  content: "";
  background-color: #F0F5FB;
  width: 60px;
  height: 60px;
  position: absolute;
  border-radius: 50%;
  transform: translateY(-18%);
}
.about__icon {
  z-index: 2;
}

.callback {
  margin: 0 0 80px;
}
@media (max-width: 1439px) {
  .callback {
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .callback {
    margin: 0 0 20px;
  }
}
.callback__wrapper {
  background: linear-gradient(89.24deg, rgba(13, 116, 139, 0.6) -14.97%, rgba(26, 11, 115, 0.6) 81.3%), url(../../images/callback-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 60px;
  margin: 0 auto;
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 20px 0px rgba(0, 7, 94, 0.1);
  position: relative;
  overflow: hidden;
  min-height: 311px;
}
@media (max-width: 767px) {
  .callback__wrapper {
    padding: 30px;
  }
}
.callback__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../images/bg-callback.png");
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  pointer-events: none;
}
.callback__title {
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
}
@media (max-width: 1439px) {
  .callback__title {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .callback__title {
    font-size: 20px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .callback__form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.callback__group {
  margin: 0;
  padding: 0;
  border: none;
}
.callback__group-name {
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 25px;
}
@media (max-width: 1439px) {
  .callback__group-name {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .callback__group-name {
    font-size: 14px;
    text-align: center;
  }
}
.callback__form-wrapper {
  display: flex;
  gap: 20px;
  margin: 0 0 20px;
}
@media (max-width: 1439px) {
  .callback__form-wrapper {
    flex-wrap: wrap;
    align-items: center;
    position: relative;
  }
}
@media (max-width: 767px) {
  .callback__form-wrapper {
    justify-content: center;
  }
}
.callback__success {
  display: none;
  margin: 30px 0 0;
  position: relative;
}
.callback__success--active {
  display: block;
}
@media (max-width: 767px) {
  .callback__success {
    text-align: center;
  }
}
.callback__sucess-text {
  margin: 0;
}

.reviews {
  margin: 0 0 80px;
}
@media (max-width: 1439px) {
  .reviews {
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .reviews {
    margin: 0 0 20px;
  }
}
.reviews__title {
  font-size: 36px;
  color: #18154B;
  text-transform: uppercase;
  margin: 0 0 40px;
}
@media (max-width: 1439px) {
  .reviews__title {
    font-size: 28px;
    margin: 0 0 20px;
  }
}
@media (max-width: 767px) {
  .reviews__title {
    font-size: 22px;
    margin: 0 0 15px;
  }
}
.reviews__wrapper {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-width: 1260px;
  margin: 0 auto;
}
@media (max-width: 1439px) {
  .reviews__wrapper {
    max-width: 620px;
  }
}
@media (max-width: 767px) {
  .reviews__wrapper {
    max-width: 300px;
  }
}
.reviews__inner {
  display: flex;
  gap: 20px;
  margin: 0 0 30px;
  flex-wrap: nowrap;
  transition: transform 0.5s ease-in-out;
  transform: translateX(0);
  width: max-content;
}
.reviews__card {
  width: 300px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 20px 0px rgba(0, 7, 94, 0.1);
  flex-shrink: 0;
}
.reviews__card-title {
  border-bottom: 1px solid #000000;
  padding: 0 0 5px;
}
.reviews__card-name {
  font-size: 20px;
  font-weight: 700;
}
.reviews__card-date {
  font-size: 14px;
  color: #B8B8B8;
}
.reviews__card-rating {
  display: inline-flex;
  gap: 4px;
  position: relative;
}
.reviews__card-rating--5::before {
  content: "★★★★★";
  font-family: "Nunito Sans", sans-serif;
  font-size: 20px;
  color: #FFCB45;
  letter-spacing: 4px;
}
.reviews__card-rating--4::before {
  content: "★★★★☆";
  font-family: "Nunito Sans", sans-serif;
  font-size: 20px;
  color: #FFCB45;
  letter-spacing: 4px;
}
.reviews__card-rating--3::before {
  content: "★★★☆☆";
  font-family: "Nunito Sans", sans-serif;
  font-size: 20px;
  color: #FFCB45;
  letter-spacing: 4px;
}
.reviews__card-rating--2::before {
  content: "★★☆☆☆";
  font-family: "Nunito Sans", sans-serif;
  font-size: 20px;
  color: #FFCB45;
  letter-spacing: 4px;
}
.reviews__card-rating--1::before {
  content: "★☆☆☆☆";
  font-family: "Nunito Sans", sans-serif;
  font-size: 20px;
  color: #FFCB45;
  letter-spacing: 4px;
}
.reviews__dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.reviews__dots-dot {
  width: 10px;
  height: 10px;
  background-color: rgba(24, 21, 75, 0.4);
  border-radius: 50%;
  cursor: pointer;
}
.reviews__dots-dot--active {
  background-color: #18154B;
}

.contacts {
  margin: 0 0 80px;
}
@media (max-width: 1439px) {
  .contacts {
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .contacts {
    margin: 0 0 20px;
  }
}
.contacts__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1439px) {
  .contacts__wrapper {
    flex-direction: column;
  }
}
.contacts__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1439px) {
  .contacts__info {
    gap: 20px;
  }
}
.contacts__title {
  font-size: 36px;
  color: #18154B;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 1439px) {
  .contacts__title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .contacts__title {
    font-size: 22px;
  }
}
.contacts__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contacts__item, .contacts__link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contacts__item svg {
  color: #18154B;
}
.contacts__text {
  font-weight: 400;
  font-size: 18px;
}
.contacts__social {
  display: flex;
  gap: 20px;
}
.contacts__social-link {
  display: flex;
  align-items: center;
}
.contacts__map {
  width: 700px;
}
@media (max-width: 1439px) {
  .contacts__map {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .contacts__map {
    width: 100%;
  }
}

.footer {
  background-color: #18154B;
}
.footer__wrapper {
  display: grid;
  grid-template-columns: 250px 1fr 250px;
  padding: 60px 0;
  gap: 20px;
  color: #ffffff;
}
@media (max-width: 1439px) {
  .footer__wrapper {
    display: flex;
    flex-direction: column;
    padding: 30px 0;
    position: relative;
  }
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__logo-link {
  display: flex;
  font-size: 28px;
  font-weight: 900;
  user-select: none;
  text-transform: uppercase;
  background: linear-gradient(73.56deg, #FFFFFF, #4A89A5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer__copy {
  margin: 0;
  font-weight: 200;
  font-size: 12px;
  color: #B8B8B8;
}
.footer__details-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media (max-width: 1439px) {
  .footer__details-list {
    display: none;
  }
}
.footer__detail-item:first-child {
  margin: 0 0 15px;
}
.footer__nav-inner {
  display: flex;
  gap: 70px;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer__nav-inner {
    flex-direction: column;
    gap: 30px;
  }
}
.footer__nav-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav-list li:first-child {
  font-weight: 800;
  font-size: 18px;
  color: #B8B8B8;
  user-select: none;
}
.footer__nav-link {
  color: #ffffff;
  font-weight: 200;
  font-size: 15px;
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}
.footer__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #F0F5FB;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.footer__nav-link:hover, .footer__nav-link:focus-visible {
  color: #B8B8B8;
}
.footer__nav-link:hover::after, .footer__nav-link:focus-visible::after {
  transform: scaleX(1);
}
.footer__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
}
.footer__privacy {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1439px) {
  .footer__privacy {
    gap: 5px;
    margin: 0 auto 0 0;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .footer__privacy {
    flex-direction: column;
    align-items: baseline;
    gap: 5px;
  }
}
.footer__privacy-link {
  font-weight: 200;
  font-size: 14px;
  color: #B8B8B8;
  margin: 0 0 0 auto;
}
@media (max-width: 1439px) {
  .footer__privacy-link {
    font-size: 10px;
    margin: unset;
  }
}
.footer__privacy-link:hover, .footer__privacy-link:focus-visible {
  text-decoration: underline;
}

.btn {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #ffffff;
  font-family: Nunito Sans;
  border-radius: 50px;
}
.btn:hover, .btn:focus-visible {
  outline: none;
}
.btn--main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000000;
  font-size: 16px;
  background-color: #F0F5FB;
  padding: 10px 15px;
  border-radius: 10px;
}
.btn--callback {
  background: linear-gradient(73.56deg, #0D748B -10.13%, #1A0B73 75.49%);
  padding: 11px;
  width: 160px;
  font-weight: 700;
  font-size: 13px;
}
.btn--callback:hover, .btn--callback:focus-visible {
  box-shadow: 0px 4px 20px 0px rgba(26, 11, 115, 0.4);
}
.btn--callback:active {
  background: linear-gradient(73.56deg, rgba(13, 116, 139, 0.8) -10.13%, rgba(26, 11, 115, 0.8) 75.49%);
  box-shadow: 0px 2px 15px 0px rgba(26, 11, 115, 0.6);
  transform: scale(0.95);
  transition: background 0.2s ease, transform 0.1s ease;
}
.btn--callback-send {
  background-color: #ffffff;
  color: #18154B;
  padding: 15px;
  width: 240px;
  height: 50px;
  font-size: 15px;
  border: 1px solid #18154B;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
}
.btn--callback-send:disabled {
  background-color: rgba(255, 255, 255, 0.6);
  color: rgba(24, 21, 75, 0.7);
  cursor: unset;
}
.btn--callback-send:hover:not(:disabled), .btn--callback-send:focus-visible:not(:disabled) {
  box-shadow: 0px 4px 30px 0px rgba(255, 255, 255, 0.4);
}
.btn--callback-send:active:not(:disabled) {
  transform: scale(0.97);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
}
.btn--callback-modal-send {
  border: 1px solid #18154B;
  margin: 0 auto 15px;
  display: block;
  color: #ffffff;
  background-color: #18154B;
  padding: 10px;
  width: 200px;
  transition: background-color 0.2s ease, transform 0.1s ease;
}
.btn--callback-modal-send:disabled {
  border: 1px solid #18154B;
  color: #18154B;
  background-color: transparent;
  cursor: unset;
}
.btn--callback-modal-send:hover:not(:disabled), .btn--callback-modal-send:focus-visible:not(:disabled) {
  border: 1px solid #18154B;
  background-color: rgb(17.625, 15.421875, 55.078125);
  color: #ffffff;
}
.btn--callback-modal-send:active:not(:disabled) {
  transform: scale(0.98);
  background-color: rgb(11.25, 9.84375, 35.15625);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}
.btn--favorite {
  stroke: #18154B;
  transition: color 0.5s ease-in-out, transform 0.5s ease-in-out;
  margin-left: auto;
  display: flex;
}
.btn--favorite.active {
  color: #18154B;
  transform: scale(1.2);
}
.btn--favorite-add-to-cart, .btn--favorite-remove {
  color: #000000;
  border: 1px solid #18154B;
  border-radius: 3px;
  padding: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn--favorite-add-to-cart:hover:not(:disabled), .btn--favorite-add-to-cart:focus-visible:not(:disabled), .btn--favorite-remove:hover:not(:disabled), .btn--favorite-remove:focus-visible:not(:disabled) {
  background-color: #18154B;
  color: #ffffff;
}
.btn--favorite-add-to-cart:disabled, .btn--favorite-remove:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #f0f0f0;
  color: #999;
}
.btn--favorite-go {
  background-color: transparent;
  outline: 1px solid #18154B;
  padding: 10px 20px;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  color: #000000;
}
.btn--favorite-go:hover, .btn--favorite-go:focus-visible {
  background-color: #18154B;
  outline: none;
  color: #ffffff;
}
.btn--cart-alt {
  background-color: transparent;
  padding: 15px;
  width: 270px;
  border-radius: 10px;
  border: 1px solid #18154B;
  color: #18154B;
  font-weight: 600;
  text-transform: uppercase;
}
.btn--cart-alt:hover, .btn--cart-alt:focus-visible {
  background-color: #18154B;
  color: #ffffff;
}
.btn--cart-alt.btn--in-cart {
  background-color: #ff4343;
  border-color: #ff4343;
  color: #ffffff;
}
.btn--cart-alt.btn--in-cart:hover:not(:disabled), .btn--cart-alt.btn--in-cart:focus-visible:not(:disabled) {
  background-color: #e03a3a;
  border-color: #e03a3a;
}
.btn--cart-go {
  background-color: transparent;
  outline: 1px solid #18154B;
  padding: 10px 20px;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  color: #000000;
}
.btn--cart-go:hover, .btn--cart-go:focus-visible {
  background-color: #18154B;
  outline: none;
  color: #ffffff;
}
.btn--hero {
  padding: 15px;
  width: 200px;
  font-weight: 700;
  font-size: 15px;
  color: #18154B;
  background-color: #ffffff;
}
@media (max-width: 1439px) {
  .btn--hero {
    font-size: 14px;
    padding: 14px;
  }
}
.btn--buy {
  padding: 13px;
  width: 180px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  background: linear-gradient(73.56deg, #0D748B -10.13%, #1A0B73 75.49%);
  font-weight: 400;
  font-size: 14px;
}
.btn--buy:hover, .btn--buy:focus-visible {
  box-shadow: 0px 4px 20px 0px rgba(26, 11, 115, 0.4);
}
.btn--buy:active {
  background: linear-gradient(73.56deg, rgba(13, 116, 139, 0.8) -10.13%, rgba(26, 11, 115, 0.8) 75.49%);
  box-shadow: 0px 2px 15px 0px rgba(26, 11, 115, 0.6);
  transform: scale(0.95);
  transition: background 0.2s ease, transform 0.1s ease;
}
.btn--buy-alt {
  background-color: transparent;
  padding: 15px;
  width: 270px;
  border-radius: 10px;
  border: 1px solid #18154B;
  color: #18154B;
  font-weight: 600;
  text-transform: uppercase;
}
.btn--buy-alt:hover, .btn--buy-alt:focus-visible {
  background-color: #18154B;
  color: #ffffff;
}
.btn--captcha-refresh {
  position: absolute;
  top: 10px;
  right: 10px;
  transform: translateY(-50%);
  font-size: 18px;
  transition: transform 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn--captcha-refresh:hover {
  transform: translateY(-50%) rotate(90deg);
}
.btn--footer-callback {
  margin: 0 0 0 auto;
  background-color: #F0F5FB;
  border: 1px solid #F0F5FB;
  padding: 15px;
  width: 200px;
  font-weight: 700;
  font-size: 15px;
  color: #18154B;
}
.btn--footer-callback:hover, .btn--footer-callback:focus-visible {
  background-color: transparent;
  border: 1px solid #F0F5FB;
  color: #F0F5FB;
}
.btn--footer-callback:active {
  transform: scale(0.95);
  transition: background 0.2s ease, transform 0.1s ease;
}
@media (max-width: 1439px) {
  .btn--footer-callback {
    position: absolute;
    right: 0;
    top: 30px;
  }
}
@media (max-width: 767px) {
  .btn--footer-callback {
    padding: 10px;
    width: 150px;
    font-weight: 600;
    font-size: 14px;
  }
}
.btn--close {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: transparent;
  border: none;
  width: 32px;
  height: 32px;
  padding: 0;
  align-items: center;
  display: flex;
  justify-content: center;
  color: #B8B8B8;
  cursor: pointer;
}
@media (max-width: 767px) {
  .btn--close {
    top: 5px;
    right: 5px;
  }
}
.btn--close svg {
  transition: transform 0.3s ease;
}
.btn--close svg:hover {
  transform: rotate(180deg);
  color: #000000;
}

.btn--cart .hits__cart-icon,
.btn--cart .antminer__cart-icon,
.btn--cart .whatsminer__cart-icon,
.btn--cart .other__cart-icon {
  color: #18154B;
  transition: fill 0.3s;
}

.btn--cart.btn--in-cart .hits__cart-icon,
.btn--cart.btn--in-cart .antminer__cart-icon,
.btn--cart.btn--in-cart .whatsminer__cart-icon,
.btn--cart.btn--in-cart .other__cart-icon {
  color: #2FE50F;
}

.antminer {
  margin: 0 0 80px;
}
.antminer__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
  max-width: 1360px;
}
@media (max-width: 1439px) {
  .antminer__wrapper {
    justify-content: center;
  }
}
.antminer__card {
  width: 325px;
  padding: 15px 20px 30px 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 20px 0px rgba(0, 7, 94, 0.1);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.antminer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.antminer__top-label {
  padding: 3px 10px;
  background-color: #F0F5FB;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 4px;
  user-select: none;
  color: #18154B;
}
.antminer__top-favorite {
  stroke: #18154B;
  fill: transparent;
  transition: fill 0.5s ease-in-out;
}
.antminer__image {
  margin: 0 auto;
}
.antminer__description {
  margin-top: auto;
}
.antminer__name {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 10px;
}
.antminer__link {
  font-weight: 600;
  font-size: 18px;
}
.antminer__link:hover {
  text-decoration: underline;
}
.antminer__position {
  font-weight: 600;
  font-size: 14px;
  color: #9B9B9B;
  display: flex;
  align-items: center;
  gap: 8px;
}
.antminer__position--yes::before {
  content: "";
  background: #2FE50F;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.antminer__position--no::before {
  content: "";
  background: #FF0000;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.antminer__info {
  margin: 0 0 30px;
}
.antminer__info-hashrate {
  display: flex;
  gap: 10px;
  margin: 0 0 5px;
}
.antminer__info-coins {
  display: flex;
  gap: 10px;
  margin: 0 0 10px;
}
.antminer__info-buy {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.antminer__info-buy-price {
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.antminer__info-buy-price-old {
  font-weight: 600;
  font-size: 14px;
  color: #808080;
  text-decoration: line-through;
}

.whatsminer {
  margin: 0 0 80px;
}
.whatsminer__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
  max-width: 1360px;
}
@media (max-width: 1439px) {
  .whatsminer__wrapper {
    justify-content: center;
  }
}
.whatsminer__card {
  width: 325px;
  padding: 15px 20px 30px 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 20px 0px rgba(0, 7, 94, 0.1);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.whatsminer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.whatsminer__top-label {
  padding: 3px 10px;
  background-color: #F0F5FB;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 4px;
  user-select: none;
  color: #18154B;
}
.whatsminer__top-favorite {
  stroke: #18154B;
  fill: transparent;
  transition: fill 0.5s ease-in-out;
}
.whatsminer__image {
  margin: 0 auto;
}
.whatsminer__description {
  margin-top: auto;
}
.whatsminer__name {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 10px;
}
.whatsminer__link {
  font-weight: 600;
  font-size: 18px;
}
.whatsminer__link:hover {
  text-decoration: underline;
}
.whatsminer__position {
  font-weight: 600;
  font-size: 14px;
  color: #9B9B9B;
  display: flex;
  align-items: center;
  gap: 8px;
}
.whatsminer__position--yes::before {
  content: "";
  background: #2FE50F;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.whatsminer__position--no::before {
  content: "";
  background: #FF0000;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.whatsminer__info {
  margin: 0 0 30px;
}
.whatsminer__info-hashrate {
  display: flex;
  gap: 10px;
  margin: 0 0 5px;
}
.whatsminer__info-coins {
  display: flex;
  gap: 10px;
  margin: 0 0 10px;
}
.whatsminer__info-buy {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.whatsminer__info-buy-price {
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.whatsminer__info-buy-price-old {
  font-weight: 600;
  font-size: 14px;
  color: #808080;
  text-decoration: line-through;
}

.other {
  margin: 0 0 80px;
}
.other__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
  max-width: 1360px;
}
@media (max-width: 1439px) {
  .other__wrapper {
    justify-content: center;
  }
}
.other__card {
  width: 325px;
  padding: 15px 20px 30px 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 20px 0px rgba(0, 7, 94, 0.1);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.other__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.other__top-label {
  padding: 3px 10px;
  background-color: #F0F5FB;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 4px;
  user-select: none;
  color: #18154B;
}
.other__top-favorite {
  stroke: #18154B;
  fill: transparent;
  transition: fill 0.5s ease-in-out;
}
.other__image {
  margin: 0 auto;
}
.other__description {
  margin-top: auto;
}
.other__name {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 10px;
}
.other__link {
  font-weight: 600;
  font-size: 18px;
}
.other__link:hover {
  text-decoration: underline;
}
.other__position {
  font-weight: 600;
  font-size: 14px;
  color: #9B9B9B;
  display: flex;
  align-items: center;
  gap: 8px;
}
.other__position--yes::before {
  content: "";
  background: #2FE50F;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.other__position--no::before {
  content: "";
  background: #FF0000;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.other__info {
  margin: 0 0 30px;
}
.other__info-hashrate {
  display: flex;
  gap: 10px;
  margin: 0 0 5px;
}
.other__info-coins {
  display: flex;
  gap: 10px;
  margin: 0 0 10px;
}
.other__info-buy {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.other__info-buy-price {
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.other__info-buy-price-old {
  font-weight: 600;
  font-size: 14px;
  color: #808080;
  text-decoration: line-through;
}

.asic {
  margin: 0 0 80px;
}
.asic h2 {
  color: #18154B;
  text-transform: uppercase;
  font-size: 30px;
  margin: 0 0 30px;
  font-weight: 900;
}
.asic h3 {
  color: #18154B;
  text-transform: uppercase;
  font-size: 28px;
  margin: 0 0 30px;
  font-weight: 600;
}
.asic h4 {
  color: #18154B;
  text-transform: uppercase;
  font-size: 26px;
  margin: 0 0 30px;
  font-weight: 600;
}
.asic__text {
  margin: 0 0 50px;
}
.asic__list {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .asic__list {
    gap: 10px;
  }
}
@media (max-width: 1439px) {
  .asic__list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.asic__item {
  width: 290px;
  padding: 35px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .asic__item {
    padding: 10px;
  }
}
.asic__reason {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1439px) {
  .asic__reason {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
  }
}
.asic__reason-left {
  padding: 20px 10px;
}
.asic__accordeon {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.asic__accordeon-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border: none;
  padding: 20px;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0px 4px 20px 0px rgba(0, 7, 94, 0.1);
}
@media (max-width: 767px) {
  .asic__accordeon-btn {
    padding: 20px 10px;
    font-size: 14px;
  }
}
.asic__accordeon-content {
  padding: 10px 30px;
  display: none;
}
@media (max-width: 767px) {
  .asic__accordeon-content {
    padding: 10px;
  }
}
.asic__accordeon-content--active {
  display: block;
}
.asic__accordeon-content-text {
  margin: 0;
}
.asic__accordeon-content-link {
  padding: 1px 7px;
  font-weight: 900;
  text-decoration: underline;
}
.asic__reason-right {
  padding: 20px 10px;
}
.asic__reason-list {
  margin: 0;
  padding: 10px 40px;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.catalog-card {
  margin: 0 0 80px;
}
@media (max-width: 1439px) {
  .catalog-card {
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .catalog-card {
    margin: 0 0 20px;
  }
}
.catalog-card__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px 10px 0 0;
  position: relative;
}
@media (max-width: 1439px) {
  .catalog-card__wrapper {
    display: flex;
    flex-direction: column;
  }
}
.catalog-card__favorite {
  position: absolute;
  top: 15px;
  right: 15px;
}
.catalog-card__left {
  display: flex;
  justify-content: center;
}
.catalog-card__gallery {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.catalog-card__main-image img {
  width: 100%;
  max-width: 400px;
  max-height: 374px;
}
.catalog-card__thumbnails-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  gap: 10px;
}
.catalog-card__thumbnails-item--active .catalog-card__thumbnails-img {
  opacity: 1;
}
.catalog-card__thumbnails-img {
  width: 60px;
  height: 60px;
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.2s;
  opacity: 0.5;
}
.catalog-card__thumbnails-img:hover {
  transform: scale(1.1);
  opacity: 1;
}
.catalog-card__title {
  margin: 0;
  border-bottom: 1px solid #808080;
  padding: 10px 0 10px 20px;
  text-transform: uppercase;
  font-size: 38px;
  font-weight: 900;
}
@media (max-width: 767px) {
  .catalog-card__title {
    padding: 10px 0;
    font-size: 22px;
    text-align: center;
  }
}
.catalog-card__content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 40px;
  flex-direction: column;
}
@media (max-width: 767px) {
  .catalog-card__content {
    padding: 20px 0;
  }
}
.catalog-card__description-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: relative;
}
.catalog-card__description-item--position {
  position: absolute;
  right: 0;
  top: 0;
}
.catalog-card__description-item:first-child {
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.catalog-card__description-item:not(:first-child) {
  font-size: 16px;
  padding: 0 0 0 15px;
  margin: 0 0 5px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .catalog-card__description-item:not(:first-child) {
    font-size: 14px;
    padding: 0;
  }
}
.catalog-card__description-item:not(:first-child):not(.catalog-card__description-item--position)::before {
  content: "•";
  padding: 0 10px 0 0;
}
@media (max-width: 767px) {
  .catalog-card__description-item:not(:first-child):not(.catalog-card__description-item--position)::before {
    display: none;
  }
}
.catalog-card__description-item:last-child {
  margin: 20px 0 10px 0;
}
.catalog-card__description-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
.catalog-card__description-price {
  font-size: 28px;
  font-weight: 900;
  color: #5ec062;
  text-decoration: underline;
  margin: 0 40px 0 0;
}
@media (max-width: 767px) {
  .catalog-card__description-price {
    font-size: 18px;
    margin: 0 25px 0 0;
  }
}
.catalog-card__description-price::after {
  content: "i";
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  bottom: 50%;
  transform: translateY(50%);
  justify-content: center;
  display: flex;
  font-family: emoji;
  color: rgba(0, 0, 0, 0.5);
  background-color: #F0F5FB;
  border-radius: 50%;
  font-size: 24px;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 767px) {
  .catalog-card__description-price::after {
    width: 20px;
    height: 20px;
    font-size: 16px;
  }
}
.catalog-card__move {
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .catalog-card__move {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
.catalog-card__reliability {
  background-color: #ffffff;
  padding: 60px 40px;
}
.catalog-card__reliability-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 1439px) {
  .catalog-card__reliability-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.catalog-card__reliability-item {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  width: 345px;
}
@media (max-width: 1439px) {
  .catalog-card__reliability-item {
    width: 300px;
  }
}
.catalog-card__reliability-icon {
  flex-shrink: 0;
  color: #18154B;
}
@media (max-width: 767px) {
  .catalog-card__reliability-icon {
    width: 30px;
    height: 30px;
  }
}
.catalog-card__reliability-content {
  display: flex;
  flex-direction: column;
}
.catalog-card__reliability-content-title {
  font-weight: 600;
}
.catalog-card__tabs-list {
  margin: 0;
  padding: 30px 30px 0 30px;
  list-style: none;
  display: flex;
  justify-content: left;
  gap: 30px;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media (max-width: 1439px) {
  .catalog-card__tabs-list {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .catalog-card__tabs-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    gap: 15px 10px;
    align-items: center;
  }
}
.catalog-card__tabs-item {
  cursor: pointer;
  padding: 12px 15px;
  font-weight: 900;
}
.catalog-card__tabs-item--active {
  border-bottom: 1px solid #38B0C1;
}
.catalog-card__tabs-content {
  display: none;
  padding: 50px;
  background-color: #ffffff;
  border-radius: 0 0 10px 10px;
}
@media (max-width: 767px) {
  .catalog-card__tabs-content {
    padding: 30px 15px;
  }
}
.catalog-card__tabs-content--active {
  display: block;
}
.catalog-card__tabs-content-name {
  font-size: 36px;
  font-weight: 200;
  text-transform: uppercase;
  color: #18154B;
}
@media (max-width: 1439px) {
  .catalog-card__tabs-content-name {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .catalog-card__tabs-content-name {
    font-size: 28px;
  }
}
.catalog-card__tabs-content-title {
  margin: 30px 0 10px 0;
}
.catalog-card__tabs-content-text {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
}
@media (max-width: 767px) {
  .catalog-card__tabs-content-text--params {
    text-align: right;
  }
}
.catalog-card__tabs-content-list {
  margin: 0;
  padding: 0 0 0 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(0, 0, 0, 0.7);
}
@media (max-width: 767px) {
  .catalog-card__tabs-content-list {
    padding: 0;
  }
}
.catalog-card__tabs-content-list--specs {
  padding: 0;
}
.catalog-card__tabs-content-list--payment {
  gap: 20px;
  margin: 30px 0;
  list-style: disc;
}
@media (max-width: 767px) {
  .catalog-card__tabs-content-list--payment {
    list-style: none;
  }
}
.catalog-card__tabs-content-item--specs {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.catalog-card__tabs-content-item--inner {
  display: flex;
  justify-content: space-between;
  width: 50%;
}
@media (max-width: 1439px) {
  .catalog-card__tabs-content-item--inner {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .catalog-card__tabs-content-item--inner {
    gap: 20px;
  }
}
.catalog-card__tooltip {
  position: absolute;
  background: #444444;
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.catalog-card__tooltip--active {
  opacity: 1;
}

/* Form */
/* ------------------------------------ */
.custom-input {
  position: relative;
  /* Callback Modal */
}
.custom-input__field--callback-modal {
  width: 500px;
  padding: 18px 20px 18px 56px;
  font-size: 18px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid #18154B;
}
@media (max-width: 767px) {
  .custom-input__field--callback-modal {
    width: 300px;
    padding: 15px 15px 15px 55px;
  }
}
.custom-input__field--callback-modal:active, .custom-input__field--callback-modal:hover, .custom-input__field--callback-modal:focus, .custom-input__field--callback-modal:focus-visible {
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.7);
}
.custom-input__field--callback-modal::placeholder {
  color: #18154B;
}
.custom-input__field--callback-modal ~ .custom-input__label {
  top: -10px;
  background-color: #ffffff;
  padding: 0 5px;
  color: #18154B;
  display: flex;
  gap: 3px;
}
.custom-input__field--callback-modal ~ .custom-input__icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #18154B;
}
.custom-input__field--callback {
  width: 240px;
  height: 50px;
  padding: 15px 15px 15px 20px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(243, 243, 243, 0.7);
}
.custom-input__field--callback:active, .custom-input__field--callback:hover, .custom-input__field--callback:focus, .custom-input__field--callback:focus-visible {
  outline: none;
  border: 1px solid #ffffff;
}
.custom-input__field--callback::placeholder {
  color: #ffffff;
}
.custom-input {
  /* Calk Modal */
}
.custom-input__field--calk-modal {
  width: 100%;
  padding: 15px 15px 15px 20px;
  border-radius: 10px;
  border: none;
}
.custom-input__field--calk-modal:hover, .custom-input__field--calk-modal:focus-visible {
  outline: none;
}
.custom-input__field--calk-modal ~ .custom-input__label {
  top: -22px;
  display: flex;
  gap: 5px;
}
.custom-input {
  /* Cart Modal */
}
.custom-input__field--cart-modal {
  width: 400px;
  padding: 15px 15px 15px 35px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 16px;
}
@media (max-width: 767px) {
  .custom-input__field--cart-modal {
    width: 300px;
  }
}
.custom-input__field--cart-modal:hover, .custom-input__field--cart-modal:focus-visible {
  outline: none;
  border: 1px solid rgb(0, 0, 0);
}
.custom-input__field--cart-modal ~ .custom-input__label {
  top: -12px;
  background-color: #ffffff;
  padding: 0 7px;
  display: flex;
  gap: 3px;
}
.custom-input__field--cart-modal ~ .custom-input__icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 16px;
  height: 16px;
}
.custom-input {
  /* Promo */
}
.custom-input__field--promo {
  width: 200px;
  padding: 12px 35px 12px 10px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.4);
}
.custom-input__field--promo:hover, .custom-input__field--promo:focus-visible {
  outline: none;
  border: 1px solid rgb(0, 0, 0);
}
.custom-input__field--promo ~ .custom-input__label {
  top: -10px;
  background-color: #ffffff;
  padding: 0 3px;
}
.custom-input__label {
  position: absolute;
  left: 10px;
  font-size: 14px;
  user-select: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .custom-input__label {
    font-size: 12px;
  }
}
.custom-input__label-text {
  color: #FF0000;
  font-weight: 600;
}
.custom-input__error {
  display: none;
}
.custom-input--error .custom-input__field {
  border: 1px solid #FF0000;
}
.custom-input--error .custom-input__label {
  color: #FF0000;
}
.custom-input--error .custom-input__label-text {
  color: #FF0000;
}
.custom-input--error .custom-input__error {
  display: block;
  color: #FF0000;
  position: absolute;
  left: 5px;
  bottom: -18px;
  font-size: 14px;
}

.custom-checkbox {
  position: relative;
}
.custom-checkbox__label--callback-modal {
  display: flex;
  user-select: none;
  padding: 0 0 0 30px;
  cursor: pointer;
}
.custom-checkbox__label--callback-modal::before {
  content: " ";
  width: 20px;
  height: 20px;
  border: 1px solid #DBDBDB;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.custom-checkbox__label--callback-modal .custom-checkbox__label-link {
  text-decoration: underline;
}
.custom-checkbox__label--callback-modal .custom-checkbox__label-link:hover {
  text-decoration: none;
}
.custom-checkbox__label--callback {
  display: flex;
  user-select: none;
  padding: 0 0 0 30px;
  width: max-content;
  cursor: pointer;
}
.custom-checkbox__label--callback::before {
  content: " ";
  width: 20px;
  height: 20px;
  border: 1px solid #DBDBDB;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #ffffff;
}
.custom-checkbox__label--callback .custom-checkbox__label-link {
  color: #ffffff;
  text-decoration: underline;
}
.custom-checkbox__label--callback .custom-checkbox__label-link:hover {
  text-decoration: none;
}
.custom-checkbox__icon::before {
  content: "✔";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  color: #000000;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  display: none;
}
.custom-checkbox__heading {
  font-weight: 400;
  font-size: 12px;
}
@media (max-width: 767px) {
  .custom-checkbox__heading {
    font-size: 10px;
  }
}

.custom-checkbox__field:checked + .custom-checkbox__label .custom-checkbox__icon::before {
  display: flex;
}

.custom-select {
  position: relative;
  user-select: none;
}
.custom-select::before {
  content: "▼";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  pointer-events: none;
  color: #000000;
}
.custom-select__field {
  border: none;
  padding: 20px 120px 20px 55px;
  border-radius: 10px;
  border: 1px solid red;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  color: #000000;
}
.custom-select__field:focus {
  outline: none;
}
.custom-select__field option {
  color: #000000;
}
.custom-select__field option:disabled {
  color: red;
}
.custom-select__field--calk-modal {
  width: 100%;
  padding: 15px 15px 15px 20px;
  border: none;
}

/* Modal */
/* ------------------------------------ */
.pd-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.pd-modal--active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.pd-modal__wrapper {
  position: relative;
  width: 90%;
  background-color: #ffffff;
  padding: 20px 60px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.pd-modal__title {
  font-size: 18px;
  font-weight: 600;
}
.pd-modal__content {
  margin: 20px 0 0;
}

.callback-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.callback-modal--active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.callback-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.callback-modal__wrapper {
  position: relative;
  width: 620px;
  background: #ffffff;
  padding: 20px 60px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .callback-modal__wrapper {
    width: 95%;
    padding: 20px;
    border-radius: 20px;
  }
}
.callback-modal__inner {
  margin: 0 0 30px;
}
.callback-modal__group {
  margin: 0;
  padding: 0;
  border: none;
}
.callback-modal__group-name {
  margin: 0 0 50px;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #18154B;
}
@media (max-width: 767px) {
  .callback-modal__group-name {
    margin: 0 0 30px;
    font-size: 26px;
  }
}
.callback-modal__form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .callback-modal__form-wrapper {
    width: max-content;
    margin: 0 auto;
  }
}
.callback-modal__success {
  display: none;
}
.callback-modal__success--active {
  display: block;
  text-align: center;
}

.favorites-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.favorites-modal--active {
  display: flex;
  justify-content: center;
  align-items: center;
}
.favorites-modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.favorites-modal__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 20px 20px 20px;
  position: relative;
  background-color: #ffffff;
  width: 70%;
  max-height: 95%;
  overflow-x: auto;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .favorites-modal__wrapper {
    width: 95%;
    padding: 20px 10px;
  }
}
.favorites-modal__title {
  font-size: 22px;
  margin: 0;
  font-weight: 900;
}
@media (max-width: 767px) {
  .favorites-modal__title {
    font-size: 20px;
    text-transform: capitalize;
  }
}
.favorites-modal__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.favorites-modal__item {
  display: grid;
  grid-template-columns: 55px 1fr 1fr 150px 100px;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
}
@media (max-width: 1439px) {
  .favorites-modal__item {
    display: flex;
    padding: 10px 0;
    justify-content: space-between;
    gap: 5px;
  }
}
@media (max-width: 767px) {
  .favorites-modal__item {
    gap: 10px;
  }
}
.favorites-modal__item:last-child {
  border-bottom: none;
}
@media (max-width: 767px) {
  .favorites-modal__item img {
    display: none;
  }
}
.favorites-modal__name {
  text-align: center;
}
@media (max-width: 767px) {
  .favorites-modal__name {
    font-size: 14px;
  }
}
.favorites-modal__name::hover, .favorites-modal__name::focus-visible {
  text-decoration: underline;
}
.favorites-modal__price {
  text-align: center;
  font-weight: 600;
}
@media (max-width: 767px) {
  .favorites-modal__price {
    font-size: 14px;
  }
}
.favorites-modal__empty {
  text-align: center;
  color: #808080;
  font-size: 16px;
}
.favorites-modal__close {
  position: absolute;
  top: 15px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  transform-origin: center;
}
.favorites-modal__close:hover {
  transform: rotate(180deg);
}

.cart-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.cart-modal--active {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart-modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.cart-modal__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px;
  position: relative;
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  border-radius: 10px;
  overflow-x: auto;
  max-height: 95%;
}
@media (max-width: 767px) {
  .cart-modal__wrapper {
    width: 90%;
    padding: 20px 10px;
  }
}
.cart-modal__title {
  font-size: 22px;
  margin: 0;
  font-weight: 900;
}
.cart-modal__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 2px solid rgba(0, 0, 0, 0.2);
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}
.cart-modal__item {
  display: grid;
  grid-template-columns: 50px 1fr 100px 20px;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cart-modal__item {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .cart-modal__item img {
    display: none;
  }
}
.cart-modal__item:last-child {
  border-bottom: none;
}
.cart-modal__name {
  text-align: center;
}
@media (max-width: 767px) {
  .cart-modal__name {
    font-size: 14px;
  }
}
.cart-modal__price {
  text-align: center;
  font-weight: 600;
}
@media (max-width: 767px) {
  .cart-modal__price {
    font-size: 14px;
    font-weight: 400;
  }
}
.cart-modal__remove {
  background-color: transparent;
  border: none;
  outline: 1px solid;
  border-radius: 3px;
  cursor: pointer;
}
.cart-modal__empty {
  text-align: center;
  color: #808080;
  font-size: 16px;
}
.cart-modal__order-form {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 50px 0 15px 0;
}
.cart-modal__order-group {
  margin: 0;
  padding: 0;
  border: none;
}
.cart-modal__order-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.cart-modal__order-btn {
  padding: 12px;
  background-color: transparent;
  color: #18154B;
  border: 1px solid #18154B;
  cursor: pointer;
  width: 50%;
  margin: 0 auto;
  border-radius: 5px;
}
.cart-modal__order-btn:disabled {
  background-color: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: unset;
}
.cart-modal__order-btn:hover:not(:disabled), .cart-modal__order-btn:focus-visible:not(:disabled) {
  background-color: #18154B;
  color: #ffffff;
}
.cart-modal__total {
  margin: 20px 0;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .cart-modal__total {
    flex-direction: column;
  }
}
.cart-modal__promo-btn {
  position: absolute;
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 30px;
  height: 30px;
  top: 50%;
  transform: translateY(-50%);
  right: 3px;
  font-size: 25px;
}
.cart-modal__total-info {
  font-size: 18px;
  font-weight: 900;
}
.cart-modal__total-price-old {
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.3);
  font-size: 16px;
}
.cart-modal__content-text {
  margin: 0;
  font-size: 14px;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
}
@media (max-width: 767px) {
  .cart-modal__content-text {
    font-size: 12px;
  }
}

.oneclick-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 1000;
}
.oneclick-modal--active {
  opacity: 1;
  visibility: visible;
}
.oneclick-modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
}
.oneclick-modal__content {
  position: relative;
  background-color: #ffffff;
  padding: 30px;
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 10;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.oneclick-modal--active .oneclick-modal__content {
  transform: translateY(0);
  opacity: 1;
}
.oneclick-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #303239;
  transition: color 0.2s ease-in-out;
}
.oneclick-modal__close:hover {
  color: #FF0000;
}
.oneclick-modal__title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
.oneclick-modal__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.oneclick-modal__group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.oneclick-modal__label {
  font-size: 14px;
  font-weight: 500;
  color: #303239;
  cursor: pointer;
}
.oneclick-modal__input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  transition: border 0.2s ease-in-out;
}
.oneclick-modal__input--error {
  outline: 1px solid red !important;
  background-color: #ffe6e6;
}
.oneclick-modal__input:focus {
  outline: 1px solid #0d748b;
}
.oneclick-modal__textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  transition: border 0.2s ease-in-out;
  min-height: 80px;
  resize: none;
}
.oneclick-modal__textarea:focus {
  border-color: #0d748b;
  outline: none;
}
.oneclick-modal__info {
  background: #f8f8f8;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}
.oneclick-modal__info p {
  margin: 5px 0;
}
.oneclick-modal__captcha {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.oneclick-modal__captcha-inner {
  display: flex;
  gap: 5px;
  width: 100%;
  justify-content: space-between;
}
.oneclick-modal__captcha-refresh-icon {
  width: 24px;
  height: 24px;
  color: #000000;
}
.oneclick-modal .btn--submit {
  background-color: #ffffff;
  color: #18154B;
  padding: 10px;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  border: 1px solid #18154B;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}
.oneclick-modal .btn--submit:disabled {
  background-color: gray;
  color: #ffffff;
  border: 1px solid gray;
  cursor: unset;
}
.oneclick-modal .btn--submit:hover:not(:disabled), .oneclick-modal .btn--submit:focus-visible:not(:disabled) {
  background-color: #18154B;
  color: #ffffff;
}
.oneclick-modal .btn--submit:active:not(:disabled) {
  transform: scale(0.98);
  background-color: rgb(11.25, 9.84375, 35.15625);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}
.oneclick-modal__success {
  text-align: center;
  padding: 20px 10px;
  animation: fadeIn 0.3s ease-in-out;
  display: none;
}
.oneclick-modal__success-title {
  margin-bottom: 10px;
}
.oneclick-modal__success-text {
  font-size: 16px;
  margin-bottom: 20px;
}
.oneclick-modal__success-close {
  background-color: #444444;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 15px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.oneclick-modal__success-close:hover {
  background-color: #222222;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calk-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.calk-modal--active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.calk-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.calk-modal__wrapper {
  position: relative;
  width: 90%;
  height: 50%;
  background-color: #ffffff;
  padding: 20px 60px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background: linear-gradient(73.56deg, #0D748B -10.13%, #1A0B73 75.49%);
  color: #ffffff;
}
@media (max-width: 1439px) {
  .calk-modal__wrapper {
    overflow-x: auto;
    height: 90%;
  }
}
@media (max-width: 767px) {
  .calk-modal__wrapper {
    padding: 15px;
  }
}
.calk-modal__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../images/sprite/bg-hero.svg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  pointer-events: none;
  opacity: 0.5;
}
.calk-modal__wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../images/bg-hero.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  pointer-events: none;
}
@media (max-width: 1439px) {
  .calk-modal__wrapper::after {
    display: none;
  }
}
.calk-modal__icon {
  color: #ffffff;
}
.calk-modal__icon:hover, .calk-modal__icon:focus-visible {
  color: #ffffff !important;
}
.calk-modal__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.calk-modal__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1439px) {
  .calk-modal__form {
    display: flex;
    gap: 20px;
    flex-direction: column;
    width: unset;
  }
}
@media (max-width: 767px) {
  .calk-modal__form {
    gap: 15px;
    width: unset;
  }
}
.calk-modal__group {
  margin: 0;
  padding: 0;
  border: none;
}
.calk-modal__group-name {
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 30px;
}
.calk-modal__form-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px 30px;
}
@media (max-width: 1439px) {
  .calk-modal__form-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .calk-modal__form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
}
.calk-modal__btn {
  width: 25%;
  margin: 0 auto;
  padding: 15px;
  border-radius: 10px;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
}
@media (max-width: 767px) {
  .calk-modal__btn {
    width: unset;
  }
}
.calk-modal__result-coin {
  font-size: 18px;
  font-weight: 600;
}
.calk-modal__result-title {
  font-size: 16px;
  font-weight: 600;
}
.calk-modal__result-list {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
}
@media (max-width: 1439px) {
  .calk-modal__result-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .calk-modal__result-list {
    display: flex;
    flex-direction: column;
  }
}
.calk-modal__result-item {
  background-color: #ffffff;
  color: #000000;
  padding: 20px;
  border-radius: 20px;
  width: 300px;
}
@media (max-width: 1439px) {
  .calk-modal__result-item {
    width: unset;
  }
}
.calk-modal__result-sublist {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1439px) {
  .calk-modal__result-subitem {
    font-size: 14px;
  }
}

/* Articles, Catalog */
/* ------------------------------------ */
.hosting {
  margin: 0 0 80px;
}
@media (max-width: 1439px) {
  .hosting {
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .hosting {
    margin: 0 0 20px;
  }
}
.hosting__head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0;
}
.hosting__head-title {
  font-size: 38px;
  color: #18154B;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 1439px) {
  .hosting__head-title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .hosting__head-title {
    font-size: 28px;
  }
}
.hosting__head-text {
  margin: 0;
}
.hosting h2 {
  margin: 0;
  font-size: 36px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  color: #18154B;
}
@media (max-width: 1439px) {
  .hosting h2 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .hosting h2 {
    font-size: 22px;
  }
}
.hosting h3 {
  margin: 0 0 20px;
  font-size: 32px;
  color: #18154B;
}
@media (max-width: 1439px) {
  .hosting h3 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .hosting h3 {
    font-size: 20px;
  }
}
.hosting__subtitle {
  font-size: 24px;
  color: #18154B;
  text-align: justify;
}
@media (max-width: 767px) {
  .hosting__subtitle {
    text-align: left;
    font-size: 18px;
  }
}
.hosting__hero {
  margin: 0 0 80px;
  padding: 40px;
  background-image: url(./images/hosting.png);
  border-radius: 20px;
  background-repeat: no-repeat;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1439px) {
  .hosting__hero {
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .hosting__hero {
    margin: 0 0 20px;
  }
}
.hosting__hero::before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background: #000000;
  opacity: 0.4;
}
.hosting__hero-inner {
  width: 450px;
  backdrop-filter: blur(15px);
  border-radius: 15px;
  background-color: rgba(0, 0, 0, 0.15);
  border: 1px solid #808080;
}
@media (max-width: 767px) {
  .hosting__hero-inner {
    width: unset;
  }
}
.hosting__hero-list {
  margin: 0;
  padding: 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.hosting__hero-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
}
.hosting__hero-item:not(:last-child) {
  border-bottom: 1px solid;
}
.hosting__hero-text {
  text-transform: capitalize;
  color: #ffffff;
}
.hosting__hero-info {
  color: #ffffff;
}
.hosting__offer {
  margin: 0 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
@media (max-width: 1439px) {
  .hosting__offer {
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .hosting__offer {
    margin: 0 0 20px;
  }
}
.hosting__img {
  margin: 0 0 80px;
  min-height: 450px;
  background-image: url(../../images/hosting.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1439px) {
  .hosting__img {
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .hosting__img {
    margin: 0 0 20px;
  }
}
.hosting__questions {
  margin: 0 0 80px;
}
@media (max-width: 1439px) {
  .hosting__questions {
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .hosting__questions {
    margin: 0 0 20px;
  }
}
.hosting__questions-list {
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 767px) {
  .hosting__questions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
}
.hosting__questions-item {
  background-color: #ffffff;
  height: 180px;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .hosting__questions-item {
    height: 150px;
    width: 45%;
    align-items: center;
    text-align: center;
  }
}
.hosting__questions-item:first-child {
  grid-column: 1/3;
}
.hosting__questions-item:last-child {
  grid-column: 3/5;
}
.hosting__accordeon {
  padding: 40px;
}
@media (max-width: 767px) {
  .hosting__accordeon {
    padding: 0 10px;
  }
}
.hosting__accordeon-top {
  display: flex;
  flex-direction: column;
  margin: 0 0 20px;
}
.hosting__accordeon-top-title {
  margin: 0;
}
.hosting__accordeon-top-text {
  margin: 0;
  font-size: 18px;
  text-align: center;
}
@media (max-width: 1439px) {
  .hosting__accordeon-top-text {
    font-size: 16px;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .hosting__accordeon-top-text {
    font-size: 14px;
  }
}
.hosting__accordeon-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 767px) {
  .hosting__accordeon-list {
    gap: 15px;
  }
}
.hosting__accordeon-item {
  background-color: #ffffff;
  border-radius: 20px;
}
.hosting__accordeon-btn {
  padding: 30px;
  border: none;
  cursor: pointer;
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  background-color: transparent;
  font-size: 22px;
  text-transform: uppercase;
  align-items: center;
}
@media (max-width: 1439px) {
  .hosting__accordeon-btn {
    padding: 20px;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .hosting__accordeon-btn {
    padding: 15px;
    font-size: 14px;
    text-align: left;
  }
}
.hosting__accordeon-btn:has(+ .hosting__accordeon-content--active) .hosting__accordeon-icon {
  transform: rotate(180deg);
}
.hosting__accordeon-icon {
  transition: transform 0.3s ease;
}
.hosting__accordeon-content {
  display: none;
}
.hosting__accordeon-text {
  margin: 0;
  padding: 0 50px;
}
@media (max-width: 767px) {
  .hosting__accordeon-text {
    padding: 0 20px;
    font-size: 13px;
  }
}
.hosting__accordeon-sublist {
  margin: 0;
  padding: 10px 70px 40px 70px;
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 767px) {
  .hosting__accordeon-sublist {
    padding: 10px 40px 20px 40px;
    font-size: 12px;
  }
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 400px;
  padding: 15px;
  background-color: #2ecc71;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  z-index: 9999;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
@media (max-width: 767px) {
  .notification {
    top: 10px;
    right: 10px;
    width: 95%;
  }
}
.notification.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: none;
  user-select: none;
}
.notification__timer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.7);
  transform: scaleX(0);
  transform-origin: left;
}
/*# sourceMappingURL=style.css.map */
