/*============= ALIGNES ===============*/
:root {
  --g20-5: clamp(0.313rem, 0.125rem + 0.94vw, 1.25rem);
  --g20-10: clamp(0.625rem, 0.5rem + 0.63vw, 1.25rem);
  --g30-10: clamp(0.625rem, 0.375rem + 1.25vw, 1.875rem);
}
.g20-5 {
  gap: var(--g20-5);
}
.g20-10 {
  gap: var(--g20-10);
}
.g30-10 {
  gap: var(--g30-10);
}

.alignwide {
  width: 100%;
  padding: 60px 0;
}
.alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 1920px;
  padding: 60px 0;
}
.padding-top {
  padding-top: 120px;
}
.padding-bottom {
  padding-bottom: 120px;
}
.padding-top-none {
  padding-top: 0 !important;
}
.padding-bottom-none {
  padding-bottom: 0 !important;
}

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 100vw !important;
    max-width: unset;
  }
}
@media (max-width: 1220px) {
  .alignwide,
  .alignfull {
    padding: 30px 0;
  }
  .padding-top {
    padding-top: 60px;
  }
  .padding-bottom {
    padding-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .alignwide,
  .alignfull {
    padding: 20px 0;
  }
  .padding-top {
    padding-top: 40px;
  }
  .padding-bottom {
    padding-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .alignwide,
  .alignfull {
    padding: 15px 0;
  }
  .padding-top {
    padding-top: 30px;
  }
  .padding-bottom {
    padding-bottom: 30px;
  }
}
/* =========== BASE CONFIG =========== */

* {
  margin: 0;
  padding: 0;
  line-height: 125%;
  font-family: var(--font-family);
  color: var(--main-text-primary);
  box-sizing: border-box;
}
body {
  display: flex;
  flex-direction: column;
  width: auto;
  min-height: 100vh;
  margin: 0 auto;
  overflow-x: hidden;
  background: var(--background-primary);
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.container {
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.container-large {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}
::-webkit-scrollbar {
  width: 5px;
  background: var(--stroke);
}
::-webkit-scrollbar-thumb {
  width: 5px;
  background-color: var(--primary);
}
::selection {
  color: white;
  background: var(--primary);
  -webkit-text-fill-color: white;
}

a {
  position: relative;
  text-decoration: none;
  color: var(--main-text-primary);
  transition: all 0.3s ease-in;
}
a:hover {
  color: var(--primary);
}
span {
  background: var(--hover);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
}
svg,
svg path,
svg rect,
svg circle {
  transition: all 0.3s ease-in;
}
img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in;
}
/* script in footer.php */
/* .img-contain img {
  object-fit: contain;
}
.img-absolute img {
  position: absolute;
  top: 0;
  left: 0;
} */
strong,
strong * {
  font-weight: 800 !important;
}
table {
  font-size: 14px;
}
ol {
  gap: 5px;
  list-style-position: outside;
  padding-left: 20px;
}
ol li {
  padding-left: 5px;
}
ol li:not(:last-of-type) {
  margin-bottom: 10px;
}
ul li {
  /* display: flex; */
  position: relative;
  align-items: center;
  font-size: inherit;
  list-style-position: inside;
  list-style-type: none;
  height: fit-content;
  gap: 10px;
  padding-left: 20px;
}
ul li:not(:last-of-type) {
  margin-bottom: 10px;
}
ul li::before {
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  content: "";
  flex-shrink: 0;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  aspect-ratio: 1 / 1;
  border-radius: 100px;
  background: var(--primary);
}
@media (max-width: 768px) {
  ul li:not(:last-of-type),
  ol li:not(:last-of-type) {
    margin-bottom: 5px;
  }
}
@media (max-width: 576px) {
  ul {
    gap: 5px;
  }
}
.grampus-cookie-accept-button {
  width: fit-content;
  height: 40px;
  padding: 10px 20px;
  margin-left: auto;
  border-radius: 5px !important;
  border: none !important;
  background: var(--primary) !important;
  color: var(--background) !important;
  font-weight: 600;
}
@media (max-width: 700px) {
  .grampus-cookie-accept-button {
    width: 100%;
  }
}

.title-lim {
  max-width: 800px;
}
h2.wp-block-heading {
  margin: 20px 0;
}
h2.wp-block-heading,
h2.wp-block-heading * {
  /*font-size c 40 до 20 */
  font-size: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
  text-align: start;
}

h1,
h1 *,
.h1,
.h1 * {
  /*font-size c 57 до 22 */
  font-size: clamp(1.375rem, 0.938rem + 2.19vw, 3.563rem);
  font-weight: 500;
  line-height: 100%;
  color: var(--head-primary);
  /*margin-bottom c 40 до 20 */
  margin-bottom: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
}
h2,
h2 *,
.h2,
.h2 * {
  /*font-size c 48 до 20 */
  font-size: clamp(1.25rem, 0.9rem + 1.75vw, 3rem);
  font-weight: 600;
  line-height: 110%;
  color: var(--head-primary);
  /*margin-bottom c 40 до 20 */
  margin-bottom: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
}
h3,
h3 *,
.h3,
.h3 * {
  /*font-size c 32 до 16 */
  font-size: clamp(1rem, 0.8rem + 1vw, 2rem);
  font-weight: 600;
  line-height: 110%;
  color: var(--head-primary);
}
h4,
h4 *,
.h4,
.h4 * {
  /*font-size c 24 до 14 */
  font-size: clamp(0.875rem, 0.75rem + 0.63vw, 1.5rem);
  font-weight: 600;
  line-height: 110%;
  color: var(--head-primary);
}
h5,
h5 *,
.h5,
.h5 * {
  /*font-size c 20 до 14 */
  font-size: clamp(0.875rem, 0.8rem + 0.38vw, 1.25rem);
  font-weight: 600;
  line-height: 110%;
  color: var(--head-primary);
}
h6,
h6 *,
.h6,
.h6 * {
  /*font-size c 16 до 12 */
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
  font-weight: 600;
  line-height: 120%;
  color: var(--head-primary);
}
.numbers,
.numbers * {
  /*font-size c 72 до 20 */
  font-size: clamp(1.25rem, 0.6rem + 3.25vw, 4.5rem);
  font-weight: 500;
  line-height: 100%;
  color: var(--head-primary);
}

p {
  /*font-size c 16 до 12 */
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
  font-weight: 400;
  line-height: 135%;
}
.p1,
.p1 * {
  /*font-size c 20 до 14 */
  font-size: clamp(0.875rem, 0.8rem + 0.38vw, 1.25rem);
  font-weight: 400;
  line-height: 130%;
}
.p2,
.p2 * {
  /*font-size c 16 до 12 */
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
  font-weight: 400;
  line-height: 135%;
}
.p2-but,
.p2-but * {
  /*font-size c 16 до 12 */
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
  font-weight: 600;
  line-height: 100%;
  color: var(--head-primary);
}
.p2-menu,
.p2-menu * {
  /*font-size c 18 до 12 */
  font-size: clamp(0.75rem, 0.675rem + 0.38vw, 1.125rem);
  font-weight: 500;
  line-height: 100%;
}
.p3,
.p3 * {
  /* font-size: с 14 до 12; */
  font-size: clamp(0.75rem, 0.725rem + 0.13vw, 0.875rem);
  font-weight: 500;
  line-height: 120%;
}
.p4,
.p4 * {
  /* font-size: с 12 до 10; */
  font-size: clamp(0.625rem, 0.6rem + 0.13vw, 0.75rem);
  font-weight: 400;
  line-height: 140%;
}

.breadcrumbs {
  padding: 20px 0;
  font-weight: 400;
  /* 18 - 12 */
  font-size: clamp(0.75rem, 0.675rem + 0.38vw, 1.125rem);
  line-height: 130%;
  color: var(--background-thirdly);
}
.breadcrumbs span {
  position: relative;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: var(--main-text-primary);
  background: transparent;
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  pointer-events: all;
  transition: all 0.3s ease-in;
}
.breadcrumbs span .current-item {
  pointer-events: none;
}
.breadcrumbs span .current-item,
.breadcrumbs span .current-item span {
  background: var(--hover);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in;
}
.breadcrumbs span:hover {
  color: transparent;
}
.btn {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: fit-content;
  height: 50px;
  text-align: center;
  outline: none;
  border: unset;
  padding: 15px 25px;
  gap: 5px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  white-space: nowrap;
  color: var(--head-primary);
  border-radius: 5px;
  border: 1px solid rgba(46, 39, 194, 0.6);
  background: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
  overflow: hidden;
  transition: all 0.3s ease-in;
}
.btn span {
  background-clip: none;
  background: transparent;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  color: var(--head-primary);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  z-index: 2;
}
.btn:hover {
  border: 1px solid rgba(46, 39, 194, 0.6) !important;
  color: var(--head-primary) !important;
  box-shadow: 0 5px 20px 0 rgba(46, 39, 194, 0.5) !important;
}
.btn:before {
  content: "";
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--hover);
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease-in;
}
.btn:hover::before {
  opacity: 1;
}

.btn.first {
  border: 1px solid var(--primary);
  background: var(--gradient);
}
.btn.second {
  border: 1px solid rgba(240, 240, 240, 0.4);
  background: var(--head-primary);
}
.btn.second span {
  background: var(--hover);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in;
}
.btn.second:hover span {
  opacity: 0;
}
.btn.second::after {
  content: attr(data-text);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--background);
  background: var(--hover);
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease-in;
}
.btn.second:hover::after {
  opacity: 1;
}

@media (max-width: 1220px) {
  .btn {
    height: 40px;
    padding: 10px 20px;
    font-size: 14px;
  }
  .btn span {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .breadcrumbs {
    padding: 10px 0;
    gap: 5px;
  }
}
@media (max-width: 512px) {
  .btn {
    width: 100%;
    font-size: 12px;
  }
  .btn span {
    font-size: 12px;
  }
}

.tags-holder {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 30px;
}
.tag-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 10px;
  gap: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
.tag-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
@media (max-width: 1480px) {
  .tags-holder {
    gap: 5px 20px;
  }
}
@media (max-width: 1220px) {
  .tags-holder {
    gap: 5px 10px;
  }
}
@media (max-width: 992px) {
  .tag-item {
    padding: 5px;
    gap: 5px;
  }
  .tag-item__icon {
    width: 15px;
    height: 15px;
  }
}

.gradient-text::before {
  content: attr(data-text);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--hover);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease-in;
}
.gradient-text:hover::before {
  opacity: 1;
}

#main,
#primary {
  min-height: 30vh;
  flex-grow: 1;
  overflow-x: hidden;
}

