* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  letter-spacing: 0px;
}

h1 {
  font-size: 40px;
  font-weight: 800;
}

h2 {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
}

.header {
  background: #2D3EFF;
  color: white;
}
.header__inner {
  margin: 0 auto;
  height: 70px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.logo img {
  height: 24px;
  width: auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
}
.nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.85;
  transition: 0.3s;
}
.nav a:hover {
  opacity: 1;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.burger span {
  width: 25px;
  height: 2px;
  background: white;
}

.menu {
  position: fixed;
  inset: 0;
  background: #2D3EFF;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 1000;
}
.menu.active {
  opacity: 1;
  pointer-events: all;
}
.menu__close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 28px;
  cursor: pointer;
  color: white;
}
.menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.menu__nav a {
  font-size: 20px;
  font-weight: 300;
  color: white;
  text-decoration: none;
  letter-spacing: 2px;
}

.hero {
  position: relative;
  height: 768px;
  background: url("../img/jpg/image 3.jpg") center/cover no-repeat;
  color: white;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
}
.hero__content {
  position: relative;
  height: 700px;
  z-index: 1;
}

.hero__title {
  position: absolute;
  top: 225px;
  left: 132px;
  display: inline-block;
}

.hero__title h1 {
  font-size: 40px;
  font-weight: 900;
  display: inline-block;
}

.hero__line {
  height: 2px;
  background: white;
  margin-top: 10px;
  width: 100%;
}

.hero p {
  position: absolute;
  top: 294px;
  left: 132px;
  font-size: 24px;
  max-width: 520px;
  line-height: 1.5;
}

.hero .btn {
  position: absolute;
  top: 464px;
  left: 132px;
  background: #1629ff;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.hero .btn:hover {
  background: #1B7EFF;
}

.services {
  background: #2D3EFF;
  color: white;
  padding: 100px 0;
}
.services h2 {
  text-align: center;
  margin-bottom: 60px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  justify-items: center;
}
.services .service {
  text-align: center;
  max-width: 245px;
  max-height: 205px;
}
.services .service img {
  width: 140px;
  height: 140px;
}
.services .service p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.4;
}

.categories {
  background: #F5F5F5;
  padding: 100px 0;
}
.categories h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #2D3EFF;
}
.categories__tabs {
  display: flex;
  justify-content: center;
  gap: 55px;
  margin-bottom: 50px;
}
.categories__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.categories__grid img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}
.categories__grid img:hover {
  cursor: pointer;
  transform: scale(1.05);
}

.btn--tab {
  min-width: 180px;
  min-height: 50px;
  text-align: center;
  font-size: 24px;
}

.video {
  background: #2D3EFF;
  min-height: 768px;
  color: white;
  display: flex;
  align-items: center;
}
.video h2 {
  text-align: center;
  margin-bottom: 40px;
}
.video__box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}
.video__media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 16px;
}
.video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  cursor: pointer;
  transition: 0.3s;
}
.video__play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.pricing {
  background: #F5F5F5;
  padding: 100px 0;
}
.pricing h2 {
  color: #2D3EFF;
  margin-bottom: 60px;
}
.pricing__grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.pricing__note {
  color: #2D3EFF;
  font-size: 14px;
  opacity: 0.8;
}

.price-card {
  position: relative;
  overflow: hidden;
  flex: 1;
  background: #2D3EFF;
  color: white;
  min-width: 235px;
  width: 100%;
  height: auto;
  padding: 36px;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: 0.3s;
}
.price-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.price-card .line {
  height: 2px;
  width: 168px;
  background: rgba(255, 255, 255, 0.6);
  margin: 0 auto 25px;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  margin-bottom: 30px;
}
.price-card ul li {
  position: relative;
  padding-left: 12px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.price-card ul li::before {
  content: "-";
  position: absolute;
  left: 0;
}
.price-card .price {
  font-size: 22px;
  font-weight: 700;
  transition: 0.3s;
}
.price-card:hover {
  cursor: pointer;
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}
.price-card:hover .price {
  transform: scale(1.1);
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  opacity: 0;
  transition: 0.3s;
}

.price-card:hover::before {
  opacity: 1;
}

.contact {
  position: relative;
  min-height: auto;
  color: white;
  padding: 100px;
  background: url("../img/jpg/image 5.jpg") center/cover no-repeat;
  align-items: center;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
}
.contact__content {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.contact h2 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 10px;
  text-align: left;
}
.contact__line {
  max-width: 515px;
  height: 2px;
  background: white;
  margin-bottom: 20px;
}
.contact p {
  max-width: 500px;
  margin-bottom: 25px;
  font-size: 24px;
  opacity: 0.9;
}

.contact__form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  min-width: 0;
  width: 100%;
}
.contact__form input,
.contact__form textarea {
  padding: 12px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}
.contact__form textarea {
  height: 120px;
  resize: none;
}
.contact__form .btn {
  margin-top: 10px;
  width: fit-content;
  align-self: flex-start;
}

.contact input::placeholder,
.contact textarea::placeholder {
  color: #1B7EFF;
}

