@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@font-face {
  font-family: "Clash";
  src: url("../fonts/clash-display/ClashDisplayLight.otf");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Clash";
  src: url("../fonts/clash-display/ClashDisplayExtralight.otf");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Clash";
  src: url("../fonts/clash-display/ClashDisplayRegular.otf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Clash";
  src: url("../fonts/clash-display/ClashDisplayMedium.otf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Clash";
  src: url("../fonts/clash-display/ClashDisplaySemibold.otf");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Clash";
  src: url("../fonts/clash-display/ClashDisplayBold.otf");
  font-weight: 600;
  font-style: normal;
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Clash";
}

html,
body {
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  height: auto;
  max-width: 1680px;
  margin: 0px auto;
}

.hero {
  width: 100%;
  height: 100vh;
  background-color: rgb(88, 122, 245);
  position: relative;
  overflow: hidden;
}
.hero.hero__page .hero__image .hero__lines {
  left: -220px;
}
.hero .hero__image {
  width: 100%;
  display: block;
  min-height: 100%;
  position: relative;
}
.hero .hero__image::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #587af5;
}
.filter {
  width: 350px;
  height: 100vh;
  padding: 50px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: 0;
  overflow: scroll;
  z-index: 9999999;
  background-color: #fff;
}
.filter .checkbox__groups {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
/* =========================
   FULL, SCOPED SIDEBAR CSS
   Everything is prefixed with .filter-sidebar so it won't affect the rest of your app.
   ========================= */

/* Base reset inside sidebar only */
.filter-sidebar,
.filter-sidebar * {
  box-sizing: border-box;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

/* Sidebar shell */
.filter-sidebar {
  position: fixed;
  top: 0;
  right: 0; /* change to left: 0 if you want left sidebar */
  width: 500px;
  height: 100vh;
  z-index: 99999999;
  padding: 32px;
  background: #ffffff;
  border-left: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow: scroll; /* keeps it clean */
  display: none;
}
.filter-sidebar.is-open {
  display: flex;
}
/* Header */
.filter-sidebar .filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
}

.filter-sidebar .filter-header .filter-icon {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}

/* Sections */
.filter-sidebar .filter-section {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  gap: 12px;
}

.filter-sidebar .filter-section .filter-label {
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

/* =========================
   CHECKBOX LISTS (Kategorije / Brendovi)
   HTML expected:
   <label class="checkbox-item">
     <input type="checkbox">
     <span class="custom-checkbox"></span>
     <span class="checkbox-label">...</span>
   </label>
   ========================= */

.filter-sidebar .filter-section .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* one row */
.filter-sidebar .filter-section .checkbox-group .checkbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

/* hide native checkbox */
.filter-sidebar
  .filter-section
  .checkbox-group
  .checkbox-item
  > input[type="checkbox"] {
  display: none;
}

/* visual checkbox */
.filter-sidebar
  .filter-section
  .checkbox-group
  .checkbox-item
  > .custom-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid #cfcfcf;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.15s ease,
    background-color 0.15s ease;
}

/* checkmark */
.filter-sidebar
  .filter-section
  .checkbox-group
  .checkbox-item
  > .custom-checkbox::after {
  content: "";
  width: 6px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.1s ease;
}

/* text */
.filter-sidebar
  .filter-section
  .checkbox-group
  .checkbox-item
  > .checkbox-label {
  font-size: 16px;
  color: #333;
}

/* checked state */
.filter-sidebar
  .filter-section
  .checkbox-group
  .checkbox-item
  > input[type="checkbox"]:checked
  + .custom-checkbox {
  background: #5b7cff;
  border-color: #5b7cff;
}

.filter-sidebar
  .filter-section
  .checkbox-group
  .checkbox-item
  > input[type="checkbox"]:checked
  + .custom-checkbox::after {
  opacity: 1;
}

/* hover */
.filter-sidebar
  .filter-section
  .checkbox-group
  .checkbox-item:hover
  > .custom-checkbox {
  border-color: #5b7cff;
}

/* keyboard focus */
.filter-sidebar
  .filter-section
  .checkbox-group
  .checkbox-item
  > input[type="checkbox"]:focus-visible
  + .custom-checkbox {
  outline: none;
  box-shadow: 0 0 0 4px rgba(91, 124, 255, 0.18);
  border-color: #5b7cff;
}

/* =========================
   PRICE (noUiSlider) – fully scoped
   Slider element expected:
   <div id="priceSlider" class="price-noui"></div>
   ========================= */

.filter-sidebar .filter-section .price-noui {
  padding: 6px 0; /* space for handles */
}

/* remove defaults */
.filter-sidebar .filter-section .price-noui.noUi-target {
  border: none;
  background: transparent;
  box-shadow: none;
}

/* rail sizing */
.filter-sidebar .filter-section .price-noui .noUi-base {
  height: 8px;
}

.filter-sidebar .filter-section .price-noui .noUi-connects {
  height: 8px;
  background: #e0e0e0;
  border-radius: 999px;
}

/* active range */
.filter-sidebar .filter-section .price-noui .noUi-connect {
  background: #5b7cff;
  border-radius: 999px;
}

/* handles */
.filter-sidebar .filter-section .price-noui .noUi-handle {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid #5b7cff;
  background: #ffffff;
  box-shadow: none;
  cursor: pointer;
  right: -11px; /* center handle */
  top: -7px; /* align to track */
}

/* remove default handle bars */
.filter-sidebar .filter-section .price-noui .noUi-handle:before,
.filter-sidebar .filter-section .price-noui .noUi-handle:after {
  display: none;
}

/* focus ring */
.filter-sidebar .filter-section .price-noui .noUi-handle:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(91, 124, 255, 0.18);
}

/* value label */
.filter-sidebar .filter-section .price-value {
  font-size: 16px;
  color: #5b7cff;
}

/* =========================
   APPLY BUTTON
   ========================= */

.filter-sidebar .apply-btn {
  margin-top: auto;
  height: 64px;
  border-radius: 999px;
  border: 1.5px solid #000;
  background: #fff;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  cursor: pointer;
}

.filter-sidebar .apply-btn:hover {
  background: #f5f5f5;
}

.filter-sidebar .apply-btn .arrow {
  font-size: 22px;
  line-height: 1;
}

/* =========================
   OPTIONAL: make long lists scrollable without moving the button
   Wrap your main content in a .filter-body if you want:
   <div class="filter-body"> ...sections... </div>
   Keep button outside it.
   ========================= */

/*
.filter-sidebar .filter-body {
  overflow: auto;
  padding-right: 6px;
}
.filter-sidebar .filter-body::-webkit-scrollbar {
  width: 8px;
}
.filter-sidebar .filter-body::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 999px;
}
*/

/* =========================
   OPTIONAL: make long lists scrollable without moving the button
   Wrap your main content in a .filter-body if you want:
   <div class="filter-body"> ...sections... </div>
   Keep button outside it.
   ========================= */

/*
.filter-sidebar .filter-body {
  overflow: auto;
  padding-right: 6px;
}
.filter-sidebar .filter-body::-webkit-scrollbar {
  width: 8px;
}
.filter-sidebar .filter-body::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 999px;
}
*/

.filter .checkbox__groups span {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  padding-left: 20px;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}
.filter .checkbox__groups .checkbox__list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
.filter .checkbox__groups .checkbox__list .checkbox__group {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 5px;
}
.filter .checkbox__groups .checkbox__list .checkbox__group label {
  font-family: "Roboto", sans-serif;
  margin-left: 10px;
  font-size: 16px;
  color: 000;
}
.filter .close__btn {
  position: absolute;
  top: 40px;
  right: 40px;
  cursor: pointer;
}
.hero .hero__image .hi__main {
  width: 100%;
  height: 1080px;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.text-modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.text-modal.active {
  display: flex;
}

.text-modal .tm__overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.35);
}