/*============ HEADER =================*/

/* LOGO STYLE Start*/
.logo-holder {
  display: flex;
  width: 100%;
  max-width: 145px;
  height: auto;
  max-height: 30px;
}
.logo-holder > * {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
@media (max-width: 1480px) {
  .logo-holder {
    max-width: 120px;
    max-height: 25px;
  }
}
/* LOGO STYLE End*/

/* SOC STYLE Start*/
.soc-holder * {
  transition: all 0.3s ease-in;
}
.soc-holder {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.soc-holder .soc-icon:before {
  content: "";
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--hover);
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease-in;
}
.soc-holder .soc-icon:hover::before {
  opacity: 1;
}
.soc-holder .soc-icon {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  border: 1px solid var(--primary);
  background: var(--gradient);
  overflow: hidden;
  flex-shrink: 0;
}
#mobile-mnu .soc-icon {
  width: 40px !important;
  height: 40px !important;
}
.soc-holder .soc-icon svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
  z-index: 2;
}
#mobile-mnu .soc-icon svg {
  width: 20px !important;
  height: 20px !important;
}
.soc-holder .soc-icon:hover,
#mobile-mnu .soc-icon:hover {
  /* border: 1px solid rgba(46, 39, 194, 0.6); */
  box-shadow: 0 5px 20px 0 rgba(46, 39, 194, 0.5);
}
.soc-holder .soc-icon:hover svg path {
  fill: var(--background);
}

@media (max-width: 1220px) {
  .soc-holder {
    gap: 5px;
  }
  .soc-holder .soc-icon {
    width: 40px;
    height: 40px;
  }
  .soc-holder .soc-icon svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 620px) {
  .soc-holder {
    gap: 5px;
  }
  .soc-holder .soc-icon {
    width: 30px;
    height: 30px;
  }
  .soc-holder .soc-icon svg {
    width: 16px;
    height: 16px;
  }
}
/* SOC STYLE End*/

/* EMAILS Start */
.emails-holder {
  display: flex;
  flex-direction: column;
  width: fit-content;
  gap: 10px;
}
.emails-holder .email {
  position: relative;
  width: fit-content;
  white-space: nowrap;
}
.emails-holder .email:hover {
  color: var(--primary);
}
/* EMAILS End */

/* PHONE STYLE Start*/
.phones-holder {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.phone {
  position: relative;
  width: fit-content;
  white-space: nowrap;
}
.phone:hover {
  color: var(--primary);
}
.phone::before {
  justify-content: end;
  opacity: 0;
}
.phone:hover::before {
  opacity: 1;
}
/* PHONE STYLE End*/

#header {
  display: flex;
  position: sticky;
  justify-content: center;
  top: 0;
  width: 100%;
  z-index: 99;
}
#header .container-large {
  z-index: 1;
}
#header .header-filter {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}
#header ul li::before {
  display: none;
}
#header .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 20px 20px 40px;
  gap: 20px;
}

#header .connection-holder {
  display: flex;
  align-items: center;
  padding: 10px 10px 10px 20px;
  gap: 30px;
  border-radius: 5px;
  border: 1px solid var(--background-secondary);
}
#header .phones-holder {
  display: flex;
  flex-direction: row;
  gap: 0;
}
#header .phones-holder .phone:not(:first-of-type) {
  padding-left: 20px;
  margin-left: 20px;
  border-left: 1px solid var(--background-thirdly);
}
#header .connection-items {
  display: flex;
  align-items: center;
  gap: 10px;
}

#header .menu-holder {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

#header .header-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  list-style: none;
}

#header .header-menu li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  margin: 0;
}
#header .header-menu li:first-of-type {
  padding-left: 0 !important;
}
#header .header-menu li:last-of-type {
  padding-right: 0 !important;
}
#header .header-menu li:not(:first-of-type) {
  border-left: 1px solid var(--background-thirdly);
}
#header .header-menu li a {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  /*font-size c 18 до 12 */
  font-size: clamp(0.75rem, 0.675rem + 0.38vw, 1.125rem);
  line-height: 120%;
  color: var(--main-text-primary);
  flex-wrap: nowrap;
  /* white-space: nowrap; */
  gap: 5px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease-in;
}
#header .header-menu li a::before {
  justify-content: start;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease-in;
}
#header .header-menu li:hover > a::before,
#header .header-menu li.active > a::before {
  opacity: 1;
}
#header .header-menu li:hover > a {
  color: var(--background-primary);
}
/* #header .header-menu li a {
  opacity: 0;
} */
#header .header-menu li > a:hover,
#header .header-menu li.active > a {
  color: var(--head-secondary);
}

#header .header-menu .nav-menu-element.has-childs > a::after {
  content: "";
  display: block;
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/arrow-menu.svg);
  transition: all 0.3s ease-in;
}
#header .header-menu .nav-menu-element.has-childs:hover > a::after {
  background-image: url(../images/arrow-menu-gradient.svg);
  transform: rotate(-180deg);
}
#header .header-menu .nav-menu-element.has-childs.active > a::after {
  background-image: url(../images/arrow-menu-gradient.svg);
}

