:root {
  --colors--bgd: #05031c;
  --sizes--container-4: 1200px;
  --sizes--container: 1600px;
  --fonts--main-font: "Plus Jakarta Sans", sans-serif;
  --colors--main-text: #f88e33;
  --colors--sub-text: #ee3e36;
  --white: white;
  --black: black;
  --sizes--contaner-2: 960px;
  --sizes--container-3: 1000px;
}

.body {
  background-color: var(--colors--bgd);
}

.hero-section {
  background-color: var(--colors--bgd);
  height: 100vh;
}

.container {
  max-width: var(--sizes--container-4);
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.container.nav-container {
  max-width: var(--sizes--container);
}

.container.footer {
  border-top-style: none;
  border-top-width: 0;
  height: 200px;
}

.hero-heading {
  font-family: var(--fonts--main-font);
  color: #fff;
  text-align: justify;
  margin-top: 140px;
  font-size: 51px;
  line-height: 66px;
}

.hero-txt {
  font-family: var(--fonts--main-font);
  color: #fff;
  text-align: justify;
  margin-top: 20px;
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
}

.ctn-btn {
  border: 2px solid var(--colors--main-text);
  font-family: var(--fonts--main-font);
  color: var(--colors--main-text);
  background-color: #0000;
  border-radius: 10px;
  margin-top: 20px;
  font-weight: 800;
}

.ctn-btn:hover {
  background-image: linear-gradient(90deg, var(--colors--main-text), var(--colors--sub-text));
  color: var(--colors--bgd);
}

.hero-heading-bold {
  background-image: radial-gradient(circle farthest-corner at 50% 50%, var(--colors--main-text), var(--colors--sub-text));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.circle {
  background-color: var(--colors--main-text);
  border-radius: 400px;
  width: 300px;
  height: 300px;
  position: absolute;
  inset: -57px auto 0% -30%;
}

.floating-elements {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.columns {
  justify-content: center;
  align-items: center;
  display: flex;
}

.navbar {
  background-color: var(--colors--bgd);
  box-shadow: 0 2px 10px 0 var(--colors--main-text);
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  position: fixed;
  inset: 0% 0% auto;
}

.container-2 {
  box-shadow: 0 2px 5px #0003;
}

.services {
  background-color: var(--colors--bgd);
  height: auto;
  padding-top: 220px;
  padding-bottom: 220px;
}

.nav-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.brand {
  float: none;
  margin-top: 20px;
  margin-bottom: 20px;
}

.nav-menu {
  float: none;
  padding-top: 20px;
  padding-bottom: 20px;
}

.menu-button {
  float: none;
}

.nav-link {
  color: var(--colors--main-text);
  margin-left: 60px;
  text-decoration: none;
}

.link-text {
  font-family: var(--fonts--main-font);
  font-weight: 800;
}

.link-hover {
  background-color: var(--colors--main-text);
  height: 2px;
  margin-top: 3px;
  margin-left: auto;
  margin-right: auto;
}

.main-cta {
  border: 3px solid var(--colors--main-text);
  color: var(--colors--main-text);
  border-radius: 50px;
  margin-left: 60px;
  text-decoration: none;
  position: relative;
}

.main-cta-txt {
  z-index: 11;
  font-family: var(--fonts--main-font);
  color: var(--colors--main-text);
  padding: 10px 40px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}

.main-cta-hover {
  z-index: 10;
  background-image: linear-gradient(90deg, var(--colors--main-text), var(--colors--sub-text));
  border-radius: 50px;
  width: 0%;
  position: absolute;
  inset: 0%;
}

.logo {
  margin-left: 10px;
}

.floating-circle {
  background-color: var(--colors--main-text);
  border-radius: 400px;
  width: 150px;
  height: 150px;
  position: absolute;
  inset: auto auto 3% -4%;
}

.kali {
  float: none;
  object-fit: cover;
  margin-top: 100px;
  margin-left: 10px;
}

.nav-line {
  background-color: var(--colors--main-text);
  width: 0%;
  height: 1px;
}

.section-heading {
  font-family: var(--fonts--main-font);
  color: var(--colors--main-text);
  font-size: 24px;
  font-weight: 800;
}

.section-txt-white {
  font-family: var(--fonts--main-font);
  color: var(--white);
  font-size: 48px;
  font-weight: 700;
  line-height: 36px;
}

.section-txt-gradient {
  background-image: linear-gradient(90deg, var(--colors--main-text), var(--colors--sub-text));
  font-family: var(--fonts--main-font);
  text-align: left;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.section-heading-white {
  font-family: var(--fonts--main-font);
  color: var(--white);
  font-size: 48px;
  font-weight: 700;
  line-height: 36px;
}

.service-columns {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: row;
  margin-top: 40px;
  display: flex;
}

.service-wrapper1 {
  object-fit: fill;
  background-color: #d9d9d91a;
  border-radius: 10px;
  position: relative;
}

.service-wrapper2, .service-wrapper3 {
  background-color: #d9d9d91a;
  border-radius: 10px;
}

.div-block {
  display: flex;
}

.services-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-top: 40px;
  display: flex;
}

.web-design {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #d9d9d91a;
  border-radius: 10px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  width: 440px;
  height: 280px;
}

.web-development, .seo {
  background-color: #d9d9d91a;
  border-radius: 10px;
  width: 440px;
  height: 280px;
}

.heading {
  background-image: linear-gradient(90deg, var(--colors--main-text), var(--colors--sub-text));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  flex: 1;
  margin-top: 20px;
  margin-left: 20px;
  font-size: 24px;
  line-height: 30px;
}

.image {
  max-width: 64%;
  max-height: 64px;
  margin-top: 10px;
  margin-left: 20px;
  position: static;
}

.text-block {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.heading-service-wrapper {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.text-service-wrapper {
  margin-top: 20px;
}

.heading-services {
  background-image: linear-gradient(180deg, var(--colors--main-text), var(--colors--sub-text));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-left: 20px;
}

.service-pic {
  margin-left: 20px;
}

.service-txt {
  font-family: var(--fonts--main-font);
  color: #ffffffb3;
  text-align: left;
  margin-left: 20px;
  margin-right: 20px;
  font-size: 22px;
  line-height: 30px;
}

.portfolio {
  background-color: var(--colors--bgd);
  height: auto;
  padding-top: 220px;
  padding-bottom: 220px;
}

.portfolio-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
  display: grid;
}

.project-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.project-wrapper.emty-slot {
  justify-content: flex-start;
  align-items: flex-start;
}

.project-txt {
  background-color: #d9d9d91a;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  padding-bottom: 10px;
  padding-left: 10px;
  display: flex;
  transform: rotate(0);
}

.project-video {
  width: 50%;
}

.project-heading {
  font-family: var(--fonts--main-font);
  color: var(--colors--main-text);
}

.project-heading.in-project {
  background-image: linear-gradient(180deg, var(--colors--main-text), var(--colors--sub-text));
  text-align: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.prj-txt {
  font-family: var(--fonts--main-font);
  color: var(--white);
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.prj-txt.in-project {
  text-align: center;
  color: #ffffffb3;
  margin-top: 20px;
  font-size: 16px;
}

.link {
  font-family: var(--fonts--main-font);
  color: var(--colors--main-text);
  margin-top: 10px;
  text-decoration: none;
  display: block;
}

.video-wrapper {
  background-color: #d9d9d91a;
  border-radius: 10px;
  width: 100%;
  height: 320px;
}

.project-link {
  font-family: var(--fonts--main-font);
  color: var(--colors--main-text);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
}

.video {
  border-radius: 10px;
  height: 100%;
}

.open-live {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  margin-top: 10px;
  display: flex;
}

.content-video {
  border-radius: 10px;
  height: 100%;
}

.content-video.pizza {
  border-radius: 10px;
}

.project {
  background-color: #d9d9d91a;
  border-radius: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 320px;
  display: flex;
}

.heading-2 {
  font-family: var(--fonts--main-font);
  color: var(--colors--main-text);
  text-align: left;
  padding-left: 20px;
}

.project-pic {
  margin-top: 20px;
}

.testimonials {
  background-color: var(--colors--bgd);
  padding-top: 220px;
  padding-bottom: 220px;
}

.slider {
  background-color: var(--colors--bgd);
}

.testimonials-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-top: 40px;
  display: flex;
}

.testimonial {
  background-color: #d9d9d91a;
  border-radius: 10px;
  width: 440px;
  height: 280px;
}

.marketing-wrapper {
  background-color: #d9d9d91a;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 15.5em;
  margin-top: 220px;
  display: flex;
}

.marketing-text {
  background-image: linear-gradient(90deg, var(--colors--main-text), var(--colors--sub-text));
  font-family: var(--fonts--main-font);
  color: #fff;
  text-align: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 36px;
  font-weight: 800;
  line-height: 150%;
}

.client {
  font-family: var(--fonts--main-font);
  color: var(--colors--main-text);
  margin-top: 20px;
  margin-left: 10px;
  font-size: 24px;
  font-weight: 700;
}

.function {
  font-family: var(--fonts--main-font);
  color: var(--white);
  margin-top: 10px;
  margin-left: 10px;
  font-weight: 400;
}

.text-block-4 {
  font-family: var(--fonts--main-font);
  color: var(--white);
  margin-top: 20px;
  margin-left: 10px;
  font-size: 18px;
  font-weight: 200;
}

.text-block-5 {
  font-family: var(--fonts--main-font);
  font-weight: 200;
}

.word {
  font-family: var(--fonts--main-font);
  color: #ffffffb3;
  margin-top: 20px;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 16px;
  font-weight: 200;
  line-height: 20px;
}

.footer {
  border-top: .5px solid var(--colors--main-text);
  background-color: var(--colors--bgd);
}

.footer-txt {
  font-family: var(--fonts--main-font);
  color: var(--white);
  text-align: right;
  font-size: 18px;
}

.copyright {
  font-family: var(--fonts--main-font);
  color: var(--white);
  text-align: center;
}

.footer-columns {
  margin-top: 20px;
  margin-bottom: 40px;
  padding-top: 20px;
}

.right-column {
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
}

.linkedinn {
  float: right;
  margin-top: 10px;
}

.image-5, .image-6, .image-7 {
  float: right;
  margin-top: 10px;
  margin-right: 10px;
}

.linkedin, .whatsapp, .mail {
  float: right;
  margin-top: 10px;
}

.mail-pic, .whatsapp-pic {
  margin-right: 10px;
}

@media screen and (max-width: 991px) {
  .hero-section {
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding-top: 260px;
    padding-bottom: 260px;
    display: flex;
  }

  .hero-heading {
    text-align: justify;
    font-size: 31px;
    line-height: 32px;
  }

  .hero-txt {
    text-align: left;
    font-size: 20px;
  }

  .navbar {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .services {
    height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .nav-menu, .menu-button.w--open {
    background-color: var(--colors--bgd);
  }

  .floating-circle {
    width: 100px;
    height: 100px;
    left: -7%;
  }

  .kali {
    object-fit: contain;
  }

  .section-heading {
    font-size: 18px;
  }

  .section-txt-gradient {
    font-size: 18px;
    line-height: 28px;
  }

  .section-heading-white {
    font-size: 24px;
  }

  .web-design, .web-development, .seo {
    height: 300px;
  }

  .heading-service-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .text-service-wrapper {
    margin-top: 10px;
  }

  .heading-services {
    font-size: 16px;
    line-height: 24px;
  }

  .service-txt {
    text-align: center;
    font-size: 14px;
    line-height: 24px;
  }

  .portfolio {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .portfolio-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .project-wrapper {
    width: 90%;
    margin-top: 40px;
  }

  .project-heading {
    font-size: 18px;
  }

  .project-heading.in-project {
    font-size: 24px;
  }

  .prj-txt {
    text-align: left;
    font-size: 18px;
  }

  .prj-txt.in-project, .project-link {
    font-size: 18px;
  }

  .testimonials {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .testimonial {
    height: 380px;
  }

  .marketing-text {
    font-size: 30px;
  }

  .client {
    font-size: 18px;
  }

  .function {
    font-size: 12px;
  }

  .word {
    font-size: 14px;
    line-height: 22px;
  }

  .icon {
    background-color: var(--colors--main-text);
  }
}

@media screen and (max-width: 767px) {
  .hero-section {
    height: 100vh;
    padding-top: 260px;
    padding-bottom: 260px;
  }

  .hero-heading {
    text-align: left;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 22px;
    line-height: 120%;
  }

  .hero-txt {
    text-align: left;
    font-size: 14px;
    line-height: 150%;
  }

  .columns {
    flex-flow: row;
  }

  .services {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .nav-link {
    margin-top: 20px;
    margin-left: 0;
    display: block;
  }

  .link-text {
    font-size: 12px;
  }

  .main-cta {
    margin-top: 10px;
    margin-left: 0;
  }

  .main-cta-txt {
    font-size: 12px;
  }

  .floating-circle {
    width: 80px;
    height: 80px;
    display: none;
  }

  .kali {
    margin-top: 0;
  }

  .section-heading, .section-txt-gradient {
    font-size: 16px;
    line-height: 150%;
  }

  .section-heading-white {
    font-size: 18px;
    line-height: 150%;
  }

  .services-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .web-design, .web-development, .seo {
    align-self: flex-start;
    width: 90%;
    height: 200px;
  }

  .heading-service-wrapper {
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .heading-services {
    font-size: 18px;
    line-height: 120%;
  }

  .service-txt {
    text-align: left;
    font-size: 16px;
    line-height: 120%;
  }

  .portfolio {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .portfolio-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .project-wrapper {
    width: 100%;
    margin-top: 20px;
  }

  .project-wrapper.emty-slot {
    margin-top: 40px;
  }

  .project-heading, .project-heading.in-project {
    font-size: 18px;
    line-height: 120%;
  }

  .prj-txt {
    text-align: left;
    font-size: 16px;
    line-height: 130%;
  }

  .prj-txt.in-project {
    font-size: 16px;
    line-height: 120%;
  }

  .video-wrapper {
    align-self: flex-start;
    width: 90%;
  }

  .project-link {
    font-size: 16px;
  }

  .open-live {
    justify-content: center;
    align-items: center;
  }

  .content-video, .content-video.law-firm {
    border-radius: 10px;
  }

  .project {
    align-self: flex-start;
    width: 90%;
  }

  .testimonials-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .testimonial {
    align-self: flex-start;
    width: 90%;
    height: 250px;
    margin-top: 10px;
  }

  .marketing-text {
    font-size: 22px;
  }

  .client {
    line-height: 120%;
  }

  .function {
    font-size: 14px;
    line-height: 120%;
  }

  .word {
    font-size: 16px;
    line-height: 120%;
  }

  .footer-txt {
    font-size: 14px;
    line-height: 120%;
  }

  .copyright {
    font-size: 12px;
  }

  .footer-columns {
    display: flex;
  }

  .bold-text-2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 479px) {
  .hero-section {
    justify-content: center;
    align-items: flex-start;
    height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .hero-heading {
    text-align: justify;
    font-size: 22px;
  }

  .hero-txt {
    font-size: 14px;
    line-height: 120%;
  }

  .column {
    margin-top: 40px;
  }

  .columns {
    flex-flow: column;
    margin-top: 100px;
  }

  .kali {
    width: 400px;
    height: 300px;
    margin-top: 0;
    margin-left: 0;
  }

  .section-heading {
    font-size: 14px;
  }

  .section-txt-gradient {
    text-align: left;
    font-size: 14px;
  }

  .section-heading-white {
    font-size: 16px;
  }

  .web-design, .web-development, .seo {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }

  .heading-services {
    font-size: 16px;
  }

  .service-txt {
    text-align: left;
    margin-right: 20px;
    font-size: 14px;
  }

  .project-wrapper {
    margin-top: 40px;
  }

  .project-heading, .project-heading.in-project {
    font-size: 16px;
  }

  .prj-txt, .prj-txt.in-project {
    font-size: 14px;
  }

  .video-wrapper {
    width: 100%;
  }

  .project-link {
    font-size: 14px;
  }

  .open-live {
    justify-content: center;
    align-items: flex-start;
  }

  .project {
    width: 100%;
  }

  .testimonial {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 300px;
    display: flex;
  }

  .marketing-text {
    font-size: 20px;
  }

  .client {
    margin-left: 10px;
    font-size: 16px;
  }

  .function {
    margin-left: 10px;
    font-size: 12px;
  }

  .word {
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 14px;
  }

  .footer-txt {
    font-size: 12px;
  }

  .copyright {
    font-size: 10px;
  }

  .bold-text-2 {
    font-size: 18px;
  }
}


