@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;800;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500;600;800;900&display=swap);

* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
a {
  color: inherit;
}
img {
  width: 100%;
}
html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  /* background: red; */
}
.maintitle {
  font-size: 48px;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -1px;
  line-height: 58px;
  margin: 20px 0 0;
}
/* Loader  */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0b043a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease;
}
.loader_content {
  position: relative;
  width: 250px;
}
.loader_content .spinner img {
  position: absolute;
  top: -85px;
  left: 10px;
  z-index: 1;
  width: 150px;
  height: 150px;
}
.loader_content .logo img {
  width: 200px;
  position: absolute;
  top: -30px;
  left: 30px;
  animation-name: logo;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
@keyframes logo {
  0% {
    left: 25px;
    transform: scale(1);
  }
  50% {
    left: 30px;
    transform: scale(1.1);
    transition: all 1s ease;
  }
  100% {
    left: 25px;
    transform: scale(1);
  }
}
/* a.button  */
a.button {
  display: none;
  color: #fff;
  width: 32px;
  height: 32px;
  background: #8750fc;
  padding: 7px 11px 8px 8.5px;
  position: fixed;
  float: right;
  bottom: 30px;
  right: 30px;
  border-radius: 3px;
}
a.button.show {
  display: block;
}
/* Header  */

.bg {
  background: url(../img/hero/hero-bg.jpg) no-repeat center center/cover;
}
.overlay1 {
  background: #0b043ac9;
}

.header {
  width: 100%;
  padding: 5px 60px;
  color: #fff;
  display: flex;
  align-items: center;
  background-color: transparent;
  transition: background-color 0.3s ease;
  position: fixed;
  z-index: 999;
  top: 0;
}

.header.scrolled {
  background-color: #0b043a;
  color: black;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #ccc;
}
.header .logo img {
  width: 180px;
  display: block;
}
.header .header_content ul.menyu {
  display: flex;
  gap: 15px;
  margin: 0 auto;
  color: #c3c0d8;
}
.header .header_content ul.menyu li a {
  display: block;
  padding: 35px 10px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  transition: 0.3s;
}
.header .header_content ul.menyu li a:hover {
  color: #fff;
}

.header .link a {
  display: block;
  color: #fff;
  border: 1px solid #fff;
  padding: 14px 26px;
  text-transform: capitalize;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
}
.header .link a:hover {
  background: #fff;
  color: #8750fc;
  transition: 0.3s;
  cursor: pointer;
}
.header .menu-toggle {
  display: none;
  cursor: pointer;
  width: 50px;
  height: 47px;
  position: relative;
  z-index: 1100;
  border: 1px solid #8750fc;
  padding: 10px 13px 12px;
  margin: 0 20px;
}
.header .menu-toggle div {
  width: 100%;
  height: 2px;
  background: #8750fc;
  margin: 5px 0;
  transition: 0.4s;
}
.header .menu-toggle.active .bar1 {
  transform: translateY(7px) rotate(45deg);
}
.header .menu-toggle.active .bar2 {
  opacity: 0;
}
.header .menu-toggle.active .bar3 {
  transform: translateY(-7px) rotate(-45deg);
}
/* Hero  */
.hero_content {
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: 90px 0 90px;
}
.hero_content .text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 90px 0 130px;
}
.hero_content .text h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 64px;
  line-height: 74px;
  width: 70%;
  text-align: center;
  margin: 0 auto;
  letter-spacing: -1px;
}
.hero_content .text p {
  line-height: 30px;
}
.hero_content .text .links {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin: 40px auto 0px;
}
.hero_content .text .links .link a {
  display: block;
  color: #fff;
  border: 1px solid #fff;
  padding: 18px 32px;
  text-transform: capitalize;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
}
.hero_content .text .links .link a:hover {
  background: #fff;
  color: #8750fc;
  cursor: pointer;
  transition: 0.3s;
}
.hero_content .text .links .link:first-child a {
  background: #8750fc;
  border: 1px solid #8750fc;
}
.hero_content .text .links .link:first-child a:hover {
  background: #fff;
  color: #8750fc;
  border: 1px solid #fff;
  transition: 0.3s;
}
.hero_content .brands {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.hero_content .brands p {
  font-size: 16px;
  font-weight: 600;
  color: #c3c0cf;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero_content .brands .logos {
  width: 75%;
  margin: auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-evenly;
  align-items: center;
}
.hero_content .brands .logos .item img {
  width: 90px;
}
/* About  */
.about {
  background: #0b043a;
  color: #fff;
  padding: 100px 20px 0px;
}
.about .about_content {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #938db9;
  padding: 30px 0 100px;
  overflow-x: hidden;
}

.about_content .img .border {
  width: 370px;
  height: 100%;
  background: #1b1448;
  text-align: center;
  padding: 0 15px 0px;
  border: 1px solid #3e376c;
  display: flex;
  flex-direction: column;
}
.about_content .img .border .tools {
  display: flex;
  gap: 25px;
  padding: 0px 25px 30px 20px;
}
.about_content .img .border .tools img {
  width: 20px;
}
.about_content .img .border .item img {
  width: 340px;
  height: 70%;
  position: relative;
  top: -30px;
  right: -70px;
}
.about_content .text {
  width: 725px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* background: blue; */
}
.about_content .text h1 {
  font-size: 32px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 1.5;
}
.about_content .text p {
  color: #c3c0d8;
  line-height: 2;
}
/* Services  */
.services {
  background: #0b043a;
  color: #fff;
  padding: 45px 20px 0;
}
.services_content {
  overflow: hidden;
}
.services_content .item {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 75px 0px 40px;
  border-bottom: 1px solid #938db9;
}
.services_content .item:first-child {
  padding: 50px 0 40px;
}
.services_content .item:last-child {
  padding: 75px 0;
}
.services_content .item .item_content {
  width: 520px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.services_content .item .item_content .number {
  color: #8750fc;
  margin: 10px 0 0px;
}
.services_content .item .item_content .title {
  color: #fff;
  margin: 13px 0 15px;
  letter-spacing: -0.5px;
  font-size: 40px;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
}
.services_content .item .item_content .text {
  line-height: 30px;
}
.services_content .item .item_content .information {
  color: #c3c0d8;
}
.services_content .item .item_content .information .type {
  margin: 32px 7px;
}
.services_content .item .item_content .information .type .type_content {
  display: flex;
  gap: 17px;
  line-height: 2.3;
  align-items: center;
}
.services_content .item .item_content .information .type img {
  width: 8px;
}
.services_content .item .img img {
  height: 100%;
  padding: 0 15px 30px;
}
/* Work  */
.work {
  color: #fff;
  padding: 50px 0px 0;
  background: #0b043a;
}
.work_content {
  overflow: hidden;
}
.work_content .title span {
  display: block;
  color: #c3c0d8;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  text-transform: uppercase;
}
.work_content .title p {
  font-size: 40px;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  line-height: 52px;
  text-transform: capitalize;
  margin: 8px 0 10px;
}
.work_content .item1 {
  width: 100%;
  display: flex;
  gap: 0;
  border: 1px solid #938db9;
  background: rgba(27, 20, 72, 0.9);
  margin: 40px 0;
}
.work_content .item1 .img img {
  width: 790px;
  height: 100%;
}
.work_content .item1 .item_content {
  padding: 122px 40px;
}

.work_content .item1 .item_content .text p {
  color: #c3c0d8;
  line-height: 30px;
  margin: 0 0 65px;
}

.work_content .item1 .item_content .link a {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}
.work_content .item1 .item_content .link a img {
  width: 16px;
}
.work_content .item1 .item_content .link a:hover {
  color: #8750fc;
  transition: 0.3s;
}
.work_content .box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.work_content .box .item {
  border: 1px solid #938db9;
  width: calc((1200px - 26px) / 2);
  background: rgba(27, 20, 72, 0.9);
  margin: 0 0 30px;
}

.work_content .box .item .item_img img {
  height: 100%;
  margin: 0;
}
.work_content .box .item .title {
  padding: 48px 32px 22px;
}
.work_content .btn a {
  display: block;
  color: #fff;
  background: #8750fc;
  border: 1px solid #8750fc;
  padding: 18px 32px;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  text-align: center;
  margin: 10px auto;
  width: fit-content;
}
.work_content .btn a:hover {
  background: #fff;
  color: #8750fc;
  border: 1px solid #fff;
  cursor: pointer;
  transition: 0.3s;
}
/* Numbers  */
.numbers {
  padding: 80px 20px 30px;
}
.numbers_content {
  padding: 80px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.numbers_content .item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  color: #c3c0d8;
  border-right: 1px solid #c3c0d8;
  width: 280px;
}
.numbers_content .item:last-child {
  border: none;
  padding: 0 0px 0 40px;
}
.numbers_content .item .number {
  color: #fff;
  font-size: 64px;
}
/* Clients  */
.clients {
  padding: 45px 20px;
}
.clients .maintitle {
  text-align: center;
  margin: 0 0 60px;
}
.clients_content {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
}
.clients_content .item {
  width: calc((1200px - 40px) / 2);
  background: rgba(27, 20, 72, 0.932);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 35px 35px 32px;
  margin: 0 0 40px;
}
.clients_content .item .box1 {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.clients_content .item .rate {
  display: flex;
  margin: 0 0 24px;
}

.clients_content .item .rate img {
  width: 18px;
}

.clients_content .item .text p {
  line-height: 26px;
}
.clients_content .item .client_name {
  display: flex;
  gap: 15px;
  align-items: center;
}
.clients_content .item .client_name img {
  width: 36px;
  border-radius: 50%;
}
/* Footer  */
.footer {
  background: url(../img/footer/footer-bg.jpg) no-repeat center center/cover;
  width: 100%;
  height: 100%;
  margin: 15px 0 0;
  border-bottom: 1px solid #c3c0d8;
}
.footer .overlay2 {
  background: #0b043ac9;
}
.footer_content {
  padding: 100px 0;
  overflow: hidden;
  display: flex;
  justify-content: space-evenly;
  gap: 25px;
  flex-wrap: wrap;
}
.footer_content .item_nth {
  width: 270px;
}
.footer_content .item {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer_content .item .logo img {
  width: 250px;
  display: block;
}
.footer_content .item .text p {
  font-size: 16px;
}
.footer_content .item_nth {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: start;
}
.footer_content .item_nth .footer_title {
  font-size: 30px;
  font-weight: 600;
}
.footer_content .item_nth .links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: start;
}
.footer_content .item_nth .links a {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 20px;
  text-transform: capitalize;
}
.footer_content .item_nth .links a:hover {
  color: #8750fc;
  transition: all 0.7s ease ;
}
.footer_content .bir .links a {
  gap: 10px;
}
.footer_content .bir .links a i {
  font-size: 26px;
}
/* Creator  */
.creator_content p {
  text-align: center;
  font-size: 16px;
  text-transform: capitalize;
  padding: 30px 0;
}
/* Responsive  */
@media screen and(max-width: 1115px) {
  .about_content {
    justify-content: space-around;
  }
}
@media screen and (max-width: 1220px) {
  .header {
    padding: 5px 30px;
  }
}
@media screen and (max-width: 880px) {
  .header {
    padding: 5px 20px;
  }
}
@media screen and (max-width: 825px) {
  .header .link {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .header {
    padding: 20px 20px;
  }
  .header .menu-toggle {
    display: block;
  }
  .header .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #1b1448;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s ease, opacity 0.5s ease;
  }
  .header .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .header .nav-menu .header_content ul.menyu {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .header .nav-menu .header_content ul li {
    width: 100%;
    padding: 0px;
    border-bottom: 1px solid #ccc;
  }

  .header .nav-menu .header_content ul li a:hover {
    color: #8750fc;
    transition: all 0.7s ease;
  }
  .header .nav-menu .header_content ul li a {
    display: block;
    padding: 20px 32px;
    color: #fff;
    font-weight: 500;
  }
}
/* https://websitedemos.net/web-developer-04/?customize=template# */
/* https://loading.io/ */