#header .header-menu .sub-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  width: max-content;
  height: max-content;
  max-width: 360px;
  left: 30px;
  padding: 10px 20px;
  gap: 5px;
  opacity: 0;
  visibility: hidden;
  cursor: default;
  border-radius: 10px;
  background: var(--gradient);
  transform: translate(0, 20px);
  transition-delay: 0.15s;
  transition: all 0.3s ease-in;
  z-index: 100;
}
#header .header-menu .sub-menu:before {
  content: "";
  position: absolute;
  top: -20px;
  left: -30px;
  width: 100%;
  height: 100%;
}
#header .header-menu > .nav-menu-element.has-childs:hover .sub-menu,
#header .header-menu > .nav-menu-element.has-childs:active .sub-menu {
  opacity: 1;
  visibility: visible;
}
#header .header-menu .sub-menu li {
  display: flex;
  justify-content: start;
  width: 100%;
  height: auto;
  padding: 0;
  border: none;
}
#header .header-menu .sub-menu li a {
  position: relative;
  width: 100%;
  height: fit-content;
  padding: 10px 0;
}
#header .header-menu .sub-menu li > a::after {
  content: "";
  display: block;
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/arrow-submenu.svg);
  transition: all 0.3s ease-in;
}
#header .header-menu .sub-menu li:hover > a::after {
  background-image: url(../images/arrow-submenu-gradient.svg);
  transform: rotate(-180deg);
}
#header .header-menu .sub-menu li.active > a::after {
  background-image: url(../images/arrow-submenu-gradient.svg);
}
#header .header-menu .sub-menu li:not(:last-of-type) a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#header .burger.open_menu {
  display: none;
  flex-direction: column;
  background-color: transparent;
  height: 30px;
  width: 30px;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
#header .burger.open_menu span {
  background: var(--primary);
  background-clip: border-box;
  pointer-events: none;
  width: 24px;
  height: 2px;
}
#header .burger.open_menu.clicked {
  background-color: var(--white);
}

@media (max-width: 1660px) {
  #header .header-wrapper {
    padding: 10px 15px;
  }
  #header .connection-holder {
    padding: 5px 5px 5px 10px;
    gap: 20px;
  }
  #header .header-menu li {
    padding: 0 15px;
  }
  #header .phones-holder .phone:not(:first-of-type) {
    padding-left: 15px;
    margin-left: 15px;
  }
}
@media (max-width: 1480px) {
/*   #header .soc-holder {
    display: none;
  } */
  #header .phones-holder {
    flex-direction: column;
    gap: 5px;
  }
  #header .phones-holder .phone:not(:first-of-type) {
    padding-left: 0;
    margin-left: 0;
    border: unset;
  }
}
@media (max-width: 1280px) {
  #header .header-menu li {
    padding: 0 10px;
  }
}
@media (max-width: 1220px) {
  #header .menu-holder {
    display: none;
  }
  #header .burger.open_menu {
    display: flex;
  }
}
@media (max-width: 768px) {
  #header .header-wrapper {
    gap: 10px;
  }
  #header .connection-holder {
    gap: 15px;
  }
}
@media (max-width: 620px) {
  #header .btn {
    display: none;
  }
  #header .connection-items {
    order: -1;
  }
  #header .soc-holder {
	flex-wrap: nowrap;
  }
}
@media (max-width: 512px) {
  #header .connection-holder {
	padding: 5px;
    gap: 10px;
  }
}
@media (max-width: 360px) {
  #header .soc-holder .soc-icon {
	width: 25px;
	height: 25px;
  }
  #header .soc-holder .soc-icon svg {
	width: 12px;
	height: 12px;
  }
  #header .phones-holder .phone {
	font-size: 11px;
  }
}
/*================ MOBILE MNU Start =============*/

#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  gap: 15px;
  background: var(--background-secondary);
  padding: 20px;
  overflow-y: auto;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
}
#header #mobile-mnu.opened {
  transform: translateX(0);
}
#header #mobile-mnu #close-mnu {
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
#header #mobile-mnu #close-mnu svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#header #mobile-mnu #close-mnu svg path {
  fill: var(--primary);
}
#header #mobile-mnu #close-mnu:hover svg path {
  opacity: 0.7;
}
#header #mobile-mnu .logo-holder {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  width: 100%;
  max-width: none;
  margin: 0;
  gap: 10px;
  padding-right: 30px;
}
#header #mobile-mnu .logo-holder > * {
  width: fit-content;
}
#header #mobile-mnu .soc-holder {
  display: flex;
}
#header #mobile-mnu .menu {
  list-style-type: none;
  gap: 0;
}
#header #mobile-mnu .menu li {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-left: 0;
}
#header #mobile-mnu .menu li:not(:last-of-type) {
  margin-bottom: 10px;
}
#header #mobile-mnu .menu li a {
  display: flex;
  position: relative;
  align-items: center;
  width: fit-content;
  color: var(--head-primary);
}
#header #mobile-mnu .menu li a::before {
  content: none;
}
#header #mobile-mnu .menu .sub-menu {
  display: none;
}
#header #mobile-mnu a,
#header #mobile-mnu p,
#header #mobile-mnu .time-work__text {
  font-size: 14px;
  line-height: 120%;
  font-weight: 400;
  color: var(--head-primary);
}
#header #mobile-mnu .item-holder,
#header #mobile-mnu .item-holder__value {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#header #mobile-mnu .item-holder__title {
  font-size: 12px;
  line-height: 120%;
  font-weight: 400;
  color: var(--main-text-primary);
}
#header #mobile-mnu .btn-holder .btn {
  display: flex;
  width: 100%;
}
/*================ MOBILE MNU End =============*/

/*============ FOOTER Start ===============*/
#footer {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border-radius: 10px 10px 0 0;
  margin-top: 50px;
}
#footer::before {
  content: "";
  display: flex;
  position: absolute;
  top: -150%;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 250%;
  background: var(--gradient);
  pointer-events: none;
  z-index: -1;
}
.error-page ~ #footer::before,
main:has(.requisites-block) ~ #footer::before {
  top: auto;
  height: 80%;
}
.error-page ~ #footer .footer-top,
main:has(.requisites-block) ~ #footer .footer-top {
  border-top: none;
}
@media (max-width: 1220px) {
  #footer {
    margin-top: 40px;
  }
}
@media (max-width: 992px) {
  #footer {
    margin-top: 20px;
  }
}
/* .error-page ~ #footer {
  margin-top: 0;
} */
#footer ul li {
  padding: 0;
}
#footer ul li::before {
  display: none;
}

#footer .footer-top {
  display: flex;
  position: relative;
  justify-content: space-between;
  width: 100%;
  padding: 60px 0;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#footer .left-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

#footer .menu-holder {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
#footer .menu__title {
  color: var(--head-primary);
}
#footer .menu {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}
#footer .menu .soc-holder {
  margin-top: 10px;
}
#footer .menu li {
  display: flex;
  margin: 0;
  padding: 0;
}
#footer .menu li a {
  /* 18 - 12 */
  font-size: clamp(0.75rem, 0.675rem + 0.38vw, 1.125rem);
}
#footer .requisites-holder {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: fit-content;
  gap: 10px;
}

#footer .footer-bottom {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 30px 0;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#footer .dev {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--main-text-primary);
}
#footer .dev:hover {
  color: var(--background);
}
#footer .dev .glogo {
  width: 111px;
  height: 18px;
  mask-image: url(../images/gmask.png);
  mask-origin: border-box;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: var(--main-text-primary);
  position: relative;
  cursor: pointer;
  display: inline-flex;
  vertical-align: sub;
  overflow: hidden;
}
#footer .dev .glogo:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: red;
  transform: translateX(100%);
  transition: transform 0.7s ease-in;
  background: var(--hover) repeat-x 0 0;
  animation-duration: 5s;
  animation-name: slideUp;
  animation-iteration-count: infinite;
  animation-delay: 3s;
}
#footer .dev .glogo:hover:before {
  animation-name: unset;
  transform: translateX(0);
}
#footer .privacy-holder {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--main-text-primary);
}
#footer .privacy-holder:hover {
  color: var(--background);
}

@keyframes slideUp {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 1480px) {
  #footer .footer-top {
    padding: 40px 0;
    gap: 20px;
  }
}
@media (max-width: 1220px) {
  #footer .menu-holder {
    gap: 15px;
  }
  #footer .requisites-holder {
    gap: 5px;
  }
}
@media (max-width: 992px) {
  #footer .footer-top,
  #footer .footer-bottom {
    padding: 20px 0;
  }
}
@media (max-width: 768px) {
  #footer .footer-bottom {
    flex-direction: column;
    padding: 10px 0;
    gap: 10px;
  }
  #footer .dev {
    flex-direction: row;
    align-items: end;
    gap: 5px;
  }
}
@media (max-width: 620px) {
  #footer .footer-top {
    flex-wrap: wrap;
  }
  #footer .menu-holder {
    flex: auto;
    width: calc((100% - 40px) / 3);
  }
  #footer .menu-holder.contacts {
    width: 100%;
  }
  #footer .menu-holder .phones-holder {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
}
@media (max-width: 480px) {
  #footer .menu-holder {
    width: 100%;
  }
  #footer .menu-holder {
    gap: 10px;
  }
  #footer .footer-top .menu.nav {
    max-width: none;
    flex-direction: row;
    flex-wrap: wrap;
  }
  #footer .footer-top .menu.nav li {
    min-width: auto;
  }
}
/*============ FOOTER End ===============*/

