.section {
  padding-left: 10%;
  padding-right: 10%;
}

.heading {
  width: 100%;
  color: #fff;
  background: linear-gradient(45deg, #041239 20%, #332b66 90%);
  border-radius: 8px;
  text-align: center;
}
.heading h2 {
  padding: 2rem;
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 3.6rem;
  }
  .section-padding {
    padding: 5em 2em;
  }
}
@media (min-width: 992px) {
  .section-heading {
    font-size: 4.8rem;
  }
  .section-padding {
    padding: 5em 8em;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  background-color: #010922;
  overflow-x: hidden;
}

.bulbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: -10;
}
.bulbs .bulb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  opacity: 1;
  filter: blur(50px);
}
.bulbs .bulb.bulb-1 {
  background-color: #332b66;
  top: -400px;
  left: -170px;
}
.bulbs .bulb.bulb-2 {
  background-color: #a4d7d7;
  width: 650px;
  height: 460px;
  border-radius: 10%;
  bottom: -300px;
  left: 280px;
  opacity: 0.25;
  transform: rotate(3.5deg);
  filter: blur(70px);
}

.burger-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1em;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  z-index: 1000;
}
.burger-btn:focus {
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}
.burger-btn:hover .burger-btn__bars::after,
.burger-btn:hover .burger-btn__bars::before {
  width: 100%;
}
.burger-btn__box {
  position: relative;
  width: 5rem;
  height: 3rem;
}
.burger-btn__bars, .burger-btn__bars::after, .burger-btn__bars::before {
  position: absolute;
  right: 0;
  height: 0.3rem;
  content: "";
  background-color: #fff;
  transition: width 0.3s;
}
.burger-btn__bars {
  width: 100%;
}
.burger-btn__bars::after {
  top: 1.3rem;
  width: 60%;
}
.burger-btn__bars::before {
  top: 2.7rem;
  width: 30%;
  transition-delay: 0.1s;
}

.nav-logo {
  top: 2rem;
  left: 10%;
  padding: 1rem 0;
  position: fixed;
  text-transform: uppercase;
  line-height: 0.9;
  font-size: 3rem;
  z-index: 1000;
}
.nav-logo span {
  letter-spacing: 0.15rem;
}
.nav-logo a {
  text-decoration: none;
  color: #fff;
  font-size: 2.5rem;
}
.nav-logo a:hover {
  color: #8574eb;
  transition: 0.2s;
}

.nav {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  transform: translateX(100%);
  background-image: linear-gradient(45deg, #041239 20%, #332b66 90%);
  transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  z-index: 100;
}
.nav--active {
  transform: translateX(0);
}
.nav__item {
  position: relative;
  display: block;
  margin: 0.5em 0;
  padding: 0.5em 2em;
  font-size: 2.8rem;
  color: #fff;
  text-decoration: none;
}
.nav__item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  transform: scaleY(0);
  transition: transform 0.3s;
  background-color: #fff;
  content: "";
}
.nav__item:hover::before {
  transform: scaleY(1);
}

@keyframes navItemsAnimation {
  from {
    transform: translateX(200%);
  }
  to {
    transform: translateX(0);
  }
}
.nav-items-animation {
  animation: navItemsAnimation 1s both;
}

.black-bars-color,
.black-bars-color::after,
.black-bars-color::before {
  background-color: #fff;
}

.navbar {
  background-color: #010922, 0;
  color: #fff;
  padding: 1rem 0;
  position: fixed;
  height: 10vh;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  padding-left: 10%;
  padding-right: 10%;
}
.navbar .logo {
  text-transform: uppercase;
  line-height: 0.9;
}
.navbar .logo span {
  letter-spacing: 0.15rem;
}
.navbar .logo a {
  text-decoration: none;
  color: #fff;
  font-size: 3rem;
}
.navbar .logo a:hover {
  color: #8574eb;
  transition: 0.2s;
}
.navbar li {
  list-style: none;
  display: inline-block;
  padding: 2rem;
}
.navbar li a {
  text-decoration: none;
  color: #fff;
  font-size: 2.3rem;
}
.navbar li a:hover {
  color: #8574eb;
  transition: 0.2s;
}

