* {
  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: Lato, sans-serif;
  font-size: 16px;
  line-height: normal;
  font-weight: 400;
  background: linear-gradient(90deg, #fffcea 0%, #ffc4f7 100%);
}

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

h2 {
  font-size: clamp(20px, 5vw, 34px);
  margin-bottom: 30px;
}

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

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: 30px;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgb(0, 168, 84);
  background-color: rgb(0, 168, 84);
}
@media (hover: hover) {
  .btn:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 189, 142);
  }
}

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__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;
  }
}

.mt-40 {
  margin-top: 40px;
}

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

.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;
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/lato-regular.woff") format("woff"),
    url("fonts/lato-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/lato-bold.woff") format("woff"),
    url("fonts/lato-bold.woff2") format("woff2");
}
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5px;
  color: #aeecc3;
  background: #0d1c17;
  z-index: 20;
}
.header__logo {
  font-size: clamp(24px, 4vw, 32px);
  margin: 0;
  max-width: 170px;
}
@media (max-width: 850px) {
  .header {
    padding: 10px 0;
  }
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.burger__btn {
  display: none;
}
@media (max-width: 850px) {
  .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: 850px) {
  .nav {
    position: absolute;
    background: #1f1f1f;
    padding: 40px;
    width: 100%;
    left: 0;
    top: 87px;
    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: 35px;
  margin-bottom: 0;
}
@media (max-width: 850px) {
  .nav__list {
    flex-direction: column;
    gap: 5px;
  }
}

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

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

.form__fieldset {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  gap: 10px;
  margin: 0 auto;
}
.form__fieldset:last-child {
  display: block;
}
@media (max-width: 768px) {
  .form__fieldset {
    flex-wrap: wrap;
  }
}
select,
.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__fieldset--select {
  display: flex;
  flex-direction: column;
  gap: 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;
  color: #2b2b2b;
  font-weight: 600;
  border: solid 1px rgb(224, 165, 0);
  background-color: rgb(224, 165, 0);
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .form__btn:hover {
    background-color: orange;
    color: #fff;
  }
}
.form__fieldset-send {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .form__fieldset-send {
    flex-wrap: wrap;
  }
}

.footer {
  color: #aeecc3;
  background: #0d1c17;
  padding: 40px 0;

}
.footer__container {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}
@media (max-width: 560px) {
  .footer__container {
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }
}
.footer p {
  display: block;
  text-align: center;
  margin-top: 15px;
}
.footer ul {
  margin-bottom: 0;
}

.footer__item {
  max-width: 300px;
}

.thanks {
  position: relative;
}

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

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

.thanks a {
  color: #242424;
}

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

.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)) ,url("img/hero.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 200px 0 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

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

.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: 600px;
}

.hero__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.hero__btns .btn {
  margin: 0;
}

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

  @media (max-width: 720px) {
    grid-template-columns: repeat(1, 1fr);
  }
}
.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border: 1px solid #fddcae;
  border-radius: 5px;
  padding: 15px;
  box-shadow: 5px 5px 5px #babecc;
  background-color: #fcfcfc5b;
  backdrop-filter: blur(3px);
  color: #ffffff;
}

.card h3 {
  margin: 0;
}

.card img {
  max-width: 120px;
  border: 2px solid #fddcae;
  border-radius: 50%;
}

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

.li-style li::before {
  position: absolute;
  left: -30px;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("img/icon.png");
  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;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.bg1 {
  background-attachment: fixed;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("img/bg1.jpg");
}

.bg2 {
  background-attachment: fixed;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("img/bg2.jpg");
}
.bg3 {
  background-attachment: fixed;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("img/bg3.jpg");
}
.bg4 {
  background-attachment: fixed;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("img/bg4.jpg");
}
.bg5 {
  background-attachment: fixed;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("img/9.jpeg");
}


.demo__iframe{
  width: 100%;
  height: 50vh;
  object-fit: cover; 
  border-radius: 8px;
  margin-top: 20px;
}

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

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

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

.accordion__button {
  border-radius: 5px;
  color: #292929;
  cursor: pointer;
  padding: 15px 35px 15px 20px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  text-transform: uppercase;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 500ms ease;
  user-select: none;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
  position: relative;
  letter-spacing: 1px;
  font-weight: 600;
}
.accordion__button:hover {
  color: #042c73;
}
.accordion__button::after {
  transition: transform 500ms;
  width: 15px;
  height: 15px;
  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(180deg);
}
.accordion__button-active {
  color: #760284;
}

.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: white;
  color: #191919;
  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);
}
