* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
  border-radius: 10px;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
}

input::-ms-clear {
  display: none;
}

button,
input[type="submit"] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type="number"],
input[type="number"]:hover,
input[type="number"]:focus {
  appearance: none;
  -moz-appearance: textfield;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

html,
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex-grow: 1;
}

footer {
  flex-shrink: 0;
}

body {
  font-family: "Nanum Gothic", sans-serif;
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
  background: #fafafa;
  color: #777777;
}

.container {
  padding: 0 15px;
  max-width: 1600px;
  margin: 0 auto;
}

h2 {
  font-size: clamp(26px, 5vw, 34px);
  margin-bottom: 30px;
  color: #cdcdee;
  font-weight: 800;
}

h3 {
  font-size: clamp(20px, 5vw, 26px);
  margin-top: 20px;
  margin-bottom: 10px;
  color: #333333;
}

p {
  margin-bottom: 10px;
}

.p-80 {
  padding: 40px 0;
}
@media (max-width: 768px) {
  .p-80 {
    padding: 30px 0;
  }
}
@media (max-width: 560px) {
  .p-80 {
    padding: 20px 0;
  }
}

.btn {
  display: inline-block;
  width: max-content;
  margin-top: 20px;
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 5px;
  border: 1px solid #fff;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(90deg, rgb(231, 119, 241), rgb(158, 245, 226));
  color: #000 !important;
  box-shadow: 5px 5px 5px rgba(134, 127, 35, 0.5);

  @media (max-width: 560px) {
    width: 100%;
  }
}

@media (hover: hover) {
  .btn:hover {
    filter: hue-rotate(-20deg);
    color: #fff !important;
    box-shadow: 5px 5px 5px rgba(245, 235, 92, 0.5);
  }
}

li {
  margin: 15px 0;
}

ul {
  margin-bottom: 30px;
}

ol {
  margin-left: 15px;
}

.link {
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .link:hover {
    opacity: 0.6;
  }
}

.img__wrapp {
  width: 50%;
  text-align: center;
  @media (max-width: 768px) {
    width: 100%;
  }
}

.img__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 50%;
  text-align: center;
  @media (max-width: 768px) {
    width: 100%;
  }
}

.img__grid img,
.img__wrapp img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  @media (max-width: 768px) {
    flex-direction: column;
  }
}

.wrapper__reverse {
  @media (max-width: 768px) {
    flex-direction: column-reverse;
  }
}
.mt-40 {
  margin-top: 20px;
}

.mb-40 {
  margin-bottom: 20px;
}

.text__content {
  display: flex;
  flex-direction: column;
  width: 50%;
  @media (max-width: 768px) {
    width: 100%;
  }
}

.contact h3 {
  margin-top: 40px;
}

.contact__item p {
  margin: 15px 0;
}

/* nanum-gothic-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Nanum Gothic";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/nanum-gothic-v26-latin-regular.woff2") format("woff2"),
    url("fonts/nanum-gothic-v26-latin-regular.woff") format("woff");
}
/* nanum-gothic-800 - latin */
@font-face {
  font-display: swap;
  font-family: "Nanum Gothic";
  font-style: normal;
  font-weight: 800;
  src: url("fonts/nanum-gothic-v26-latin-800.woff2") format("woff2"),
    url("fonts/nanum-gothic-v26-latin-800.woff") format("woff");
}
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5px;
  background: #cee4ce;
  z-index: 20;
}
.header__logo {
  display: flex;
  align-items: center;
  max-width: 170px;
}

.header__logo img {
  border-radius: 0;
}

@media (max-width: 1120px) {
  .header {
    padding: 10px 0;
  }
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.burger__btn {
  display: none;
}
@media (max-width: 1120px) {
  .burger__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
  }
}