.nav-active {
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 100;
}

.show {
  display: none;
}

.header .bulb-5 {
  position: absolute;
  background-color: #908fdb;
  width: 200px;
  height: 200px;
  opacity: 0.25;
  filter: blur(70px);
}
.header .hero {
  height: 90vh;
  margin-top: 10vh;
  margin-left: 10%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.header .hero .text-block {
  position: relative;
  width: 90%;
  height: 100%;
}
.header .hero .text-block .bgimg {
  position: absolute;
  top: 20px;
  right: -60px;
  width: 120%;
  height: 100%;
  z-index: -100;
  background-image: url("../img/image-99_2.webp");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.15;
}
.header .hero .text-block .text {
  position: relative;
  top: 40px;
  width: 100%;
  height: 90%;
}
.header .hero .text-block .text .text-desktop {
  display: none;
}
.header .hero .text-block .text .text-mobile {
  font-size: 2rem;
  line-height: 2;
  font-weight: 300;
  text-align: center;
}
.header .hero .text-block .text h1 {
  color: #fff;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  line-height: 1.1;
  padding-bottom: 5rem;
  text-align: center;
}
.header .hero .text-block .text p {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.2;
  padding-bottom: 3rem;
}
.header .hero .text-block .text button {
  display: block;
  background-color: #8574eb;
  color: #fff;
  font-size: 1.5rem;
  padding: 1.5rem 3rem;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  margin: 7rem auto 15rem auto;
}
.header .hero .text-block .text button:hover {
  background-color: #332b66;
  transition: 0.2s;
}
.header .hero .text-block .text button a {
  text-decoration: none;
  color: #fff;
}
.header .hero .image-block {
  width: 100%;
  display: none;
}
.header .hero .image-block .hero-img {
  background-image: url("../img/image-99_2.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
  width: 100%;
}

.about {
  position: relative;
  height: auto;
}
.about .about-text {
  color: #fff;
  font-size: 2rem;
  padding: 5rem 1rem;
  font-weight: 300;
}
.about .bgimg {
  position: absolute;
  top: 20px;
  width: 90%;
  height: 100%;
  z-index: -100;
  background-image: url("../img/about-99_2.webp");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.2;
}
.about .desktop-extra {
  display: none;
}

.services {
  height: auto;
  margin-bottom: 8rem;
}

.service-cards {
  margin-top: 10rem;
}
.service-cards .card {
  position: relative;
  cursor: pointer;
  margin: 2rem 0;
  border-radius: 20px;
  padding: 2rem;
}
.service-cards .card .card-info {
  display: none;
  list-style: none;
  text-align: center;
  font-size: 2.2rem;
  line-height: 2.5;
  color: #fff;
  margin-bottom: 100px;
}
.service-cards .card .list-1 {
  margin-bottom: 70px;
}
.service-cards .card h3 {
  color: #fff;
  font-size: 3rem;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 600;
}
.service-cards .card .img {
  background-image: url("../img/design-99_2.webp");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 250px;
  width: 100%;
}
.service-cards .card .drop-btn1,
.service-cards .card .drop-btn2 {
  position: relative;
  top: -10px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 3rem;
  color: #fff;
  display: inline-block;
  width: 100%;
}
.service-cards .card .drop-btn1 .arrow,
.service-cards .card .drop-btn2 .arrow {
  text-align: center;
}
.service-cards .card .drop-btn2 {
  top: -40px;
}
.service-cards .card1 {
  position: relative;
}
.service-cards .card1 .img {
  height: 220px;
}
.service-cards .card2 {
  margin-top: 10rem;
}
.service-cards .card2 .img {
  background-image: url("../img/development-99_2.webp");
}

.card.active .card-info,
.card.active1 .card-info {
  display: inline-block;
}

.contact__form, .contact__form-top {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
}
.contact__form-label {
  margin-bottom: 0.2em;
  text-transform: uppercase;
  color: #fff;
}
.contact__form-input {
  margin-bottom: 1.6em;
  padding: 0.6em 1.2em;
  border: none;
  border-radius: 8px;
  font-size: 1.6rem;
}
.contact__form-textarea {
  margin-bottom: 1.6em;
  padding: 0.6em 1.2em;
  border: none;
  border-radius: 8px;
  font-size: 1.6rem;
  max-width: 100%;
  min-width: 100%;
  width: 100%;
  min-height: 200px;
}
.contact__form-btn {
  margin-top: 2rem;
  align-self: center;
  padding: 1em;
  width: 100%;
  max-width: 300px;
  color: #fff;
  border: none;
  border-radius: 8px;
  background-color: #8574eb;
  cursor: pointer;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.contact__form-btn::before {
  background-color: #332b66;
}
.contact .contact-text {
  margin: 4rem auto;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.5;
  color: #fff;
}

.footer {
  color: #fff;
  background-color: #010922;
}
.footer__bottom-text {
  padding: 2rem;
  text-align: center;
}

.msg-status {
  display: none;
  position: absolute;
  top: 10%;
  left: 0;
  padding: 30px;
  width: 100vw;
  height: 100px;
  border-radius: 12px;
  font-size: 24px;
  text-align: center;
  z-index: 10000;
}

.success {
  display: inline-block;
  background-color: hsl(143, 83%, 55%);
}

.error {
  display: flex;
  background-color: hsl(9, 100%, 64%);
}

@media (min-width: 390px) {
  .header .hero .text-block .text {
    width: 100%;
  }
  .header .hero .text-block .text h1 {
    margin-top: 5rem;
    font-size: 4.5rem;
  }
  .header .hero .text-block .text p.text-mobile {
    font-size: 2.2rem;
    line-height: 2;
  }
  .header .hero .text-block .text button {
    font-size: 2.5rem;
    margin: 10rem auto 10rem auto;
  }
  .about-text {
    margin: 2.5rem 0;
  }
  .about-text p {
    font-size: 2.5rem;
  }
}
@media (min-width: 520px) {
  .header .hero .text-block .text {
    width: 100%;
  }
  .header .hero .text-block .text h1 {
    margin-top: 5rem;
    font-size: 5.5rem;
  }
  .header .hero .text-block .text p.text-mobile {
    font-size: 2.5rem;
    line-height: 2;
  }
  .header .hero .text-block .text button {
    font-size: 2.5rem;
    margin: 14rem auto 14rem auto;
  }
}
@media (max-width: 767px) {
  .navbar {
    display: none;
  }
}
@media (min-width: 768px) {
  .nav {
    display: none;
  }
  .burger-btn {
    display: none;
  }
  .nav-logo {
    display: none;
  }
}
@media (min-width: 992px) {
  html {
    scroll-padding-top: 95px;
  }
  .bulb-5 {
    display: none;
  }
  .bulbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    overflow: visible;
  }
  .bulbs .bulb {
    position: absolute;
    width: 700px;
    height: 500px;
    background-color: #332b66;
    border-radius: 50%;
    opacity: 1;
    filter: blur(50px);
  }
  .bulbs .bulb.bulb-1 {
    top: -40%;
    left: -10%;
  }
  .bulbs .bulb.bulb-2 {
    background-color: #a4d7d7;
    width: 650px;
    height: 460px;
    border-radius: 50%;
    bottom: -25%;
    left: 80%;
    opacity: 0.25;
    transform: rotate(0deg);
    filter: blur(70px);
  }
  .bulbs .bulb.bulb-3 {
    top: 1700px;
    left: -400px;
    height: 700px;
    opacity: 0.5;
  }
  .bulbs .bulb.bulb-4 {
    overflow-y: hidden;
    bottom: -2000px;
    left: 20vw;
    height: 200px;
    width: 1200px;
    opacity: 0.5;
  }
  .header .hero {
    width: 80%;
    flex-direction: row;
  }
  .header .hero .text-block {
    width: 50%;
    margin-top: 8rem;
  }
  .header .hero .text-block .bgimg {
    display: none;
  }
  .header .hero .text-block .text {
    text-align: center;
  }
  .header .hero .text-block .text .text-mobile {
    display: none;
  }
  .header .hero .text-block .text .text-desktop {
    display: inline-block;
    width: 80%;
  }
  .header .hero .text-block .text h1 {
    font-size: 6rem;
  }
  .header .hero .text-block .text p {
    font-size: 2.5rem;
    line-height: 2;
  }
  .header .hero .text-block .text button {
    display: block;
    margin-top: 3rem;
  }
  .header .hero .image-block {
    width: 50%;
    display: inline-block;
  }
  .header .hero .image-block .hero-img {
    height: 100%;
    width: auto;
    top: 0;
    right: 0;
  }
  .about {
    width: 100%;
    margin-bottom: 8rem;
  }
  .about .containerr {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 8rem;
  }
  .about .about-text {
    display: inline;
    width: 55%;
    line-height: 1.8;
  }
  .about .about-text p {
    font-size: 2.3rem;
  }
  .about .bgimg {
    display: none;
  }
  .about .image-block {
    display: inline-block;
    width: 45%;
  }
  .about .image-block .about-img {
    background-image: url("../img/about-99_2.webp");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
    height: 100%;
    width: 100%;
  }
  .service-cards {
    display: flex;
    justify-content: space-evenly;
  }
  .service-cards .card .img {
    min-width: 300px;
  }
  .service-cards .card .card-info {
    position: relative;
    left: 10%;
    font-size: 2.3rem;
    line-height: 3;
    list-style: circle;
    text-align: left;
  }
  .service-cards .card .drop-btn2 {
    top: -40px;
  }
  .service-cards .card2 {
    margin-top: 2rem;
  }
  .service-cards .card2 .img {
    position: relative;
    top: -20px;
  }
  .service-cards .card2 .list-2 {
    position: relative;
    top: -30px;
  }
  .contact__form-top {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  .contact__form-top .contact__form-label {
    order: 1;
    width: 40%;
  }
  .contact__form-top .contact__form-input {
    width: 40%;
    order: 2;
  }
  .msgg {
    padding-left: 6.5%;
    width: 90%;
  }
  .txet {
    min-width: 87%;
    max-width: 87%;
    width: 87%;
    height: 300px;
    margin: 0 auto 2rem auto;
  }
  .contact .contact-text {
    text-align: center;
    font-size: 2.5rem;
  }
}
@media (min-height: 1100px) and (min-width: 1400px) {
  .header .hero {
    width: 80%;
    flex-direction: row;
  }
  .header .hero .text-block {
    width: 50%;
    margin: 28rem auto;
  }
  .header .hero .text-block .bgimg {
    display: none;
  }
  .header .hero .text-block .text {
    text-align: center;
  }
  .header .hero .text-block .text .text-mobile {
    display: none;
  }
  .header .hero .text-block .text .text-desktop {
    display: inline-block;
    width: 80%;
  }
  .header .hero .text-block .text h1 {
    font-size: 6rem;
  }
  .header .hero .text-block .text p {
    font-size: 2.5rem;
    line-height: 2;
  }
  .header .hero .text-block .text button {
    display: block;
    margin-top: 3rem;
  }
  .header .hero .image-block {
    width: 50%;
    display: inline-block;
  }
  .header .hero .image-block .hero-img {
    height: 100%;
    width: auto;
    top: 0;
    right: 0;
  }
  .bulbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    overflow: visible;
  }
  .bulbs .bulb {
    position: absolute;
    width: 700px;
    height: 500px;
    background-color: #332b66;
    border-radius: 50%;
    opacity: 1;
    filter: blur(50px);
  }
  .bulbs .bulb.bulb-1 {
    top: -25%;
    left: -5%;
  }
  .bulbs .bulb.bulb-2 {
    background-color: #a4d7d7;
    width: 850px;
    height: 760px;
    border-radius: 50%;
    bottom: -25%;
    left: 90%;
    opacity: 0.25;
    transform: rotate(0deg);
    filter: blur(70px);
  }
  .bulbs .bulb.bulb-3 {
    top: 1700px;
    left: -400px;
    height: 700px;
    opacity: 0.5;
  }
  .bulbs .bulb.bulb-4 {
    overflow-y: hidden;
    bottom: -1700px;
    left: 25vw;
    height: 200px;
    width: 1200px;
    opacity: 0.5;
  }
}/*# sourceMappingURL=style.css.map */