.tm__content {
  position: relative;
  background: #ffffff;
  max-width: 600px;
  padding: 35px 40px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  z-index: 10;
  animation: modalFadeIn 0.35s ease;
}

.tm__content h2 {
  margin-top: 0;
  color: #587af5;

  font-family: "Roboto", sans-serif;
}

.tm__content p {
  line-height: 1.6;
  color: #333;
  font-family: "Roboto", sans-serif;
}

.tm__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #587af5;
  border: none;
  color: #fff;
  font-size: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}

.tm__close:hover {
  background: #4763d0;
}

/* Post page */
.post {
  padding: 80px 0;
}
.post__card {
  max-width: 900px;
  margin: 0 auto;
}
.post__image img {
  width: 100%;
  display: block;
  border-radius: 8px;
}
.post__meta {
  margin-top: 20px;
  color: #666;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-family: "Roboto", sans-serif;
}
.post__meta span {
  font-family: "Roboto", sans-serif;
}
.post__title {
  margin: 10px 0 20px;
  font-size: 32px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
}
.post__content {
  font-size: 16px;
  line-height: 1.6;
  font-family: "Roboto", sans-serif !important;

  color: #333;
}
.post__content p strong {
  font-family: "Roboto", sans-serif;
}
.post__content p {
  font-family: "Roboto", sans-serif !important;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .hero__image .hero__lines {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0px;
  left: 100px;
}
.hero .hero__image .hero__lines .hl__main {
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: lighten;
}
.header {
  width: 100%;
  height: auto;
  position: absolute;
  top: 100px;
  left: 0px;
}
.hb {
  background-color: #587af5;
  position: relative;
  top: 0px;
  margin-bottom: 20px;
}
.hb .header__logo img {
  margin-top: 10px;
  height: 50px;
}
.header.fixed {
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: #587af5;
  height: 120px;
  z-index: 9990000;
  box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
}
.header.fixed .header__block .header__logo {
  padding-top: 30px;
}
.header .header__block {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header__block .header__menu {
  display: flex;
  align-items: center;
}
.header .header__block .header__menu .h__cart {
  position: relative;
  width: 60px;
  height: 60px;
}
.header .header__block .header__menu .h__cart svg {
  width: 50px;
  height: 50px;
  object-fit: contain;
  color: #fff;
}
.header .header__block .header__menu .h__cart span {
  position: absolute;
  top: 0px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 300;
  color: #fff;
  background-color: green;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .header__block .header__menu .hm__hamb {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  cursor: pointer;
}
.header .header__block .header__menu .hm__hamb span {
  width: 82px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.header .header__block .header__menu .hm__hamb span:last-child {
  width: 62px;
  margin-top: 10px;
}
.header .header__block .header__menu .hm__hamb:hover span:first-child {
  transform: translateX(-10px);
}
.header .header__block .header__menu .hm__hamb:hover span:last-child {
  width: 52px;
}
.hero .hero__bottom {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 100px;
  left: 0px;
}
.hero .hero__bottom .hb__block {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero .hero__bottom .hb__block .hb__scroll {
  position: relative;
  cursor: pointer;
}
.hero .hero__bottom .hb__block .hb__scroll .circ {
  transition: all 0.3s ease-in-out;
}
.hero .hero__bottom .hb__block .hb__scroll .arw {
  position: absolute;
  top: 0px;
  left: 50%;
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}
.hero .hero__bottom .hb__block .hb__scroll:hover .circ {
  transform: rotate(180deg);
}
.hero .hero__bottom .hb__block .hb__scroll:hover .arw {
  top: 60px;
}
.hero .hero__content {
  width: 100%;
  height: auto;
  position: absolute;
  top: 45%;
  left: 0px;
  transform: translateY(-25px);
}
.hero .hero__content .hc__block {
  width: 100%;
  height: auto;
}
.hero .hero__content .hc__block h3 {
  font-weight: 500;
  font-size: 155px;
  color: #fff;
}
.hero .hero__content .hc__block h3 span {
  position: relative;
  z-index: 2;
}
.hero .hero__content .hc__block h3 span::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 99%;
  height: 10px;
  background-color: #b7fdc7;
  transition: height 0.3s ease-in-out;
  z-index: -1;
}
.hero .hero__content .hc__block h3:hover span {
  color: #587af5;
}
.hero .hero__content .hc__block h3:hover span::after {
  height: 180px;
}
.hero .hero__content .hc__block h4 {
  font-size: 82px;
  font-weight: 500;
  color: #fff;
  line-height: 101px;
}
.hero .hero__content .hc__block p {
  padding-top: 11px;
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  font-family: "Roboto", sans-serif;
  margin-bottom: 115px;
}

.button {
  width: 330px;
  height: 60px;
  border-radius: 30px;
  border-top-left-radius: 0px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 35px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.button.button--black {
  border: 1px solid #000;
}
.button.button--black span {
  color: #000;
}
.button.button--black img {
  filter: invert(1);
}
.button.button--black:hover span {
  color: #fff;
}
.button.button--black:hover img,
.button.button--black:hover svg {
  filter: invert(0);
  color: #fff;
}
.button.button--black:hover::before {
  background-color: #000;
}
.button.button--black:hover::after {
  background-color: #000;
}
.button span {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  font-family: "Roboto", sans-serif;
  position: relative;
  z-index: 2;
}
.button img {
  position: relative;
  z-index: 2;
}
.button.simg img {
  width: 50px !important;
  height: 50px !important;
  object-fit: contain !important;
}
.button::before {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  position: absolute;
  top: -360px;
  left: 0px;
  content: "";
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.button::after {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  position: absolute;
  bottom: -360px;
  left: 0px;
  content: "";
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.button:hover span {
  color: #000;
}
.button:hover img {
  filter: invert(1);
}
.button:hover::after {
  bottom: -180px;
}
.button:hover::before {
  top: -180px;
  left: -20px;
}

.services {
  width: 100%;
  height: auto;
  margin-top: -6px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.services .services__list {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.services .services__list .services__item {
  width: 33.33%;
  height: 990px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.services .services__list .services__item .services__images {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
}
.services .services__list .services__item .services__images .si__main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.services .services__list .services__item .services__images .services__hover {
  width: 100%;
  height: 100%;
  background-color: #587af5;
  position: absolute;
  top: 0px;
  left: 100%;
  transition: all 0.3s ease-in-out;
}
.services
  .services__list
  .services__item
  .services__images
  .services__hover
  img {
  mix-blend-mode: lighten;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services .services__list .services__item .services__content {
  width: 100%;
  height: 50%;
  position: absolute;
  top: 50%;
  left: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 100px;
  padding-top: 0px;
}
.services .services__list .services__item .services__content .sc__title {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.services .services__list .services__item .services__content .sc__title h4 {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
}
.services .services__list .services__item .services__content .sc__title img {
  transition: all 0.3s ease-in-out;
}
.services
  .services__list
  .services__item
  .services__content
  .sc__title
  img:hover {
  transform: scale(1.1);
}
.services .services__list .services__item .services__content p {
  font-size: 20px;
  color: #fff;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  line-height: 33px;
}
.services .services__list .services__item:hover .services__images .si__main {
  transform: translateX(-100%);
}
.services
  .services__list
  .services__item:hover
  .services__images
  .services__hover {
  left: 0px;
}

.newsletter {
  width: 100%;
  height: auto;
  background-color: #587af5;
  padding: 250px 0px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.newsletter .n__main {
  position: absolute;
  left: -25%;
  bottom: 0px;
  width: 100%;
  height: auto;
  mix-blend-mode: lighten;
  z-index: -1;
}
.newsletter .newsletter__block {
  width: 100%;
  height: auto;
}
.newsletter .newsletter__block .nb__title {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.newsletter .newsletter__block .nb__title h3 {
  font-size: 70px;
  font-weight: 500;
  color: #fff;
}
.newsletter .newsletter__block .nb__form {
  width: 100%;
  height: auto;
}
.newsletter .newsletter__block .nb__form form {
  width: 100%;
  height: auto;
  border-bottom: 4px solid #b7fdc7;
  position: relative;
  overflow: hidden;
}
.newsletter .newsletter__block .nb__form form input {
  width: 100%;
  height: 130px;
  background-color: transparent;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  font-family: "Roboto", sans-serif;
  border: 0px;
  outline: none;
  transition: all 0.3s ease-in-out;
}
.newsletter .newsletter__block .nb__form form input::placeholder {
  color: #fff;
  opacity: 1;
  /* Firefox */
}
.newsletter .newsletter__block .nb__form form input::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #fff;
}
.newsletter .newsletter__block .nb__form form button {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  background-color: transparent;
  color: #fff;
  transition: right 0.3s ease-in-out;
}
.newsletter .newsletter__block .nb__form form button:hover {
  color: #000;
}
.newsletter .newsletter__block .nb__form form::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.09);
  transition: all 0.3s ease-in-out;
}
.newsletter .newsletter__block .nb__form form:hover input {
  padding: 0px 30px;
}
.newsletter .newsletter__block .nb__form form:hover button {
  right: 30px;
}
.newsletter .newsletter__block .nb__form form:hover::after {
  bottom: 0px;
}

.footer {
  width: 100%;
  height: auto;
  background-color: #587af5;
  padding-top: 20px;
}
.footer .footer__block {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
}
.footer .footer__block .footer__info {
  width: 50%;
  height: auto;
  padding-right: 200px;
}
.footer .footer__block .footer__info p {
  font-size: 20px;
  color: #fff;
  font-weight: 300;
  line-height: 33px;
  font-family: "Roboto", sans-serif;
  padding-bottom: 30px;
}
.footer .footer__block .footer__info p b {
  font-weight: 5 0;
  font-family: "Roboto", sans-serif;
}
.footer .footer__block .footer__list {
  width: 25%;
  height: auto;
}
.footer .footer__block .footer__list ul li {
  list-style: none;
  padding: 25px 0px;
  position: relative;
}
.footer .footer__block .footer__list ul li a {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  line-height: 24px;
  font-family: "Roboto", sans-serif;
}
.footer .footer__block .footer__list ul li a img {
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.footer .footer__block .footer__list ul li:first-child {
  padding-top: 0px;
}
.footer .footer__block .footer__list ul li:hover a {
  color: #b7fdc7;
}
.footer .footer__block .footer__list ul li:hover a img {
  opacity: 1;
  transform: translateX(10px);
}
.footer .footer__block .footer__social {
  width: 25%;
  height: auto;
}
.footer .footer__block .footer__social h5 {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  line-height: 24px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 50px;
}
.footer .footer__block .footer__social ul {
  display: flex;
  align-items: center;
}
.footer .footer__block .footer__social ul li {
  list-style: none;
  padding: 0px 25px;
}
.footer .footer__block .footer__social ul li:first-child {
  padding-left: 0px;
}
.footer .copy {
  margin-top: 100px;
  padding: 50px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .copy p,
.footer .copy a {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  font-family: "Roboto", sans-serif;
}

.banner {
  width: 100%;
  height: auto;
  position: relative;
}
.banner .banner__image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}
.banner .banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .banner__block {
  width: 100%;
  height: 840px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
.banner .banner__block .banner__content {
  width: 100%;
  height: auto;
  max-width: 660px;
}
.banner .banner__block .banner__content .banner__logo {
  margin-bottom: 38px;
}
.banner .banner__block .banner__content h3 {
  font-size: 70px;
  font-weight: 500;
  color: #fff;
  line-height: 75px;
}
.banner .banner__block .banner__content p {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  line-height: 33px;
  font-family: "Roboto", sans-serif;
}
.banner .banner__block .banner__content a {
  margin-top: 115px;
}

.extra__banner {
  width: 100%;
  height: auto;
  padding: 180px 0px;
}

.news {
  width: 100%;
  height: auto;
  padding: 160px 0px;
}
.news .news__title {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: auto;
}
.news .news__title h3 {
  font-size: 70px;
  font-weight: 500;
  color: #587af5;
}
.news .news__list {
  width: 100%;
  height: auto;
  padding-top: 60px;
  display: flex;
  align-items: flex-start;
}
.news .news__list .news__item {
  width: 33.33%;
  height: auto;
  position: relative;
  cursor: pointer;
  margin: 0 10px;
}
.news .news__list .news__item:hover .news__image .news__hover {
  top: 0px;
}
.news .news__list .news__item:hover .news__content {
  transform: translateY(-200px);
}
.news .news__list .news__item .news__image {
  width: 100%;
  height: 520px;
  overflow: hidden;
  position: relative;
}
.news .news__list .news__item .news__image .ni__main {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news .news__list .news__item .news__image .news__hover {
  width: 100%;
  height: 520px;
  background-color: #587af5;
  position: absolute;
  top: 100%;
  left: 0px;
  z-index: 1;
  transition: top 0.3s ease-in-out;
}
.news .news__list .news__item .news__image .news__hover .nh__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  mix-blend-mode: lighten;
}
.news .news__list .news__item .news__image .nh__content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  padding: 120px;
}
.news .news__list .news__item .news__image .nh__content em {
  font-style: normal;
  font-size: 16px;
  font-weight: 200;
  color: #fff;
  line-height: 27px;
  font-family: "Roboto", sans-serif;
}
.news .news__list .news__item .news__image .nh__content h4 {
  padding-top: 37px;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  font-family: "Roboto", sans-serif;
  line-height: 33px;
}
.news .news__list .news__item .news__image .nh__content a {
  margin-top: 115px;
}
.news .news__list .news__item .news__content {
  width: 100%;
  height: auto;
  padding: 40px 120px;
  transition: all 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
}
.news .news__list .news__item .news__content h5 {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  font-family: "Roboto", sans-serif;

  font-family: "Roboto", sans-serif;
  line-height: 33px;
}
.news .news__list .news__item .news__content p {
  font-family: "Roboto", sans-serif;
}
.news .news__control {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news .news__control .nc__arrows {
  display: flex;
  align-items: center;
}
.news .news__control .nc__arrows img {
  cursor: pointer;
}
.news .news__control .nc__arrows .nca--right {
  margin-left: 20px;
  transform: rotate(180deg);
}
.custom__banner {
  width: 100%;
  height: auto;
  padding: 160px 0px;
  background-color: rgba(88, 122, 245, 0.05);
}
.custom__banner .cb__block {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
}
.custom__banner .cb__block .cb__left {
  width: 50%;
  height: auto;
}
.custom__banner .cb__block .cb__left ul {
  margin-top: 45px;
  margin-bottom: 45px;
}
.custom__banner .cb__block .cb__left ul li {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 37px;
  border-radius: 15px;
  background-color: #fff;
  width: 585px;
  margin-bottom: 15px;
}
.custom__banner .cb__block .cb__left ul li h5 {
  color: #587af5;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  font-family: "Roboto", sans-serif;
}
.custom__banner .cb__block .cb__left ul li p {
  font-size: 18px;
  font-weight: 200;
  color: #000;
  line-height: 28px;
  font-family: "Roboto", sans-serif;
}

.nav {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  display: none;
  background: rgba(88, 122, 245, 0.7) 0% 0% no-repeat padding-box;
  opacity: 1;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 9990099;
  padding: 100px 0px;
}
.nav.nar-rel {
  position: relative;
}
.nav.active {
  display: block;
}
.nav .nav__head {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav .nav__head .nh__close {
  display: flex;
  align-items: center;
  padding: 7px 0px;
  cursor: pointer;
}
.nav .nav__head .nh__close:hover {
  border-bottom: 2px solid #b7fdc7;
}
.nav .nav__head .nh__close span {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  font-family: "Roboto", sans-serif;
  margin-right: 18px;
}
.nav .nav__block {
  width: 100%;
  height: auto;
  padding-top: 50px;
  display: flex;
  align-items: flex-start;
}
.nav .nav__block .nav__left {
  width: 70%;
  height: auto;
}
.nav .nav__block .nav__left .nav__items {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.nav .nav__block .nav__left .nav__items .nav__item {
  width: 33.33%;
  max-width: 363px;
  height: 373px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.nav .nav__block .nav__left .nav__items .nav__item img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav .nav__block .nav__left .nav__items .nav__item .ni__content {
  padding: 0px 45px;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
}
.nav .nav__block .nav__left .nav__items .nav__item .ni__content h4 {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  line-height: 38px;
}
.nav .nav__block .nav__left .nav__items .nav__item .ni__content img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.nav .nav__block .nav__left .nav__items .nav__item .ni__hover {
  width: 100%;
  height: 100%;
  background-color: #587af5;
  position: absolute;
  top: 0px;
  left: 100%;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
.nav .nav__block .nav__left .nav__items .nav__item .ni__hover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: lighten;
}
.nav .nav__block .nav__left .nav__items .nav__item:hover .ni__hover {
  left: 0px;
}
.nav .nav__block .nav__right {
  width: 30%;
  height: auto;
  padding-left: 80px;
}
.nav .nav__block .nav__right ul li {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  position: relative;
}
.nav .nav__block .nav__right ul li .nr__hover {
  width: 150%;
  height: 150px;
  background-color: #587af5;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  display: none;
}
.nav .nav__block .nav__right ul li .nr__hover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: lighten;
}
.nav .nav__block .nav__right ul li:hover .nr__hover {
  display: block;
}
.nav .nav__block .nav__right ul li:hover .nr__button {
  border: 1px solid #fff;
}
.nav .nav__block .nav__right ul li:hover .nr__button span {
  color: #000;
  transform: translateX(0px);
}
.nav .nav__block .nav__right ul li:hover .nr__button img {
  display: inline-flex;
  filter: invert(1);
}
.nav .nav__block .nav__right ul li:hover .nr__button::after {
  bottom: -180px;
}
.nav .nav__block .nav__right ul li:hover .nr__button::before {
  top: -180px;
  left: -20px;
}
.nav .nav__block .nav__right ul li .nr__button {
  width: 330px;
  height: 60px;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  border-radius: 30px;
  border-top-left-radius: 0px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 35px;
  overflow: hidden;
  border: 0px;
  cursor: pointer;
}
.nav .nav__block .nav__right ul li .nr__button span {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  font-family: "Roboto", sans-serif;
  position: relative;
  z-index: 2;
  transform: translateX(150px);
  transition: all 0.2s ease-in-out;
}
.nav .nav__block .nav__right ul li .nr__button img {
  position: relative;
  z-index: 2;
  display: none;
}
.nav .nav__block .nav__right ul li .nr__button::before {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  position: absolute;
  top: -360px;
  left: 0px;
  content: "";
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.nav .nav__block .nav__right ul li .nr__button::after {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  position: absolute;
  bottom: -360px;
  left: 0px;
  content: "";
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.nav .nav__block .nav__right .nr__socials {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 50px;
}
.nav .nav__block .nav__right .nr__socials a {
  margin: 0px 25px;
}

.shop {
  width: 100%;
  height: auto;
}
.shop .shop__block {
  width: 100%;
  height: auto;
  padding-top: 50px;
  box-sizing: border-box;
}

.shop .shop__title {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.shop .shop__title button {
  background-color: #fff;
  height: 50px;
  border-radius: 999px;
  border: 1.5px solid #000;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
}
.shop .shop__title h3 {
  font-size: 70px;
  font-weight: 500;
  color: #587af5;
}
.shop .shop__items {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.shop .shop__items .shop__item {
  width: calc(33.33% - 20px);
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 25px;
  flex-wrap: wrap;
  background-color: #fcfcff;
  border-radius: 10px;
  cursor: pointer;
}
.shop .shop__items .shop__item .button {
  margin-top: 20px;
}
.shop .shop__items .shop__item .button img {
  margin-top: 10px;
}
.button svg {
  width: 40px;
  height: 40px;
  object-fit: contain;
  color: #000;
}
.shop .shop__items .shop__item:hover {
  background-color: #eaeaf8;
}
.shop .shop__items .shop__item img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  margin-bottom: 15px;
}

.shop .shop__items .shop__item .si__content {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #587af5;
}
.shop .shop__items .shop__item .si__content h4 {
  font-size: 16px;
  font-family: "Roboto", sans-serif;

  font-weight: 400;
  color: #000;
}
.shop .shop__items .shop__item .si__content span {
  font-size: 14px;
  font-weight: 400;
  color: #587af5;
}

.product {
  width: 100%;
  height: auto;
  padding: 40px 0px;
}
.product .product__block {
  width: 100%;
  height: auto;
}
.product .product__block .pb__top {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.product .product__block .pb__image {
  width: 40%;
  height: auto;
}

.product .product__block .pb__image img {
  width: 100%;
  height: 500px;
  object-fit: contain;
}
.product .product__block .pb__content {
  width: 60%;
  height: auto;
  padding: 20px 40px;
}
.product .product__block .pb__content h4 {
  font-size: 20px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;

  color: #000;
}
.product .product__block .pb__content h5 {
  font-size: 14px;
  font-family: "Roboto", sans-serif;

  font-weight: 400;
}
.product .product__block .pb__content p {
  font-size: 14px;
  font-weight: 300;
  color: #000;
  padding-top: 20px;
  font-family: "Roboto", sans-serif;

  padding-bottom: 50px;
}
.product .product__block .pb__content ul {
  margin: 10px 0;
}
.product .product__block .pb__content ul li {
  font-family: "Roboto", sans-serif;
}
.product .product__block .pb__content span.price {
  font-size: 16px;
  font-weight: 600;
  color: #587af5;
  font-family: "Roboto", sans-serif;
}

.product .product__block .pb__content .pb__buttons {
  border-top: 1px solid #587af5;
  padding-top: 15px;
  margin-top: 15px;
  display: flex;
  align-items: center;
}
.product .product__block .pb__content .pb__buttons .button {
  background-color: #fff;
  cursor: pointer;
}
.product .product__block .pb__content .pb__buttons .button:hover > svg {
  color: #587af5 !important;
}
.product .product__block .pb__content .pb__buttons select {
  width: 120px;
  height: 60px;
  border-radius: 30px;
  border: 1px solid #000;
  background-color: transparent;
  font-size: 16px;
  color: #000;
  margin-right: 20px;
  text-align: center;
}

.cart {
  width: 100%;
  height: auto;
  padding: 40px 0px;
}
.cart .cart__title {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.cart .cart__title h3 {
  font-size: 70px;
  font-weight: 500;
  color: #587af5;
}

.cart .cart__block {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.cart .cart__items {
  width: 70%;
  height: auto;
  padding-right: 40px;
}
.cart .cart__total {
  width: calc(30% - 20px);
  min-width: 420px;
  margin-left: 20px;
  height: auto;
  overflow: hidden;
  background-color: #587af5;
  border-radius: 10px;
  position: relative;
  padding: 100px 60px;
  margin-bottom: 30px;
}
.cart .cart__items .cart__item {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px;
}
.cart .cart__items .cart__item button {
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}
.cart .cart__items .cart__item button:hover {
  background-color: #000;
  color: #fff;
}
.cart .cart__items .cart__item .ci__item {
  display: flex;
  align-items: center;
}
.cart .cart__items .cart__item .ci__item.product_overview {
  max-width: 400px;
  min-width: 300px;
  width: 100%;
}
.cart .cart__items .cart__item .ci__item span {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #587af5;
}
.cart .cart__items .cart__item .ci__item h4 {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 18px;
}
.cart .cart__items .cart__item .ci__item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-right: 15px;
}
.cart .cart__items .cart__item .ci__item select {
  width: 130px;
  height: 60px;
  border-radius: 55px;
  background-color: transparent;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  padding-right: 30px;
  box-sizing: border-box;
  border: 1px solid #000;
  font-size: 20px;
  text-align: center;
  border-top-left-radius: 0;
}

.cart .cart__total h4 {
  font-size: 30px;
  font-weight: 300;
  color: #fff;
  font-family: "Roboto", sans-serif;
}
.cart .cart__total ul {
  width: 100%;
  height: auto;
  margin-top: 50px;
  padding: 50px 0px;
}
.cart .cart__total .cart__total-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  mix-blend-mode: lighten;
}
.cart .cart__total ul li,
.cart .cart__total .ct__total {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 5px 0px;
}
.cart .cart__total ul li b,
.cart .cart__total ul li span {
  font-family: "Roboto", sans-serif;
}
.cart .cart__total .ct__total b,
.cart .cart__total .ct__total span {
  font-family: "Roboto", sans-serif;
}
.cart .cart__total .ct__total {
  padding-top: 20px;
  border-top: #e3beff 1px solid;
}
.cart .cart__total ul li span {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
}
.cart .cart__total ul li b {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}
.cart .cart__total .ct__total span {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
}
.cart .cart__total .ct__total b {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}
.cart .cart__total .button {
  margin-top: 50px;
  cursor: pointer;
  width: 100%;
}

.checkout {
  width: 100%;
  height: auto;
  padding: 40px 0px;
  background-color: #edf0fe;
}
.checkout .checkout__block {
  width: 100%;
  height: auto;
}
.checkout .checkout__block .checkout__steps {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.checkout .checkout__block .checkout__steps ul {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout .checkout__block .checkout__steps ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 60px;
  border-radius: 30px;
  border-top-left-radius: 0px;
  font-size: 20px;
  font-weight: 400;
  color: #000;
}
.checkout .checkout__block .checkout__steps ul li.active {
  border: 1px solid #000;
  background-color: #fff;
}
.checkout .checkout__block .checkout__steps ul li {
  font-family: "Roboto", sans-serif;
}
.checkout .checkout__block .checkout__steps ul li span {
  color: #587af5;
  margin-right: 5px;
  font-family: "Roboto", sans-serif;
}
.checkout .checkout__infos {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.checkout .checkout__infos .c__info {
  width: 70%;
  height: auto;
  padding-right: 40px;
}
.checkout .checkout__infos .c__info div {
  width: 100%;
  height: auto;
}
.checkout .checkout__infos .c__preview {
  width: calc(30% - 20px);
  height: auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 50px 50px;
}

.checkout .checkout__infos .c__info form {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
}
.checkout .checkout__infos .c__info form input,
.checkout .checkout__infos .c__info form select {
  width: calc(50% - 20px);
  margin: 10px;
  border-radius: 5px;
  background-color: #fff;
  border: 0px;
  padding-left: 15px;
  height: 60px;
  font-size: 16px;
}
.checkout .checkout__infos .c__info form .cb__sides {
  width: 100%;
  display: flex;

  flex-direction: row;
}
.checkout .checkout__infos .c__info form .cb__sides .cb__side {
  width: 50%;
  padding: 10px;
  box-sizing: border-box;
}
.checkout .checkout__infos .c__info form .cb__sides .cb__side .cbs__title {
  position: relative;
}
.checkout .checkout__infos .c__info form .cb__sides .cb__side .cbs__title h4,
.checkout .checkout__infos .c__info form .cb__sides .cb__side .cbs__title span {
  font-family: "Roboto", sans-serif;
}
.checkout .checkout__infos .c__info form .cb__sides .cb__side .cbs__title span {
  background-color: #4763d0;
  color: #fff;
  padding: 5px 10px;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 5px;
}
.checkout .checkout__infos .c__info form .cb__sides .cb__side .cbs__title h4 {
  font-weight: 500;
  margin-bottom: 15px;
  display: block;
}
.checkout
  .checkout__infos
  .c__info
  form
  .cb__sides
  .cb__side
  .cb__form
  .cb__group {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.checkout
  .checkout__infos
  .c__info
  form
  .cb__sides
  .cb__side
  .cb__form
  .cb__group
  input,
.checkout
  .checkout__infos
  .c__info
  form
  .cb__sides
  .cb__side
  .cb__form
  .cb__group
  select {
  width: 100%;
  font-family: "Roboto", sans-serif;
}
.checkout
  .checkout__infos
  .c__info
  form
  .cb__sides
  .cb__side
  .cb__form
  .cb__group
  label {
  padding-left: 20px;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}
.checkout .checkout__infos .c__info form .top span {
  font-size: 25px;
  padding-left: 20px;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  margin-bottom: 50px;
  display: block;
}
.checkout .checkout__infos .c__info form .top .cb__group {
  margin-bottom: 10px;
}
.checkout .checkout__infos .c__info form .top .cb__group label {
  padding-left: 20px;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}
.checkout .checkout__infos .c__info form .top input {
  width: 100%;
  font-family: "Roboto", sans-serif;
}

.checkout .checkout__infos .c__info form .button {
  background-color: #fff;
  margin-left: 10px;
  margin-top: 50px;
}
.checkout .checkout__infos .c__info form .button:hover {
  color: #fff;
  /* background-color: #fff; */
}

.checkout .checkout__infos .c__preview h4 {
  font-size: 26px;
  font-weight: 300;
  color: #587af5;
  font-family: "Roboto", sans-serif;

  margin-bottom: 30px;
}
.checkout .checkout__infos .c__preview .cp__item {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 25px 0px;
}
.checkout .checkout__infos .c__preview .cp__item .cpi {
  display: flex;
  align-items: center;
}
.checkout .checkout__infos .c__preview .cp__item .cpi img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-right: 15px;
}

.checkout .checkout__infos .c__preview .cp__item .cpi p {
  font-size: 15px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;

  color: #000;
}

.checkout .checkout__infos .c__preview .cp__item span {
  font-size: 16px;
  font-family: "Roboto", sans-serif;

  font-weight: 400;
  color: #587af5;
}

.checkout .checkout__infos .c__preview ul {
  margin-top: 80px;
}
.checkout .checkout__infos .c__preview ul li {
  list-style: none;
  width: 100%;
  height: auto;
  padding: 20px 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout .checkout__infos .c__preview ul li:last-child {
  border: 0;
}
.checkout .checkout__infos .c__preview ul li b,
.checkout .checkout__infos .c__preview ul li span {
  font-family: "Roboto", sans-serif;
}
.checkout .checkout__infos .c__preview ul li b {
  color: #587af5;
  font-weight: 400;
}
.order__success {
  width: 100%;
  height: auto;
  padding: 50px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.order__success svg {
  width: 120px;
  height: 120px;
  object-fit: contain;
  color: green;
}
.order__success h2 {
  font-size: 30px;
  font-weight: 400;
  color: #000;
  margin-top: 20px;
}
.order__success p {
  font-size: 16px;
  font-weight: 300;
  color: #000;
  margin-top: 10px;
}
.order__success a {
  margin-top: 50px;
}
@media screen and (max-width: 1680px) {
  .container {
    padding: 0px 20px;
  }
}
@media screen and (max-width: 1360px) {
  .services .services__list .services__item {
    width: 50%;
    height: 720px;
  }
  .services .services__list .services__item .services__content {
    padding: 40px 80px;
  }

  .extra__banner {
    padding: 100px 0px;
  }
  .extra__banner .eb__block img {
    max-width: 100%;
  }

  .news .news__list .news__item .news__image .news__hover .nh__content {
    padding: 60px 25px;
  }
  .news .news__list .news__item .news__content {
    padding: 60px 25px;
  }
  .news .button {
    width: 250px !important;
    height: 45px !important;
  }
  .news .button span {
    font-size: 14px !important;
  }
}
@media screen and (max-width: 1140px) {
  .hero {
    height: 100vh;
  }
  .hero .hero__content .hc__block h3 {
    font-size: 80px;
  }
  .hero .hero__content .hc__block h3:hover span::after {
    height: 90px;
  }

  .newsletter {
    padding: 140px 0px;
  }

  .footer .footer__block .footer__info {
    padding-right: 20px;
  }

  .nav {
    padding: 20px 0px;
    overflow-y: auto;
  }
  .nav .container {
    padding: 0px;
  }
  .nav .nav__head {
    padding: 0px 20px;
  }
  .nav .nav__block {
    padding-top: 0px;
    flex-wrap: wrap;
  }
  .nav .nav__block .nav__left {
    width: 100%;
  }
  .nav .nav__block .nav__left .nav__items .nav__item {
    width: 100%;
    max-width: 100%;
    height: 160px;
  }
  .nav .nav__block .nav__left .nav__items .nav__item img:first-child {
    object-position: top;
  }
  .nav .nav__block .nav__left .nav__items .nav__item .ni__content h4 {
    font-size: 30px;
  }
  .nav .nav__block .nav__right {
    width: 100%;
    padding-left: 0px;
    padding-top: 50px;
  }
  .nav .nav__block .nav__right ul li {
    height: 80px;
    padding: 0px 20px;
  }
  .nav .nav__block .nav__right ul li .nr__hover {
    display: none;
  }
  .nav .nav__block .nav__right ul li:hover .nr__hover {
    display: none;
  }
  .nav .nav__block .nav__right ul li .nr__button {
    width: 100%;
    position: relative;
    top: 0px;
    transform: unset;
    padding: 0px;
    display: block;
  }
  .nav .nav__block .nav__right ul li:hover .nr__button {
    border: 0px;
  }
  .nav .nav__block .nav__right ul li:hover .nr__button::after {
    display: none;
  }
  .nav .nav__block .nav__right ul li:hover .nr__button::before {
    display: none;
  }
  .nav .nav__block .nav__right ul li:hover .nr__button img {
    display: none;
  }
  .nav .nav__block .nav__right .nr__socials {
    justify-content: flex-start;
  }

  .news .news__control .nc__arrows {
    display: none;
  }
  .news .news__control .button {
    width: 280px !important;
  }
  .news .news__list {
    flex-wrap: wrap;
  }
  .news .news__list .news__item {
    width: 100%;
  }
  .news .news__list .news__item .news__image {
    height: 300px;
  }
  .news .news__list .news__item .news__image .ni__main {
    object-position: top;
  }
  .news .news__list .news__item .news__image .nh__content a {
    margin-top: 30px;
  }
  .cart .cart__block {
    flex-wrap: wrap;
  }
  .cart .cart__items {
    width: 100%;
    padding-right: 0px;
  }
  .cart .cart__total {
    width: 100%;
    overflow: hidden;
    margin-left: 0px;
    margin-top: 50px;
    min-width: 300px;
  }
  .cart .cart__items .cart__item {
    flex-wrap: wrap;
  }
  .checkout .checkout__infos {
    flex-wrap: wrap;
  }
  .checkout .checkout__infos .c__info {
    width: 100%;
    padding-right: 0px;
  }
  .checkout .checkout__infos .c__preview {
    width: 100%;
    min-width: 300px;
    padding: 30px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 960px) {
  .footer .footer__block {
    flex-wrap: wrap;
  }
  .footer .footer__block .footer__info {
    width: 100%;
    padding-right: 0px;
  }
  .footer .footer__block .footer__list,
  .footer .footer__block .footer__social {
    width: 50%;
  }

  .news .news__title h3 {
    font-size: 46px;
  }
  .news .news__list .news__item .news__content h5 {
    font-size: 16px;
  }
  .news .news__list .news__item .news__image .nh__content h4 {
    font-size: 16px;
    line-height: 24px;
  }
  .product .product__block .pb__top {
    flex-wrap: wrap;
  }
  .product .product__block .pb__image {
    width: 100%;
  }
  .product .product__block .pb__content {
    width: 100%;
    padding: 20px 0px;
  }
}
@media screen and (max-width: 780px) {
  .services .services__list .services__item {
    width: 100%;
    height: 550px;
  }
  .checkout .checkout__infos .c__info form .cb__sides {
    flex-direction: column;
  }
  .checkout .checkout__infos .c__info form .cb__sides .cb__side {
    width: 100%;
  }
  .services .services__list .services__item .services__images .si__main {
    object-position: top;
  }
  .services .services__list .services__item .services__content {
    padding: 40px 20px;
  }
  .services .services__list .services__item .services__content .sc__title h4 {
    font-size: 30px;
  }
  .services .services__list .services__item .services__content .sc__title img {
    width: 40px;
    height: 40px;
  }
  .services .services__list .services__item .services__content p {
    font-size: 16px;
    line-height: 24px;
  }
  .shop .shop__items {
    flex-wrap: wrap;
  }
  .shop .shop__items .shop__item {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 740px) {
  .newsletter .newsletter__block .nb__title h3 {
    font-size: 46px;
  }
  .newsletter .newsletter__block .nb__form form {
    overflow: visible;
    border-bottom: 2px solid #b7fdc7;
  }
  .newsletter .newsletter__block .nb__form form::after {
    display: none;
  }
  .newsletter .newsletter__block .nb__form form button {
    top: 150%;
    left: 0px;
    right: auto;
  }
}
@media screen and (max-width: 640px) {
  .shop .shop__title {
    flex-direction: column;
  }
  .filter-sidebar {
    width: 100%;
  }
  .shop .shop__title h3 {
    text-align: center;
    font-size: 40px;
  }
  .checkout .checkout__block .checkout__steps ul {
    flex-wrap: wrap;
  }
  .order__success h2 {
    padding: 0px 20px;
    text-align: center;
  }
  .checkout .checkout__block .checkout__steps ul li {
    margin-bottom: 20px;
  }

  .checkout .checkout__infos .c__info form input,
  .checkout .checkout__infos .c__info form select {
    width: 100%;
    margin: 10px 0px;
  }
  .header .header__block .header__menu .h__cart svg {
    width: 35px;
    height: 35px;
  }
  .header .header__block .header__menu .h__cart span {
    top: -10px;
    right: 0;
  }
  .header .header__block .header__menu .h__cart {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    margin: auto 0;
  }
  .shop .shop__items .shop__item {
    width: 100%;
    margin: 10px 0px;
  }
  .hero .header.fixed {
    height: 75px;
  }
  .hero .header.fixed .header__block .header__menu {
    margin-top: 30px;
  }
  .hero .header .header__block .header__logo img {
    max-width: 200px;
  }
  .hero .header .header__block .header__menu .hm__hamb {
    margin-top: -20px;
  }
  .hero .header .header__block .header__menu .hm__hamb span {
    width: 50px;
  }
  .hero .header .header__block .header__menu .hm__hamb span:last-child {
    width: 36px;
  }
  .hero .hero__content .hc__block h3 {
    font-size: 46px;
  }
  .hero .hero__content .hc__block h3:hover span::after {
    height: 60px;
  }
  .hero .hero__content .hc__block h4 {
    font-size: 46px;
  }
  .hero .hero__content .hc__block p {
    font-size: 16px;
  }
  .hero .hero__bottom .hb__block .hb__scroll {
    display: none;
  }

  .button {
    width: 250px;
    height: 45px;
  }
  .button span {
    font-size: 14px;
  }

  .banner .banner__block .banner__content h3 {
    font-size: 46px;
    line-height: 54px;
  }

  .custom__banner .cb__block .cb__left {
    position: relative;
    z-index: 2;
    width: 100%;
  }
  .custom__banner .cb__block .cb__left ul li {
    max-width: 100%;
  }
  .custom__banner .cb__block .cb__right {
    position: absolute;
    z-index: 1;
    max-width: 100%;
  }
  .custom__banner .cb__block .cb__right img {
    width: 100%;
    object-fit: contain;
  }
}
@media screen and (max-width: 560px) {
  .footer .footer__block .footer__info {
    padding-bottom: 50px;
  }
  .footer .footer__block .footer__info p {
    font-size: 16px;
    line-height: 28px;
  }
  .footer .footer__block .footer__list {
    width: 100%;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding-bottom: 50px;
    padding-top: 70px;
  }
  .footer .footer__block .footer__social {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    width: 100%;
    padding-top: 70px;
  }
  .footer .copy {
    flex-wrap: wrap;
    border: 0px;
    margin-top: 20px;
  }
  .footer .copy a {
    order: 1;
    padding-bottom: 20px;
    font-size: 10px;
    font-weight: 500;
    line-height: 11px;
  }
  .footer .copy p {
    padding-top: 20px;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    order: 2;
    font-size: 10px;
    font-weight: 500;
    line-height: 11px;
  }

  .nav .nav__head .nh__logo img {
    max-width: 200px;
  }
  .nav .nav__head .nh__close {
    margin-top: -20px;
  }
}

/*# sourceMappingURL=style.css.map */
/* Pagination styling */
.pagination-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.pagination.pagination-v2 {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
}

.pagination.pagination-v2 li a,
.pagination.pagination-v2 li span {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #d9d9d9;
  color: #1b1b1b;
  background: #ffffff;
  font-weight: 500;
  transition: all 0.2s ease;
}

.pagination.pagination-v2 li a:hover {
  border-color: #5b7cff;
  color: #5b7cff;
  box-shadow: 0 6px 16px rgba(91, 124, 255, 0.18);
}

.pagination.pagination-v2 li.active span {
  background: #5b7cff;
  border-color: #5b7cff;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(91, 124, 255, 0.3);
}

.pagination.pagination-v2 li a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(91, 124, 255, 0.25);
}

.shop__page {
  margin: 10px 0 20px;
  font-size: 16px;
  color: #1b1b1b;
}

.faq {
  padding: 80px 0;
}

.faq__title h3 {
  font-size: 40px;
  margin-bottom: 24px;
}

.faq__list {
  display: grid;
  gap: 16px;
}
.faq__list p strong,
.faq__list p,
.faq__list h2,
.faq__list h3,
.faq__list h3 a {
  font-family: "Roboto", sans-serif;
}
.faq__list h3 a {
  color: #4763d0;
}
.faq__item {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 20px;
  padding: 18px 22px;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  font-size: 22px;
  line-height: 1;
  color: #5b7cff;
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__item p {
  margin-top: 12px;
  color: #4a4a4a;
  line-height: 1.6;
}

.contact {
  padding: 80px 0;
}

.contact__title h3 {
  font-size: 40px;
  margin-bottom: 12px;
}

.contact__title p {
  color: #4a4a4a;
  max-width: 760px;
}

.contact__form {
  margin-top: 32px;
  display: grid;
  gap: 20px;
}

.contact__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact__form label {
  display: grid;
  gap: 10px;
  font-size: 15px;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  border: 1px solid #e2e2e2;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 16px;
  background: #ffffff;
}

.contact__form textarea {
  resize: vertical;
}

.contact__message {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .contact__row {
    grid-template-columns: 1fr;
  }
}

.price {
  font-weight: 500;
}

.price--old {
  text-decoration: line-through;
  color: #9a9a9a;
  margin-right: 8px;
}

.price--discount {
  color: #d12b2b;
  font-weight: 600;
}

.news__filter {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.news__filter select {
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  padding: 12px 14px;
  background: #ffffff;
  font-size: 15px;
  min-width: 220px;
}

.news__empty {
  padding: 40px 20px;
  text-align: center;
  color: #4a4a4a;
  width: 100%;
}

.policy {
  padding: 80px 0;
}

.policy__title h3 {
  font-size: 40px;
  margin-bottom: 12px;
}

.policy__title p {
  color: #4a4a4a;
  max-width: 780px;
}

.policy__grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.policy__card {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  padding: 20px 22px;
}

.policy__card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.policy__card p {
  color: #4a4a4a;
  line-height: 1.6;
}

.policy__footer {
  margin-top: 24px;
  color: #4a4a4a;
}

.links {
  padding: 80px 0;
}

.links__title h3 {
  font-size: 40px;
  margin-bottom: 12px;
  font-family: "Roboto", sans-serif;
}

.links__title p {
  color: #4a4a4a;
  max-width: 780px;
  font-family: "Roboto", sans-serif;
}
.links__card h4,
.links__card p,
.links__card span {
  font-family: "Roboto", sans-serif;
}

.links__grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.links__card {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  padding: 20px 22px;
  color: #1b1b1b;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.links__card span {
  color: #587af5;
  font-weight: 500;
}

.links__card:hover {
  border-color: #587af5;
  box-shadow: 0 10px 22px rgba(88, 122, 245, 0.15);
}

@media (max-width: 900px) {
  .policy__grid,
  .links__grid {
    grid-template-columns: 1fr;
  }
}

.product .product__block .pb__thumbs {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.product .product__block .pb__thumbs .thumb-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  max-width: 360px;
}

.product .product__block .pb__thumbs .thumb-track::-webkit-scrollbar {
  height: 6px;
}

.product .product__block .pb__thumbs .thumb-track::-webkit-scrollbar-thumb {
  background: #d7d7d7;
  border-radius: 999px;
}

.product .product__block .pb__thumbs .thumb {
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  background: #ffffff;
  padding: 4px;
  cursor: pointer;
}

.product .product__block .pb__thumbs .thumb img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
}

.product .product__block .pb__thumbs .thumb.is-active {
  border-color: #587af5;
  box-shadow: 0 0 0 2px rgba(88, 122, 245, 0.2);
}

.product .product__block .pb__thumbs .thumb-nav {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #e2e2e2;
  background: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #1b1b1b;
}

.product .product__block .pb__thumbs .thumb-nav:hover {
  border-color: #587af5;
  color: #587af5;
}