/*============ ERROR PAGE Start ===============*/

#main.error-page {
  overflow: visible;
}
.error-page {
  display: flex;
  flex-direction: column;
  position: relative;
}
.error-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 910px;
  min-height: fit-content;
  flex-grow: 1;
  padding: 0;
}
.error-wrapper .error-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 40px 15px;
  flex-grow: 1;
}
.error-wrapper .error-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 15px;
}
.error-wrapper .error-text__title {
  margin: 0;
  text-align: center;
}
.error-wrapper .error-text__subtitle {
  text-align: center;
  max-width: 500px;
  color: var(--head-primary);
}
.error-wrapper .error-text__btn {
  margin-top: 15px;
}
.error-img {
  position: absolute;
  top: -110px;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: auto;
  z-index: -1;
}
.error-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.error-img__filter {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    360deg,
    #0f0f0f 0%,
    rgba(15, 15, 15, 0.8) 62.5%,
    #0f0f0f 100%
  );
}

@media (max-width: 620px) {
  .error-wrapper .error-text {
    gap: 10px;
  }
  .error-wrapper .error-text__btn {
    margin-top: 10px;
  }
}
@media (max-width: 512px) {
  .error-wrapper .error-content {
    padding: 20px 15px;
  }
}

/*============ ERROR page End===============*/

/* ============== MODAL Start ============= */

.theme-modal {
  display: none;
  position: relative;
  gap: 30px;
}
.theme-modal .text-holder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}
.theme-modal .btn {
  width: 100%;
}
#modal-success.theme-modal .subtitle {
  max-width: 480px;
}

@media (max-width: 768px) {
  .theme-modal .text-holder {
    gap: 10px;
  }
  .theme-modal .title {
    padding: 0 20px;
  }
}

.fancybox__content > .f-button.is-close-btn {
  top: 20px !important;
  right: 20px !important;
  width: 14px !important;
  height: 14px !important;
  opacity: 1 !important;
  --f-button-border-radius: 0 !important;
  --f-button-color: transparent !important;
  --f-button-outline-color: transparent !important;
  --f-button-bg: transparent !important;
  --f-button-active-bg: transparent !important;
  --f-button-hover-bg: transparent !important;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  transition: all 0.3s ease-in !important;
}
.fancybox__content > .f-button.is-close-btn svg {
  width: 100% !important;
  height: 100% !important;
  stroke: none !important;
}
.fancybox__content > .f-button.is-close-btn svg path {
  fill: var(--background) !important;
  stroke: var(--background-secondary) !important;
  stroke-width: 1.5px !important;
  transition: all 0.3s ease-in !important;
}
.fancybox__content > .f-button.is-close-btn:hover svg path {
  fill: var(--primary) !important;
}
.fancybox__content {
  overflow: hidden !important;
}
.theme-modal.fancybox__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 620px;
  height: fit-content;
  padding: 40px;
  border-radius: 10px;
  background: var(--background-secondary);
  overflow: auto;
}
.fancybox__html5video,
.fancybox__iframe {
  outline: none;
  overflow: hidden;
}
.fancybox__backdrop {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(15, 15, 15, 0.5) !important;
}
.fancybox__slide {
  padding: 60px 5px !important;
}
.fancybox__slide:has(.theme-modal) {
  padding: 0 !important;
}
.fancybox__toolbar__column svg circle,
.fancybox__toolbar__column svg path {
  stroke: white;
}
button {
  border: unset;
}
button,
input {
  outline: none;
}

@media (max-width: 1100px) {
  .theme-modal.fancybox__content {
    max-width: 510px;
    padding: 30px;
  }
  .fancybox__content > .f-button.is-close-btn {
    top: 15px !important;
    right: 15px !important;
    width: 15px !important;
    height: 15px !important;
  }
}
@media (max-width: 768px) {
  .fancybox__content > .f-button.is-close-btn {
    top: 10px !important;
    right: 10px !important;
  }
  .theme-modal {
    gap: 20px;
  }
  .theme-modal.fancybox__content {
    max-width: 420px;
    padding: 20px;
  }
}
@media (max-width: 420px) {
  .theme-modal.fancybox__content {
    padding: 20px 15px;
  }
}
/* ============== MODAL End ============= */

/* ============== SWIPER Start ============= */

.swiper {
  width: 100%;
  overflow: hidden !important;
}
.swiper-holder .swiper-slide {
  width: 100%;
  height: auto !important;
}
.swiper-additionals {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  gap: 15px;
  margin-top: 30px;
}
.swiper-additionals:has(.swiper-button-lock) {
  display: none;
}
.swiper-pagination {
  display: flex !important;
  align-items: center !important;
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
  width: fit-content !important;
  gap: 5px !important;
}
.swiper-pagination-bullet {
  position: relative;
  width: 10px !important;
  height: 5px !important;
  opacity: 1 !important;
  margin: 0 !important;
  border-radius: 1px !important;
  border: unset !important;
  background: var(--stroke) !important;
  transition: 0.3s ease-in !important;
}
.swiper-pagination-bullet-active,
.swiper-pagination-bullet:hover {
  background: var(--primary) !important;
}
.swiper-pagination-bullet-active {
  width: 20px !important;
  background: var(--primary) !important;
}

.swiper-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}
.swiper-btn-prev,
.swiper-btn-next {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.3s ease-in;
  overflow: hidden;
}
.swiper-btn-prev svg {
  scale: -1;
}
.swiper-btn-prev svg,
.swiper-btn-next svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  z-index: 2;
}
.swiper-btn-prev svg path,
.swiper-btn-next svg path {
  stroke: var(--head-primary);
  transition: all 0.3s ease-in;
}
.swiper-button-disabled {
  pointer-events: none;
  border-color: var(--background-secondary) !important;
  background: var(--background-secondary) !important;
}
.swiper-button-disabled svg path {
  stroke: var(--main-text-secondary);
}

.swiper-btns-holder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 10px;
}
.swiper-btns-holder .swiper-additionals {
  width: fit-content;
  justify-content: start;
  margin-top: 0;
  margin-left: auto;
}

@media (max-width: 768px) {
  .swiper-btns-holder,
  .swiper-additionals {
    margin-top: 20px;
  }
  .swiper-btns {
    gap: 20px;
  }
  .swiper-btn-prev,
  .swiper-btn-next {
    width: 40px;
    height: 40px;
  }
  .swiper-btn-prev svg,
  .swiper-btn-next svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
}
@media (max-width: 512px) {
  .swiper-pagination {
    display: none !important;
  }
  .swiper-btns-holder {
    flex-direction: column-reverse;
    align-items: start;
  }
}

/* ============== SWIPER End ============= */

/* ============== PAGINATIONS PAGE Start ============= */
.page-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 15px;
  margin-top: 40px;
}
.page-navigation .nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.page-navigation .nav-links .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: var(--main-text-primary);
  /* 18 - 12*/
  font-size: clamp(0.75rem, 0.675rem + 0.38vw, 1.125rem);
  font-weight: 500;
  line-height: 120%;
  transition: all 0.3s ease-in;
}
.page-navigation .nav-links .page-numbers.dots {
  padding: 0;
  color: var(--main-text-primary);
  pointer-events: none;
}

@media (max-width: 768px) {
  .page-navigation {
    margin-top: 20px;
  }
}
/* ============== PAGINATIONS PAGE End ============= */

/* ============== FORM STYLE Start ============= */