/* burger__btn */
.burger__btn span {
  position: relative;
  width: 30px;
  height: 2px;
  background-color: #fff;
}
.burger__btn span::before {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 2px;
  top: -3px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.burger__btn span::before {
  top: -5px;
}

.burger__btn span::after {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 2px;
  bottom: -3px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.burger__btn span::after {
  bottom: -5px;
}

.burger__btn-active span::before {
  transform: rotate(45deg);
  top: -1px;
}

.burger__btn-active span::after {
  transform: rotate(-45deg);
  bottom: -1px;
}

.burger__btn-active span {
  height: 0;
}

@media (max-width: 1120px) {
  .nav {
    position: absolute;
    background: #c2daff;
    padding: 40px;
    width: 100%;
    left: 0;
    top: 60px;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    z-index: 5;
    transform: translateY(-100%);
    transition: all 0.3s ease-in-out;
  }
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
  @media (max-width: 1120px) {
    flex-direction: column;
  }
}

.nav__item {
  font-weight: 800;;
}


/* nav__active */
.nav__active {
  display: flex;
  justify-content: center;
  visibility: visible;
  opacity: 1;
  transform: translateY(0%);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form__fieldset {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  gap: 30px;
  margin: 0 auto;
}
.form__fieldset:last-child {
  display: block;
}
@media (max-width: 768px) {
  .form__fieldset {
    flex-wrap: wrap;
  }
}
.form__input {
  border: 1px solid #665f55;
  border-radius: 5px;
  width: 100%;
  padding: 10px 20px;
}
@media (max-width: 768px) {
  .form__input {
    max-width: 100%;
  }
}
.form__label {
  display: block;
  margin-bottom: 10px;
}

.form__textarea {
  width: 100%;
  border: 1px solid #665f55;
  border-radius: 5px;
  padding: 10px 20px;
  resize: none;
}
.form__btn {
  width: 280px;
  padding: 15px 35px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(90deg, #00f164, #19fbca);
  color: #ffffff !important;
  border: 1px solid #ffffff;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .form__btn:hover {
    filter: hue-rotate(30deg);
    color: #fff !important;
    box-shadow: 5px 5px 5px rgba(187, 91, 91, 0.5);
  }
}
.form__fieldset-send {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .form__fieldset-send {
    flex-wrap: wrap;
  }
}

select {
  width: 100%;
  border: 1px solid #665f55;
  border-radius: 5px;
  padding: 10px 20px;
}

.footer {
  background: #cee4ce;
  padding: 40px 0;
}
.footer__container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  flex-wrap: wrap;
  gap: 5px;
}
@media (max-width: 560px) {
  .footer__container {
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }
}

.footer__logo {
  display: flex;
  width: 100%;
  margin: 0 auto;
}

.footer__logo img {
  border-radius: 0;
}
.footer p {
  display: block;
  margin-top: 15px;
}
.footer ul {
  margin-bottom: 0;
}

.footer__store {
  max-width: 150px;
}

.footer__list {
  display: flex;
  align-items: center;
  gap: 15px;

  @media (max-width: 380px) {
    flex-direction: column;
    align-items: start;
    gap: 0;
  }
}

.footer__item {
  max-width: 300px;
}

.thanks {
  position: relative;
}

.thanks h1 {
  margin-bottom: 20px;
}

.thanks p {
  margin-bottom: 15px;
}

.thanks a {
  color: #383535;
}

.thanks__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 670px;
  margin: auto;
  transform: translateY(50%);
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: 
    url("img/hero.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  height: 100vh;
  color: #e6e6fa;
  font-weight: 600;
}

.hero h2 {
  text-align: center;
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 600;
  color: #ffdfe4;
}

.hero p {
  text-align: center;
  font-size: clamp(16px, 2vw, 24px);
}

.hero__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 750px;
  margin: 0 auto;
}

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

  @media (max-width: 768px) {
    grid-template-columns: repeat(1, 1fr);
  }
}
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 1px solid #ffe4b5;
  border-radius: 5px;
  padding: 15px;
  box-shadow: 5px 5px 5px #ffe4b5;
  backdrop-filter: blur(5px);
  background-color: #c1e1c13d;
  color: #0a0a0a;
  transition: all 0.3s ease-in-out;
}

.card__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 20px 0;

  @media (max-width: 1050px) {
    grid-template-columns: repeat(2, 1fr);
  }
  @media (max-width: 750px) {
    grid-template-columns: repeat(1, 1fr);
  }
}
.card:hover {
  transform: translateY(-5px);
}
.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.card__grid .card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card h3 {
  color: #b7b7fa;
  font-weight: 800;
  margin: 0;
}

.card {
  text-align: center;
}

.card__content {
  padding: 15px;
  text-align: center;
}
.card__content h3 {
  margin-bottom: 10px;
}

.li-style li {
  position: relative;
  margin-left: 30px;
}

.li-style li::before {
  position: absolute;
  left: -30px;
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-image: url("img/icon.png");
  border-radius: 52%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  margin-right: 20px;
  padding-left: 20px;
  transform: translateY(0px);
}