.footer {
  height: 200px;
  background: #2D3EFF;
  color: white;
  display: flex;
  align-items: center;
}
.footer__inner {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer__info p {
  margin-bottom: 10px;
  font-size: 14px;
  opacity: 0.9;
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__socials img {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: 0.3s;
}
.footer__socials img.icon-github {
  width: 84px;
  height: auto;
}
.footer__socials img:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .header__inner {
    padding: 0 20px;
  }
  .nav {
    gap: 20px;
  }
  .hero {
    height: 600px;
  }
  .hero__title {
    left: 59px;
    font-size: 32px;
  }
  .hero p {
    top: 294px;
    left: 59px;
  }
  .hero .btn {
    top: 464px;
    left: 59px;
  }
  .services {
    padding: 60px 0;
  }
  .services h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .services__grid {
    max-width: 650px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }
  .service {
    text-align: center;
  }
  .services .service img {
    width: 70px;
    height: auto;
    margin-bottom: 10px;
  }
  .service p {
    font-size: 13px;
  }
  .categories {
    padding: 60px 0;
    text-align: center;
  }
  .categories h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .categories__tabs {
    gap: 86px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .btn--tab {
    padding: 10px 18px;
    font-size: 14px;
    min-width: auto;
  }
  .categories__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 650px;
    margin: 0 auto;
  }
  .categories__grid img {
    width: 320px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
  }
  .categories__grid img:nth-child(5),
  .categories__grid img:nth-child(6) {
    display: none;
  }
  .video h2 {
    font-size: 27px;
  }
  .pricing h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .pricing__grid {
    max-width: 700px;
    margin: 0 auto;
    gap: 20px;
  }
  .price-card {
    padding: 30px 20px;
    min-width: 200px;
    max-width: 210px;
  }
  .price-card h3 {
    font-size: 18px;
  }
  .price-card .line {
    width: 100px;
    margin: 15px auto 20px;
  }
  .price-card ul li {
    font-size: 13px;
    line-height: 1.5;
  }
  .price-card .price {
    font-size: 20px;
  }
  .pricing__note {
    font-size: 13px;
    margin-top: 20px;
  }
  .contact h2 {
    font-size: 24px;
  }
  .contact__line {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .header__inner {
    padding: 0 15px;
  }
  .nav {
    display: none;
  }
  .burger {
    display: flex;
    font-size: 20px;
    color: white;
  }
  .logo {
    font-size: 20px;
  }
  .hero * {
    position: static !important;
  }
  .hero {
    height: 570px;
    padding: 60px 0;
  }
  .hero__content {
    position: static;
  }
  .hero__title {
    position: static;
    margin-bottom: 10px;
  }
  .hero h1 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 8px;
  }
  .hero__line {
    height: 2px;
    margin-bottom: 15px;
  }
  .hero p {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .hero .btn {
    width: 100%;
    text-align: center;
    padding: 14px;
  }
  .services {
    padding: 50px 0;
    text-align: center;
  }
  .services h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
  .service {
    text-align: center;
  }
  .services .service img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
  }
  .services .service p {
    font-size: 9px;
    line-height: 1.4;
  }
  .categories__grid img {
    display: none;
  }
  .categories__grid img:first-child {
    display: block;
  }
  .categories__grid {
    display: block;
    max-width: 100%;
  }
  .categories__grid img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
  .categories__tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
  }
  .btn--tab {
    min-height: 25px;
    font-size: 16px;
    flex: 0 0 45%;
    text-align: center;
  }
  .btn--tab:nth-child(3) {
    flex: 0 0 60%;
  }
  .categories h2 {
    font-size: 22px;
    margin-bottom: 25px;
  }
  .video {
    height: 400px;
    padding: 40px 0;
    text-align: center;
    min-height: 0px;
  }
  .video h2 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 20px;
    padding: 0 10px;
  }
  .video__wrapper {
    position: relative;
    width: 100%;
  }
  .video__wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
  .pricing {
    padding: 50px 0;
    text-align: left;
    height: auto;
  }
  .pricing h2 {
    font-size: 22px;
    margin-bottom: 25px;
  }
  .pricing__grid {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .price-card {
    justify-content: flex-start;
    max-width: 290px;
    height: 320px;
    padding: 25px 50px;
  }
  .price-card h3 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .price-card .line {
    width: 200px;
    margin: 10px auto 30px;
  }
  .price-card ul li {
    font-size: 13px;
    line-height: 1.5;
  }
  .price-card .price {
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 20px;
  }
  .pricing__note {
    font-size: 12px;
    margin-top: 15px;
    padding: 0 10px;
  }
  .contact {
    height: auto;
    padding: 50px 0;
  }
  .contact__content {
    padding: 0 15px;
  }
  .contact h2 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .contact__line {
    width: 100%;
    height: 2px;
    margin-bottom: 15px;
  }
  .contact p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .contact__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .contact__form input,
  .contact__form textarea {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border-radius: 6px;
  }
  .contact__form textarea {
    min-height: 120px;
    resize: none;
  }
  .contact__form .btn {
    width: 100%;
    padding: 14px;
    font-size: 14px;
  }
  .footer {
    height: auto;
    padding: 30px 15px;
  }
  .footer__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }
  .footer__info p {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .footer__socials {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer__socials img {
    width: 22px;
    height: 22px;
  }
  .footer__socials img.icon-github {
    width: 70px;
  }
}
.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 132px;
}

.btn {
  background: #1629FF;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 0;
  cursor: pointer;
  transition: 0.3s;
  border: none;
}
.btn:hover {
  background: #1B7EFF;
  color: #fff;
}

@media (max-width: 768px) {
  .container {
    max-width: 768px;
    padding: 0 59px;
    margin: 0;
  }
}
@media (max-width: 320px) {
  .container {
    max-width: 320px;
    padding: 0 15px;
    margin: 0;
  }
  .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 4px;
    font-size: 16px;
  }
}

/*# sourceMappingURL=style.css.map */