.form * {
  transition: all 0.3s ease-in;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.form-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-bot {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1220px) {
  .form {
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .form {
    gap: 10px;
  }
  .form-top {
    gap: 5px;
  }
}
.form input,
.form textarea,
.form select,
.form select::placeholder,
.form input::placeholder,
.form textarea::placeholder,
.form .input-wrapper .label,
.form .form-input .file-label {
  font-weight: 400;
  /* 16 - 12 */
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
  line-height: 135%;
  color: var(--main-text-secondary);
}
.form input,
.form textarea,
.form select,
.form .form-input {
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  padding: 22px 22px 5px 22px;
  outline: none;
  color: var(--head-secondary);
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid rgba(246, 246, 246, 0.01);
  background: rgba(246, 246, 246, 0.1);
}
.form textarea {
  height: 100px;
  padding: 22px;
  resize: none;
}
.form select {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  align-items: center;
  padding: 10px 22px !important;
  color: var(--main-text-secondary);
}
.form .select-holder::before {
  content: "";
  display: flex;
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url(../images/select-before.svg);
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 2;
  pointer-events: none;
  transition: all 0.3s ease-in;
}
.form .select-holder:hover::before {
  filter: brightness(0.2);
}
.form input::placeholder,
.form textarea::placeholder {
  color: var(--head-secondary);
  overflow: visible;
  opacity: 0;
  transition: all 0.3s ease-in;
}
.form input:focus::placeholder,
.form textarea:focus::placeholder {
  opacity: 1;
}
.form input:hover,
.form input:focus,
.form select:hover,
.form textarea:hover,
.form textarea:focus,
.form .form-input:hover {
  border: 1px solid var(--background);
  background: var(--background);
}
.form .input-wrapper {
  position: relative;
  width: 100%;
}
.form input:focus,
.form > input:not(:placeholder-shown) {
  outline: none;
}
.form .input-wrapper .label {
  position: absolute;
  top: 50%;
  left: 22px;
  transform: translate(0, -50%);
  pointer-events: none;
  transition: all 0.3s ease-in;
}
.form .input-wrapper .label,
.form .form-control.success:focus ~ .label,
.form .form-control.error:focus ~ .label {
  color: var(--main-text-secondary);
}
.form .input-wrapper:has(textarea) .label {
  top: 22px;
  transform: unset;
}
.form .input-wrapper input:focus ~ .label,
.form .input-wrapper > input:not(:placeholder-shown) ~ .label {
  top: 5px !important;
  transform: translate(0, 0) !important;
  font-size: 12px;
  line-height: 125%;
}
.form .input-wrapper textarea:focus ~ .label,
.form .input-wrapper > textarea:not(:placeholder-shown) ~ .label {
  display: none;
}
.form input:focus,
.form > input:not(:placeholder-shown) {
  outline: none;
}

.form .form-control.error,
.form .form-control.error ~ .label {
  border-color: var(--danger);
  color: var(--danger);
}
.form .form-control.success,
.form .form-control.success ~ .label {
  border-color: var(--success);
  color: var(--success);
}
.form .form-control.success:focus,
.form .form-control.error:focus {
  border-color: var(--main-text-primary);
  color: var(--head-secondary);
}

/* input-file start */
.form .form-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: fit-content;
  width: 100%;
  padding: 13px 22px !important;
  gap: 10px;
  cursor: pointer;
  overflow-y: auto;
}
.form .form-input .file {
  display: contents;
}
.form .form-input .file-label {
  color: var(--main-text-secondary);
}
.form .form-input.active .file-label {
  display: flex;
  height: 100%;
}
.form .form-input.active:hover .file-label {
  opacity: 1;
}
.form .form-input .file-icon {
  display: flex;
}
.form .form-input.active .file-icon {
  display: none;
}
.form .form-input .file-icon svg path {
  stroke: var(--head-primary);
}
.form .form-input:hover .file-icon svg path {
  stroke: var(--primary);
}

.form .form-input .file-remove__icon {
  display: flex;
  width: fit-content;
  height: fit-content;
  pointer-events: none;
  display: none;
  cursor: pointer;
}
.form .form-input .file-remove__icon svg {
  width: 15px;
  height: 15px;
}
.form .form-input.active .file-remove__icon {
  display: flex;
  pointer-events: all;
}
.form .form-input.active .file-remove__icon svg path {
  fill: var(--main-text-secondary);
  transition: all 0.3s ease-in;
}
.form .form-input.active:hover .file-remove__icon svg path {
  fill: var(--primary);
}
/* input-file end */

.form .btn {
  width: 100%;
}
.form .btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.form .privacy-policy,
.form .privacy-policy a {
  position: relative;
  width: fit-content;
  font-weight: 400;
  /* 14 - 10 */
  font-size: clamp(0.625rem, 0.575rem + 0.25vw, 0.875rem);
  line-height: 130%;
  color: var(--main-text-secondary);
}
.form .privacy-policy {
  position: relative;
  padding-left: 30px;
}
.form .privacy-policy a {
  text-decoration: underline;
  text-underline-offset: 2px;
  z-index: 2;
}
.form .privacy-policy a:hover {
  color: var(--background);
}
.form .privacy-policy::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid var(--main-text-secondary);
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background: transparent;
  transition: all 0.3s ease-in;
  box-sizing: border-box;
  pointer-events: none;
}
.form .privacy-policy::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  left: 4px;
  transform: translate(0, -50%);
  transition: all 0.3s ease-in;
  opacity: 0;
  background-image: url(../images/checkbox.svg);
  filter: brightness(0.9);
  z-index: 2;
  pointer-events: none;
}
.form .privacy-policy.active::after {
  opacity: 1;
}
.form input[type="checkbox"] {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
}
.form select option {
  color: var(--head-secondary);
}

@media (max-width: 768px) {
  .form input,
  .form textarea,
  .form select,
  .form .form-input {
    height: 40px;
    padding: 15px 15px 5px 15px;
  }
  .form .form-input {
    padding: 10px 15px !important;
  }
  .form select {
    padding: 10px 15px !important;
  }
  .form .input-wrapper .label {
    left: 15px;
  }
  .form .input-wrapper:hover .label,
  .form .input-wrapper input:focus ~ .label,
  .form .input-wrapper textarea:focus ~ .label,
  .form .input-wrapper > input:not(:placeholder-shown) ~ .label,
  .form .input-wrapper > textarea:not(:placeholder-shown) ~ .label {
    top: 3px !important;
    font-size: 10px;
  }
  .form textarea {
    height: 75px;
  }
  .form .input-wrapper:has(textarea) .label {
    top: 15px;
  }
}
@media (max-width: 620px) {
  .form input,
  .form textarea,
  .form select,
  .form .form-input,
  .form input::placeholder,
  .form textarea::placeholder,
  .form .input-wrapper .label {
    font-size: 12px;
  }
}
@media (max-width: 380px) {
  .form select option {
    font-size: 10px;
  }
}
/* ============== FORM STYLE End============= */

/* ============== MAINBANNER Start============= */