.bg {
  background: #0c0e12;
  color: #000000;
  font-weight: 600;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg h2,
.bg h3 {
  color: #ffffff;
}

.bg1 {
  background-attachment: fixed;
  background-image: linear-gradient(
      rgba(234, 155, 243, 0.8),
      rgba(149, 240, 252, 0.8)
    ),
    url("img/bg1.webp");
}
.bg2 {
  background-attachment: fixed;
  background-image: linear-gradient(
      rgba(234, 155, 243, 0.8),
      rgba(149, 240, 252, 0.8)
    ),
    url("img/bg2.webp");
}
.bg3 {
  background-attachment: fixed;
  background-image: linear-gradient(
      rgba(234, 155, 243, 0.8),
      rgba(149, 240, 252, 0.8)
    ),
    url("img/bg3.webp");
}
.bg4 {
  background-attachment: fixed;
  background-image: linear-gradient(
      rgba(234, 155, 243, 0.8),
      rgba(149, 240, 252, 0.8)
    ),
    url("img/bg4.webp");
}
.bg5 {
  background-attachment: fixed;
  background-image: linear-gradient(
      rgba(234, 155, 243, 0.8),
      rgba(149, 240, 252, 0.8)
    ),
    url("img/bg5.webp");
}
.bg6 {
  background-attachment: fixed;
  background-image: linear-gradient(
      rgba(234, 155, 243, 0.8),
      rgba(149, 240, 252, 0.8)
    ),
    url("img/bg6.webp");
}
.bg7 {
  background-attachment: fixed;
  background-image: linear-gradient(
      rgba(234, 155, 243, 0.8),
      rgba(149, 240, 252, 0.8)
    ),
    url("img/bg7.webp");
}
.bg8 {
  background-attachment: fixed;
  background-image: linear-gradient(
      rgba(234, 155, 243, 0.8),
      rgba(149, 240, 252, 0.8)
    ),
    url("img/bg8.webp");
}

.bg9 {
  background-attachment: fixed;
  background-image: linear-gradient(
      rgba(234, 155, 243, 0.8),
      rgba(149, 240, 252, 0.8)
    ),
    url("img/bg9.webp");
}
.bg10 {
  background-attachment: fixed;
  background-image: linear-gradient(
      rgba(234, 155, 243, 0.8),
      rgba(149, 240, 252, 0.8)
    ),
    url("img/bg10.webp");
}
.bg11 {
  background-attachment: fixed;
  background-image: linear-gradient(
      rgba(185, 185, 185, 0.7),
      rgba(193, 226, 215, 0.7)
    ),
    url("img/bg11.webp");
}
.bg12 {
  background-attachment: fixed;
  background-image: linear-gradient(
      rgba(234, 155, 243, 0.8),
      rgba(149, 240, 252, 0.8)
    ),
    url("img/bg12.webp");
}
.bg13 {
  background-attachment: fixed;
  background-image: linear-gradient(
      rgba(234, 155, 243, 0.8),
      rgba(149, 240, 252, 0.8)
    ),
    url("img/bg13.webp");
}
.bg14 {
  background-attachment: fixed;
  background-image: linear-gradient(
      rgba(234, 155, 243, 0.8),
      rgba(149, 240, 252, 0.8)
    ),
    url("img/bg14.webp");
}

.accordions {
  width: 100%;
  margin: 15px 0;
}

.accordion {
  width: 100%;
  height: auto;
  margin: 10px 0;
}

.accordion__slot {
  width: 100%;
  display: block;
}

.accordion__button {
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  padding: 15px 45px 15px 20px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  text-transform: uppercase;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 500ms ease;
  user-select: none;
  background: rgba(82, 50, 92, 0.74);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
  position: relative;
  letter-spacing: 1px;
  font-weight: 600;
}
.accordion__button:hover {
  color: #ffe44b;
}
.accordion__button::after {
  transition: transform 500ms;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
  top: 50%;
  right: 10px;
  content: "";
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("img/icon.png");
}

.accordion__button-active::after {
  transform: translate(-50%, -50%) rotate(360deg);
}
.accordion__button-active {
  color: #ffc400;
}

.accordion__panel {
  overflow: hidden;
  max-height: 0;
  visibility: hidden;
  padding: 0 5px;
  transition: visibility 500ms, max-height 600ms;
  transition-timing-function: cubic-bezier(0.694, 0.0482, 0.335, 1);
}
.accordion__panel-active {
  max-height: var(--height, 0);
  visibility: visible;
}

.accordion-panel__content {
  background: rgba(82, 50, 92, 0.74);
  color: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  line-height: 1.5;
  margin: 10px 0;
  user-select: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
}

.p-80 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.p-80.visible {
  opacity: 1;
  transform: translateY(0);
}

.slider {
  position: relative;
  max-width: 100%;
  /* height: 80vh;  */
  overflow: hidden;
}

.slide {
  min-width: 100%;
  /* height: 80vh;  */
  user-select: none;
}

.slide img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover; /* растягиваем под ширину и высоту */
  display: block;
  border-radius: 0;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
}

.arrow.left {
  left: 10px;
}
.arrow.right {
  right: 10px;
}

/* hide arrows on mobile */
@media (max-width: 768px) {
  .arrow {
    display: none;
  }
}

.tabs {
  margin-top: 20px;
}
.tab-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.tab-button {
  padding: 10px 20px;
  background: #f0f0f0;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}
.tab-button.active {
  background: #ff6200;
  color: white;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.comparison-table th,
.comparison-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}
.comparison-table th {
  background: #f0f0f0;
}
.comparison-table thead {
  background: #f0f0f070;
}
@media (max-width: 768px) {
  .comparison-table {
    display: block;
    overflow-x: auto;
  }
}



.container__news {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.blog {
  padding: 15px;
  border-radius: 5px;
  padding: 15px;
}

.blog h2 {
  text-align: center;
} 

.hidden-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
.hidden-content.visible {
  max-height: 500px;
}
.read-more-btn {
  display: inline-block;
  width: max-content;
  padding: 10px 20px;
  background-color: #ee7402;
  color: rgb(248, 248, 248);
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
}
.read-more-btn:hover {
  background-color: goldenrod;
  color: #fff;
}
.read-more-btn.active {
  transform: translateY(10px);
}