.mainbanner-block {
  position: relative;
  padding-top: 80px;
}
.mainbanner-block .content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 187px;
}
.mainbanner-block .text-side {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.mainbanner-block .text-holder {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.mainbanner-block .text-holder .title {
  margin-bottom: 0;
}
.mainbanner-block .text-holder .desc {
  max-width: 450px;
}
.mainbanner-block .connection {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 500px;
  padding: 5px;
  padding-right: 20px;
  gap: 10px 30px;
  border-radius: 5px;
  border: 1px solid var(--background-thirdly);
}
.mainbanner-block .connection .stock-el {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mainbanner-block .connection .stock-el__icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.mainbanner-block .connection .stock-el__icon img {
  width: 100%;
  height: 100%;
}
.mainbanner-block .connection .stock-el__icon__filter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  background: rgba(46, 39, 194, 0.5);
  z-index: -1;
}
.mainbanner-block .info-side {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 80px;
}
.mainbanner-block .advantages-holder {
  display: flex;
  flex-direction: column;
  width: 33%;
  max-width: 490px;
  gap: 20px;
}
.mainbanner-block .slides-holder {
  display: flex;
  align-items: end;
  width: 100%;
  gap: 40px;
}
.mainbanner-block .swiper-slide {
  opacity: 0 !important;
}
.mainbanner-block .swiper-slide-active {
  opacity: 1 !important;
}
.mainbanner-block .swiper-additionals {
  flex-wrap: nowrap;
}
.mainbanner-block .swiper-pagination {
  display: flex !important;
  width: 100% !important;
  height: 2px !important;
  border-radius: 100px !important;
  overflow: hidden !important;
  background: var(--background-thirdly) !important;
}
.mainbanner-block .swiper-pagination span {
  border-radius: 100px !important;
  overflow: hidden !important;
  background: var(--hover);
}
.mainbanner-block .advantage {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  gap: 20px;
}
.mainbanner-block .advantage__desc strong {
  color: var(--head-primary);
  font-weight: 600 !important;
}
.mainbanner-block .img-side {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 570px;
  height: auto;
  max-height: 100%;
  z-index: -1;
}
.mainbanner-block .img-side__filter {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(360deg, #0f0f0f 0%, rgba(15, 15, 15, 0) 100%);
  z-index: 1;
}
.mainbanner-block .img-side img {
  height: fit-content;
  object-position: bottom center;
  top: auto;
  bottom: 0;
}
.mainbanner-block .chars-holder {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 300px;
  gap: 10px;
}
.mainbanner-block .char-item {
  display: flex;
  width: 100%;
  height: fit-content;
  padding: 15px;
  gap: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
}
.mainbanner-block .char-item__count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 5px;
  border-radius: 5px;
  background: var(--hover);
  flex-shrink: 0;
  color: var(--head-primary);
}
.mainbanner-block .ellipse-liner {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: -260px;
  width: 750px;
  height: 750px;
  border-radius: 100%;
  filter: blur(300px);
  -webkit-backdrop-filter: blur(300px);
  background: rgba(46, 39, 194, 0.1);
  z-index: -1;
}
.mainbanner-block .ellipse-liner.right {
  left: auto;
  right: -260px;
  background: var(--gradient);
}

@media (max-width: 1480px) {
  .mainbanner-block {
    padding-top: 50px;
  }
  .mainbanner-block .content {
    gap: 130px;
  }
  .mainbanner-block .text-side {
    gap: 20px;
  }
  .mainbanner-block .connection {
    gap: 10px 20px;
  }
  .mainbanner-block .info-side {
    gap: 50px;
  }
  .mainbanner-block .slides-holder {
    gap: 20px;
  }
  .mainbanner-block .img-side__filter {
    height: 120px;
  }
}
@media (max-width: 1220px) {
  .mainbanner-block .content {
    gap: 20px;
  }
  .mainbanner-block .advantage {
    gap: 15px;
  }
}
@media (max-width: 992px) {
  .mainbanner-block .info-side {
    gap: 20px;
  }
  .mainbanner-block .img-side {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.2;
  }
  .mainbanner-block .img-side img {
    position: relative;
  }
  .mainbanner-block .advantages-holder,
  .mainbanner-block .chars-holder {
    max-width: none;
    width: 50%;
  }
}
@media (max-width: 680px) {
  .mainbanner-block {
    padding-top: 20px;
  }
  .mainbanner-block .info-side {
    flex-direction: column;
  }
  .mainbanner-block .advantages-holder,
  .mainbanner-block .chars-holder {
    width: 100%;
  }
  .mainbanner-block .advantages-holder,
  .mainbanner-block .advantage {
    gap: 10px;
  }
  .mainbanner-block .connection {
    width: 100%;
    max-width: none;
    padding-right: 5px;
  }
  .mainbanner-block .connection .btn {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .mainbanner-block .connection .stock-el__icon {
    width: 20px;
    height: 20px;
  }
  .mainbanner-block .chars-holder {
    gap: 5px;
  }
  .mainbanner-block .char-item {
    padding: 10px;
  }
  .mainbanner-block .char-item__count {
    width: 18px;
    height: 18px;
    border-radius: 3px;
  }
}
/* ============== MAINBANNER End ============= */

/* ============== BANNER Start ============= */

.banner-block {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 60px;
  padding-top: 0;
}
.banner-block .content {
  display: flex;
  width: 100%;
  gap: 30px;
}
.banner-block .text-side {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 40px;
  gap: 40px;
  border-radius: 10px;
  background: var(--gradient);
}
.banner-block .text-holder {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.banner-block .text-holder .tags-holder {
  gap: 5px 20px;
}
.banner-block .text-holder .title {
  margin-bottom: 0;
}
.banner-block .chars-holder {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 10px;
}
.banner-block .char-item {
  display: flex;
  width: calc((100% - 10px) / 2);
  max-width: 300px;
  height: auto;
  padding: 15px;
  gap: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
}
.banner-block .char-item__count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 5px;
  border-radius: 5px;
  background: var(--hover);
  flex-shrink: 0;
  color: var(--head-primary);
}
.banner-block .connection {
  display: flex;
  align-items: center;
  width: fit-content;
  max-width: 500px;
  padding: 5px;
  padding-right: 20px;
  gap: 10px 30px;
}
.banner-block .connection:has(.stock-el) {
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.banner-block .connection .stock-el {
  display: flex;
  align-items: center;
  gap: 10px;
}
.banner-block .connection .stock-el__icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.banner-block .connection .stock-el__icon img {
  width: 100%;
  height: 100%;
}
.banner-block .connection .stock-el__icon__filter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  background: rgba(46, 39, 194, 0.5);
  z-index: -1;
}
.banner-block .info-side {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 80px;
}
.banner-block .advantages-holder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: 20px 0;
}
.banner-block .advantage {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: auto;
  padding: 0 55px;
  gap: 20px;
}
.banner-block .advantage:not(:last-of-type)::after {
  content: "";
  display: flex;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 1px;
  height: 80%;
  max-height: 80px;
  background: var(--background-secondary);
}
.banner-block .advantage:first-of-type {
  padding-left: 0;
}
.banner-block .advantage:last-of-type {
  padding-right: 0;
}
.banner-block .advantage__desc strong {
  color: var(--head-primary);
  font-weight: 600 !important;
}
.banner-block .img-side {
  display: flex;
  position: relative;
  width: 70%;
  max-width: 620px;
  height: auto;
  max-height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 1480px) {
  .banner-block {
    gap: 40px;
  }
  .banner-block .content {
    gap: 20px;
  }
  .banner-block .text-side {
    padding: 30px;
    gap: 30px;
  }
  .banner-block .connection {
    gap: 10px 20px;
  }
  .banner-block .advantage {
    padding: 0 30px;
  }
}
@media (max-width: 1220px) {
  .banner-block .text-holder .tags-holder {
    gap: 5px 10px;
  }
}
@media (max-width: 992px) {
  .banner-block .text-side {
    padding: 20px;
  }
  .banner-block .char-item {
    padding: 10px;
  }
  .banner-block .advantages-holder {
    grid-template-columns: repeat(2, 1fr);
  }
  .banner-block .advantage {
    padding: 0;
  }
  .banner-block .advantage:nth-child(2n + 2)::after {
    content: none;
  }
  .banner-block .advantage:nth-child(2n + 1) {
    padding-right: 15px;
  }
  .banner-block .advantage:nth-child(2n + 2) {
    padding-left: 15px;
  }
}
@media (max-width: 768px) {
  .banner-block {
    gap: 20px;
  }
  .banner-block .content {
    flex-direction: column;
  }
  .banner-block .text-side {
    gap: 20px;
  }
  .banner-block .char-item {
    max-width: none;
  }
  .banner-block .img-side {
    width: 100%;
    max-width: none;
    height: 65vw;
    max-height: 400px;
  }
}
@media (max-width: 680px) {
  .banner-block .advantage {
    gap: 10px;
  }
  .banner-block .connection {
    flex-wrap: wrap;
    width: 100%;
    max-width: none;
    padding-right: 5px;
  }
  .banner-block .connection .btn {
    width: 100%;
  }
}
.quiz-block
  .quiz-item
  .quiz-item__input:checked
  + label
  .quiz-item__title::before {
  opacity: 0;
}

.quiz-block
  .quiz-item
  .quiz-item__input:checked
  + label
  .quiz-item__title::after {
  opacity: 1;
}
@media (max-width: 480px) {
  .banner-block .text-side {
    padding: 15px;
    gap: 15px;
  }
  .banner-block .connection .stock-el__icon {
    width: 20px;
    height: 20px;
  }
  .banner-block .chars-holder {
    gap: 5px;
  }
  .banner-block .char-item {
    width: 100%;
  }
  .banner-block .char-item__count {
    width: 18px;
    height: 18px;
    border-radius: 3px;
  }
  .banner-block .advantages-holder {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .banner-block .advantage {
    padding: 10px 0 !important;
  }
  .banner-block .advantage::after {
    content: "" !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    transform: translate(0, 0) !important;
    width: 70% !important;
    height: 1px !important;
  }
  .banner-block .advantage:nth-child(2n + 1) {
    padding-right: 15px;
  }
  .banner-block .advantage:nth-child(2n + 2) {
    padding-left: 15px;
  }
}

/* ============== BANNER End ============= */

/* ============== ARCHIVE WORKS Start ============= */

.works-container .works-wrapper {
  display: flex;
  flex-direction: column;
  padding-top: 0;
}
.works-container .works-holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.works-container .tabs-holder {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin-bottom: 40px;
}
.works-container .tabs-holder .tab-btn.active {
  background: var(--hover);
  color: var(--background);
  box-shadow: 0 5px 20px 0 rgba(46, 39, 194, 0.5);
}

@media (max-width: 1480px) {
  .works-container .works-holder {
    gap: 20px;
  }
  .works-container .tabs-holder {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .works-container .works-holder {
    gap: 10px;
  }
}
@media (max-width: 620px) {
  .works-container .works-holder {
    display: flex;
    flex-direction: column;
  }
}
/* ============== ARCHIVE WORKS End ============= */

/* ============== WORKS ITEM Start ============= */

.work-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 30px;
  gap: 25px;
  border-radius: 10px;
  background: var(--background-secondary);
}
.work-item__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 20px;
}
.work-item__content__top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}
.work-item__tags-holder {
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 40%;
  gap: 5px;
}
.work-item__tag {
  display: flex;
  align-items: center;
  width: fit-content;
  height: fit-content;
  padding: 10px;
  gap: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  flex-shrink: 0;
}
.work-item__tag__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.work-item__tag__value {
  flex-wrap: nowrap;
  white-space: nowrap;
}
.work-item__content__line {
  display: flex;
  width: 100%;
  height: 1px;
  background: var(--background-thirdly);
}
.work-item__content__bottom {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
}
.work-item__desc.hidden {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.work-item__img {
  display: flex;
  position: relative;
  width: 100%;
  height: 22vw;
  max-height: 270px;
  /* aspect-ratio: 69 / 27; */
  border-radius: 5px;
  margin-top: auto;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
}
.work-item__img:hover img {
  transform: scale(1.1);
}
.work-item__img.hidden {
  display: none;
}

@media (max-width: 1220px) {
  .work-item {
    padding: 20px;
  }
  .work-item__content__top {
    gap: 20px;
  }
  .work-item__tag {
    padding: 7px;
    gap: 7px;
  }
}
@media (max-width: 768px) {
  .work-item {
    padding: 15px;
  }
  .work-item__content {
    gap: 15px;
  }
  .work-item__content__top {
    flex-direction: column-reverse;
  }
  .work-item__tag {
    padding: 5px 7px;
  }
  .work-item__tag__icon {
    width: 15px;
    height: 15px;
  }
  .work-item__content__bottom {
    gap: 10px;
  }
}
@media (max-width: 620px) {
  .work-item__img {
    height: 35vw;
  }
}
@media (max-width: 420px) {
  .work-item__content__top {
    gap: 15px;
  }
}

/* ============== WORKS ITEM End ============= */

/* ============== WORKS MODAL Start ============= */

#work-overflow.theme-modal {
  overflow-y: auto !important;
}
#work-overflow .read-more-btn {
  display: none;
}
#work-overflow .work-item__desc {
  display: flex;
  flex-direction: column;
  gap: 5px;
  -webkit-line-clamp: unset;
  max-height: unset;
}
@media (max-width: 768px) {
  #work-overflow.theme-modal {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
/* ============== WORKS MODAL End ============= */

/* ============== ARCHIVE REVIEWS ITEM Start ============= */

.archive-reviews .reviews-wrapper {
  display: flex;
  flex-direction: column;
  padding-top: 0;
}
.archive-reviews .reviews-content {
  display: flex;
  width: 100%;
  gap: 30px;
}
.archive-reviews .review-form {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 125px;
  width: 35%;
  height: fit-content;
  max-width: 360px;
  padding: 40px;
  gap: 30px;
  border-radius: 10px;
  background: var(--gradient);
}
.archive-reviews .review-form__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.archive-reviews .review-form__top .btn {
  width: 100%;
}
.archive-reviews .review-form__line {
  display: none;
  width: 100%;
  height: 1px;
  background: var(--background-thirdly);
}
.archive-reviews .review-form:has(.review-form__content) .review-form__line {
  display: flex;
}
.archive-reviews .review-form__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.archive-reviews .review-form__content__text,
.archive-reviews .review-form__content__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.archive-reviews .review-form .link-item {
  display: flex;
  align-items: center;
  padding: 5px;
  gap: 20px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
}
.archive-reviews .review-form .link-item__logo {
  display: flex;
  width: 70px;
  height: 70px;
  border-radius: 5px;
  flex-shrink: 0;
}
.archive-reviews .review-form .link-item__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.archive-reviews .review-form .link-item__text__grade {
  display: flex;
  align-items: center;
  gap: 5px;
}
.archive-reviews .review-form .link-item__text__grade__star {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.archive-reviews .reviews-holder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 30px;
}

@media (max-width: 1660px) {
  .archive-reviews .review-form {
    top: 95px;
  }
}
@media (max-width: 1480px) {
  .archive-reviews .reviews-content {
    gap: 20px;
  }
  .archive-reviews .review-form {
    padding: 20px;
    gap: 20px;
  }
  .archive-reviews .reviews-holder {
    gap: 20px;
  }
}
@media (max-width: 1220px) {
  .archive-reviews .reviews-holder {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .archive-reviews .review-form {
    padding: 15px;
    gap: 15px;
  }
  .archive-reviews .review-form__top {
    gap: 15px;
  }
  .archive-reviews .review-form .link-item {
    gap: 10px;
  }
  .archive-reviews .review-form .link-item__text {
    gap: 5px;
  }
  .archive-reviews .review-form .link-item__logo {
    width: 50px;
    height: 50px;
  }
  .archive-reviews .reviews-holder {
    gap: 10px;
  }
}
@media (max-width: 860px) {
  .archive-reviews .reviews-content {
    flex-direction: column;
  }
  .archive-reviews .review-form {
    position: relative;
    top: auto;
    width: 100%;
    max-width: none;
  }
  .archive-reviews .review-form__content {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .archive-reviews .review-form .link-item {
    width: fit-content;
    padding-right: 10px;
  }
}
@media (max-width: 480px) {
  .archive-reviews .reviews-holder {
    grid-template-columns: 1fr;
  }
}
/* ============== ARCHIVE REVIEWS ITEM Start ============= */

/* ============== REVIEWS ITEM Start ============= */

.review-item * {
  transition: all 0.3s ease-in;
}
.review-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 30px;
  gap: 25px;
  border-radius: 10px;
  background: var(--background-secondary);
  overflow: hidden;
}
.review-item__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-item__line {
  display: flex;
  width: 100%;
  height: 1px;
  background: var(--background-thirdly);
}
.review-item__text {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.review-item:not(:has(.gallery)) .review-item__text {
  margin-top: auto;
}
.review-item__text__value.hidden {
  display: -webkit-box;
  -webkit-line-clamp: 12;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  transition: all 0.3s ease-in;
}
.review-item__text__value.has-gallery.hidden {
  -webkit-line-clamp: 6;
}
.review-item__text__value * {
  margin-bottom: 0;
}
.review-item__text__value *:not(:last-of-type) {
  margin-bottom: 5px;
}

/* read-more-btn start */
.read-more-btn {
  display: flex;
  align-items: center;
  position: relative;
  width: fit-content;
  gap: 5px;
  color: var(--main-text-primary);
  cursor: pointer;
  transition: all 0.3s ease-in;
}
.read-more-btn::before {
  justify-content: start;
}
.read-more-btn:hover {
  color: var(--background-thirdly);
}
.read-more-btn svg {
  position: relative;
  width: 16px;
  height: 16px;
}
.read-more-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  width: 16px;
  height: 16px;
  background-image: url(../images/arrow-menu-gradient.svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.3s ease-in;
}
.read-more-btn:hover::after {
  opacity: 1;
}
.read-more-btn svg path {
  stroke: var(--main-text-primary);
}
/* read-more-btn end */

.review-item .gallery {
  display: flex;
  width: 100%;
  height: fit-content;
  margin-top: auto;
}
.review-item .gallery__item {
  display: flex;
  position: relative;
  width: fit-content;
  max-width: 110px;
  height: 100%;
  max-height: 100px;
  aspect-ratio: 11 / 10;
  border-radius: 5px;
  border: 3px solid var(--background-secondary);
  overflow: hidden;
  cursor: pointer;
}
.review-item .gallery__item:not(:first-of-type) {
  margin-left: -15px;
}
.review-item .gallery__item:first-of-type {
  z-index: 2;
}
.review-item .gallery__item:nth-child(2) {
  z-index: 1;
}
.review-item .gallery__item .count {
  display: none;
}
.review-item .gallery__item:nth-child(3) .count {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--head-secondary);
  z-index: 1;
}
.review-item .gallery__item.hidden {
  display: none;
}
.review-item .gallery__item .img-filter,
.review-item .gallery__item:nth-child(3) .more-photo {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  transition: all 0.3s ease-in;
}
.review-item .gallery__item:hover .img-filter,
.review-item .gallery__item:nth-child(3) .more-photo {
  background-color: hsla(0, 0%, 0%, 0.4);
}
.review-item .gallery__item .loop {
  display: flex;
  position: absolute;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: all 0.3s ease-in;
}
.review-item .gallery__item .loop svg {
  width: 20px;
  height: 20px;
}
.review-item .gallery__item:nth-child(3) .loop.none {
  display: none;
}
.review-item .gallery__item:hover .loop {
  opacity: 1;
}

.review-item.video {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  padding: 0;
  cursor: pointer;
}
.review-item__img {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.review-item:hover .review-item__img img {
  transform: scale(1.1);
}
.review-item__filter {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  overflow: hidden;
  z-index: 2;
}
.review-item__btn {
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background: var(--background);
  cursor: pointer;
  z-index: 3;
}
.review-item__btn svg path {
  fill: var(--primary);
}
.review-item video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  overflow: hidden;
  opacity: 0;
}
.review-item__sign {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: fit-content;
  height: fit-content;
  gap: 5px;
  z-index: 3;
}
.review-item__sign__name {
  font-weight: 500;
}
.review-item__sign * {
  color: var(--background);
}

@media (max-width: 1480px) {
  .review-item {
    padding: 20px;
    gap: 15px;
  }
  .review-item__text {
    gap: 15px;
  }
}
@media (max-width: 1220px) {
  .review-item {
    gap: 10px;
  }
  .review-item .gallery {
    gap: 5px;
  }
  .review-item .gallery__item {
    max-width: 80px;
    max-height: 80px;
  }
  .review-item.video {
    min-height: 220px;
  }
}
@media (max-width: 768px) {
  .review-item {
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .read-more-btn svg,
  .read-more-btn::after {
    width: 12px;
    height: 12px;
  }
}
/* ============== REVIEWS ITEM End ============= */

/* ============== REVIEWS MODAL Start ============= */

#review-overflow.theme-modal {
  overflow-y: auto !important;
}
#review-overflow .read-more-btn {
  display: none;
}
#review-overflow .review-item__text__value {
  display: flex;
  flex-direction: column;
  gap: 5px;
  -webkit-line-clamp: unset;
  max-height: unset;
}
@media (max-width: 768px) {
  #review-overflow.theme-modal {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
/* ============== REVIEWS MODAL End ============= */

/* ============== SERVICES SUBCAT ITEM start ============= */

.service-subcat-holder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-subcat-item * {
  transition: all 0.3s ease-in;
}
.service-subcat-item {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: auto;
  padding: 20px;
  gap: 20px;
  border-radius: 10px;
  background: var(--background-secondary);
  overflow: hidden;
}
.service-subcat-item__img {
  display: flex;
  width: 100%;
  height: 15vw;
  max-height: 180px;
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
}
.service-subcat-item:hover .service-subcat-item__img img {
  transform: scale(1.1);
}
.service-subcat-item__title {
  display: flex;
  width: fit-content;
  position: relative;
}
.service-subcat-item:hover .service-subcat-item__title {
  color: transparent;
}
.service-subcat-item:hover .service-subcat-item__title::before {
  opacity: 1;
}
.service-subcat-item__btn {
  width: 100%;
  margin-top: auto;
}

@media (max-width: 1480px) {
  .service-subcat-holder {
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .service-subcat-holder {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .service-subcat-item__img {
    height: 20vw;
  }
}
@media (max-width: 768px) {
  .service-subcat-item {
    padding: 15px;
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .service-subcat-holder {
    display: flex;
    flex-wrap: wrap;
  }
  .service-subcat-item__img {
    height: 40vw;
  }
}
/* ============== SERVICES ITEM End ============= */

/* ============== STOCKS ITEM Start ============= */

.stock-item * {
  transition: all 0.3s ease-in;
}
.stock-item {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 30px;
  border-radius: 10px;
  background: var(--background-secondary);
  overflow: hidden;
  cursor: pointer;
}
.stock-item__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  z-index: 2;
}
.stock-item:has(.stock-item__img) .stock-item__content {
  width: 60%;
  max-width: 400px;
}
.stock-item__content__text {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  margin-bottom: 10px;
}
.stock-item__content__btn {
  margin-top: auto;
}
.stock-item__img {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  max-width: 290px;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.stock-item__img img {
  object-position: right bottom;
}
.stock-item__filter {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 160px;
  width: 750px;
  height: 750px;
  border-radius: 100%;
  filter: blur(300px);
  -webkit-backdrop-filter: blur(300px);
  background: var(--hover);
  opacity: 0.1;
}
.stock-item__filter.two {
  top: -500px;
  transform: unset;
  left: auto;
  right: -37px;
  width: 473px;
  height: 473px;
  opacity: 0.7;
}
@media (max-width: 1480px) {
  .stock-item {
    padding: 20px;
  }
  .stock-item__content__text {
    gap: 15px;
  }
}
@media (max-width: 1100px) {
  .stock-item:has(.stock-item__img) .stock-item__content {
    width: 100%;
    max-width: none;
  }
  .stock-item__img {
    width: 100%;
    max-width: none;
    opacity: 0.2;
  }
}
@media (max-width: 992px) {
  .stock-item {
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .stock-item__content {
    gap: 15px;
  }
  .stock-item__content__text {
    gap: 10px;
  }
}

/* ============== STOCKS ITEM End ============= */

/* ============== SERVICE ITEM Start ============= */

.services-wrapper {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 10px;
  background: var(--background-secondary);
}
.service-item-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 60px;
}
.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 60px;
}
.service-item-wrapper:not(:last-of-type) .service-item {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--background-thirdly);
}
.service-item-wrapper:not(:first-of-type) .service-item {
  padding-top: 20px;
}
.service-item__info {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
@media (max-width: 1480px) {
  .services-wrapper {
    padding: 20px;
  }
  .service-item-wrapper {
    gap: 40px;
  }
  .service-item {
    gap: 30px;
  }
  .service-item__info {
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .services-wrapper {
    padding: 15px;
  }
  .service-item-wrapper {
    gap: 20px;
  }
  .service-item {
    gap: 20px;
  }
  .service-item__info {
    gap: 10px;
  }
  .service-item-wrapper:not(:last-of-type) .service-item {
    padding-bottom: 15px;
  }
  .service-item-wrapper:not(:first-of-type) .service-item {
    padding-top: 15px;
  }
  .services-wrapper .swiper-btn-next {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .service-item-wrapper {
    flex-direction: column;
    gap: 15px;
  }
  .services-wrapper .swiper-btn-next {
    width: 30px;
    height: 30px;
    padding: 0;
  }
  .services-wrapper .swiper-btn-prev svg,
  .swiper-btn-next svg {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 420px) {
  .service-item {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
  .service-item-wrapper .service-item:not(:last-of-type) {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--background-thirdly);
  }
  .service-item-wrapper .service-item:last-of-type {
    padding-top: 0;
  }
}

/* ============== SERVICE ITEM End ============= */
