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

body {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  background-color: white;
}

.wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.graph-section,
.services-section {
  background-color: #f8f9fa;
}

.burger-btn {
  position: fixed;
  padding: 20px;
  right: 20px;
  top: 15px;
  background: none;
  border: 1px solid transparent;
  z-index: 1000;
  cursor: pointer;
}

.burger {
  width: 20px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
}

.burger div {
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: 0.4s;
  border-radius: 5px;
}

.burger.open div:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.burger.open div:nth-child(2) {
  opacity: 0;
}

.burger.open div:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav {
  position: fixed;
  top: 0;
  height: 90px;
  width: 100vw;
  background-color: rgba(248, 249, 250, 0.7882352941);
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.0941176471);
  z-index: 100;
  overflow: hidden;
}
.nav-blur {
  position: relative;
  width: 100vw;
  height: 90px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.nav__logo {
  position: fixed;
  padding: 20px;
  left: 20px;
  top: 9px;
  font-weight: 900;
  color: #023047;
  z-index: 1000;
}
.nav__items {
  position: fixed;
  display: none;
  flex-direction: column;
  top: 90px;
  width: 100%;
  max-width: 100%;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.0941176471);
  background-color: white;
  z-index: 101;
}
.nav__item {
  position: relative;
  display: block;
  margin: 5px 10px;
  padding: 10px 10px;
  font-size: 1rem;
  color: #6c757d;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s;
}
.nav__item:hover {
  background-color: #ececec;
  color: #000000;
}
.nav__button {
  margin: 10px 10px;
  padding: 10px 10px;
  font-size: 1.2rem;
  border: none;
  border-radius: 10px;
  background-color: #023047;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s;
}
.nav__button:hover {
  transform: scale(1.02);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
  padding: 100px 20px;
  overflow: hidden;
}
.hero .hero-leftside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}
.hero-word {
  display: inline-block;
  width: 120px;
  color: #fb8500;
}
.hero-title {
  margin-bottom: 10px;
  font-size: 3rem;
  text-align: left;
  color: #023047;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.2;
}
.hero-desc {
  margin-top: 40px;
  font-size: 1.2rem;
  text-align: left;
  line-height: 2;
  color: #6c757d;
}
.hero .button-container {
  display: flex;
  flex-direction: column;
}
.hero-cta, .hero-cta2 {
  position: relative;
  padding: 1em 2em;
  font-size: 1rem;
  border-radius: 10px;
  font-weight: 700;
  transition: background-color 0.3s;
  cursor: pointer;
}
.hero-cta {
  margin-top: 40px;
  height: 55px;
  color: white;
  background-color: #fb8500;
  border: none;
}
.hero-cta2 {
  margin-top: 10px;
  background-color: transparent;
  border: 2px #023047 solid;
  color: #023047;
}
.hero-img {
  position: relative;
  height: 30vh;
  width: 100%;
  margin: 48px 0 auto;
  border-radius: 10px;
  overflow: hidden;
}
.hero-img__inside {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero-cta2:hover {
  background-color: #ebebeb;
}
.hero-cta:hover {
  background-color: #e66f01;
}

.graph {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0px auto;
  padding: 100px 20px;
  background-color: #f8f9fa;
}
.graph__boxes {
  width: 100%;
}
.graph__title {
  text-align: center;
  color: #023047;
}
.graph__desc {
  font-size: 1.2rem;
  text-align: center;
  margin: 24px auto;
  color: #6c757d;
}
.graph__box {
  width: 100%;
  padding: 20px;
  margin-top: 24px;
  border-radius: 10px;
  background-color: white;
}
.graph__box h4,
.graph__box div {
  text-align: center;
  padding: 10px;
}
.graph__box h4 {
  font-size: 1.2rem;
  color: #023047;
}
.graph__box div {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.graph__box--desc {
  padding: 10px;
  font-size: 1rem;
  text-align: center;
  color: #6c757d;
}
.graph__box--organic {
  margin-top: 48px;
}
.graph__box--info h3 {
  font-size: 1.8rem;
  color: #023047;
}
.graph__box--info h3,
.graph__box--info p {
  padding: 0 10px;
}
.graph__box--arrow {
  transform: rotate(-45deg);
  color: #2a9d8f;
}
.graph__chart {
  padding-top: 48px;
  width: 80vw;
}
.graph__chart canvas {
  width: 100%;
  height: 400px;
}

.whyus {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0px auto;
  padding: 100px 20px;
  overflow: hidden;
}
.whyus__title {
  text-align: center;
  color: #023047;
}
.whyus__desc {
  font-size: 1.2rem;
  text-align: center;
  margin: 24px auto;
  color: #6c757d;
}
.whyus__boxes {
  margin-top: 1em;
}
.whyus__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px;
  margin-top: 24px;
  border-radius: 10px;
  background-color: #f8f9fa;
  transition: box-shadow 0.3s;
}
.whyus__box--desc {
  padding: 10px 10px 0px 10px;
  font-size: 1rem;
  text-align: center;
  color: #6c757d;
}
.whyus__box h3 {
  font-size: 1.8rem;
  text-align: center;
  padding: 10px 0;
  color: #023047;
}
.whyus__box--iconbox {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  border-radius: 10px;
  color: white;
  background-color: #023047;
}
.whyus__box:hover {
  box-shadow: 0 5px 10px rgba(46, 46, 46, 0.1803921569);
}

.services {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0px auto;
  padding: 100px 20px;
  background-color: #f8f9fa;
  overflow: hidden;
}
.services__boxes {
  margin-top: 1em;
}
.services__title {
  text-align: center;
  color: #023047;
}
.services__desc {
  font-size: 1.2rem;
  text-align: center;
  margin: 24px auto;
  color: #6c757d;
}
.services__box {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  width: 100%;
  padding: 20px;
  margin-top: 24px;
  border-radius: 10px;
  background-color: #ffffff;
  transition: box-shadow 0.3s;
  overflow: hidden;
  word-wrap: break-word; /* Allows text wrapping */
  overflow-wrap: anywhere; /* Ensures long words break properly */
  word-break: keep-all; /* Prevents breaking hyphenated words */
  white-space: normal;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.services__box:hover {
  box-shadow: 0 5px 10px rgba(46, 46, 46, 0.1803921569);
}
.services__box--desc {
  grid-column: 2/3;
  padding: 10px 0;
  font-size: 1rem;
  text-align: left;
  color: #6c757d;
}
.services__box h3 {
  grid-row: 1/2;
  font-size: 1.8rem;
  text-align: left;
  padding: 10px 0;
  color: #023047;
}
.services__box--iconbox {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-row: 1/2;
  height: 60px;
  width: 60px;
  border-radius: 10px;
  background-color: #023047;
  color: white;
}

.collab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0px auto;
  padding: 100px 20px;
  overflow: hidden;
}
.collab__boxes {
  margin-top: 1em;
}
.collab__title {
  text-align: center;
  color: #023047;
}
.collab__desc {
  font-size: 1.2rem;
  text-align: center;
  margin: 24px auto;
  color: #6c757d;
}
.collab__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px;
  margin-top: 24px;
  border-top: 2px solid #023047;
  border-radius: 10px;
  background-color: #f8f9fa;
  transition: box-shadow 0.3s;
}
.collab__box--desc {
  padding: 10px 10px 0px 10px;
  font-size: 1rem;
  text-align: center;
  color: #6c757d;
}
.collab__box h3 {
  font-size: 1.8rem;
  text-align: center;
  padding: 10px 0;
  color: #023047;
}

.footer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0px auto;
  padding: 100px 20px 0px 20px;
  text-align: center;
  background-color: #023047;
  color: white;
  overflow: hidden;
}
.footer__desc {
  font-size: 1.2rem;
  text-align: center;
  margin: 24px auto;
  color: #dddddd;
}
.footer__cta {
  padding: 1em 2em;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 10px;
  color: white;
  background-color: #fb8500;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
}
.footer__cta:hover {
  background-color: #e66f01;
}
.footer .contact {
  position: relative;
  margin-top: 48px;
}
.footer .contact__form, .footer .contact__form-top {
  display: flex;
  flex-direction: column;
}
.footer .contact__form-msg, .footer .contact__form-email {
  position: absolute;
  font-size: 1rem;
}
.footer .contact__form-email {
  top: 2.5%;
  left: 4%;
  padding: 0 5px;
  color: rgba(221, 221, 221, 0.8666666667);
  transition: transform 0.3s;
}
.footer .contact__form-msg {
  top: 19%;
  left: 4%;
  padding: 0 5px;
  color: rgba(221, 221, 221, 0.8666666667);
  transition: transform 0.3s;
}
.footer .contact__form-input {
  margin-bottom: 2em;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2745098039);
  border-radius: 8px;
  font-size: 1rem;
  background-color: rgba(68, 51, 68, 0.2);
  color: #dddddd;
  font-family: "Tahoma";
  width: 100%;
}
.footer .contact__form-textarea {
  margin-bottom: 2em;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2745098039);
  border-radius: 8px;
  font-size: 1rem;
  background-color: rgba(68, 51, 68, 0.2);
  color: #dddddd;
  width: 100%;
  resize: none;
  height: 300px;
  font-family: "Tahoma";
}
.footer .contact__form-input:focus, .footer .contact__form-textarea:focus {
  outline: none;
  border: 1px solid #fff;
}
.footer .contact .active {
  transform: translateY(-110%);
  background-color: #023047;
  color: white;
}
.footer .contact .contact__form-input:focus ~ label {
  transform: translateY(-110%);
  background-color: #023047;
  color: white;
}
.footer .contact .contact__form-textarea:focus ~ label {
  transform: translateY(-110%);
  background-color: #023047;
  color: white;
}
.footer .contact__form-btn {
  align-self: flex-start;
  padding: 10px;
  width: 150px;
  max-width: 200px;
  font-size: 1rem;
  color: #000000;
  border: none;
  border-radius: 10px;
  background-color: #fff;
  transition: background-color 0.3s;
  cursor: pointer;
}
.footer .contact__form-btn:hover {
  background-color: #dddddd;
}
.footer .contact__form-btn::before {
  background-color: #000000;
}
.footer__contact {
  width: 100%;
  align-items: flex-start;
  margin-top: 48px;
  text-align: left;
  font-size: 1.2rem;
}
.footer__links {
  margin: 48px 0 20px 0;
  width: 100%;
}
.footer__links ul li {
  list-style-type: none;
  text-align: left;
  padding: 10px 0;
  font-size: 1.2rem;
}
.footer__links ul li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  transition: color 0.3s;
}
.footer__links ul li a:hover {
  color: #6c757d;
}
.footer__ph {
  padding: 10px 0;
}
.footer__ph, .footer__email {
  margin-top: 10px;
}
.footer__ph .fa-solid, .footer__email .fa-solid {
  padding-right: 5px;
}
.footer__name {
  padding: 10px 0;
  font-size: 1.6rem;
}
.footer__bottom-text {
  padding: 2em;
  text-align: center;
  font-size: 0.8rem;
}
.footer hr {
  margin-top: 2em;
  width: 100%;
  color: #6c757d;
}

@media (min-width: 280px) and (max-width: 340px) {
  .burger-btn {
    right: 5px;
  }
  .nav__logo {
    left: 5px;
  }
  .hero-title {
    max-width: 240px;
    font-size: 2.1rem;
  }
  .hero-cta {
    padding: 0.5em 1em;
  }
}
@media (max-width: 392px) and (min-width: 341px) {
  .hero-title {
    max-width: 270px;
  }
  h2 {
    font-size: 1.9rem;
  }
  .whyus h3,
  .services h3,
  .collab h3 {
    font-size: 1.6rem;
  }
}
@media (min-width: 342px) and (max-width: 462px) {
  .hero-title {
    max-width: 290px;
  }
}
@media (min-width: 463px) and (max-width: 738px) {
  .hero-title {
    max-width: 320px;
    font-size: 3.5rem;
  }
}
@media (min-width: 739px) and (max-width: 991px) {
  .hero-title {
    max-width: 750px;
    font-size: 3.5rem;
  }
}
@media (min-width: 992px) {
  .nav__logo {
    position: fixed;
    left: 20px;
    top: 9px;
    font-weight: 900;
  }
  .nav__items {
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    top: 9px;
    width: 100%;
    height: 70px;
    max-width: 100%;
    box-shadow: none;
    background-color: transparent;
    z-index: 101;
  }
  .nav__item {
    position: relative;
    display: block;
    margin: 5px 10px;
    padding: 10px 10px;
    font-size: 1.2rem;
    color: #6c757d;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s;
  }
  .nav__item::after {
    position: absolute;
    bottom: 5px;
    left: 0px;
    width: 0%;
    height: 2px;
    background-color: #000000;
    transition: width 0.3s;
    content: "";
  }
  .nav__item:hover {
    background-color: transparent;
  }
  .nav__item:hover::after {
    width: 100%;
  }
  .nav__button {
    display: none;
  }
  .nav__button:hover {
    transform: scale(1.02);
  }
  .nav__button2 {
    position: fixed;
    margin: 10px 10px;
    padding: 1em 2em;
    right: 20px;
    top: 9px;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    background-color: #023047;
    color: #ffffff;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.3s;
    z-index: 102;
  }
  .burger-btn {
    display: none;
  }
  .hero {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 900px;
    overflow: visible;
  }
  .hero-title {
    width: 500px;
  }
  .hero-img {
    background-image: url(../img/Asset\ 1@3x.png);
  }
  .hero-leftside {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 50%;
  }
  .hero-title {
    font-size: 4rem;
  }
  .hero .button-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .hero-cta2 {
    margin-top: 40px;
    margin-left: 1em;
  }
  .hero-img {
    height: 400px;
    max-width: 50%;
    margin: 48px 0 48px 48px;
  }
  .graph__boxes {
    display: flex;
    flex-direction: row;
  }
  .graph__box {
    margin: 1em;
  }
  .graph__chart {
    width: 100%;
  }
  .whyus__boxes {
    display: flex;
    flex-direction: row;
  }
  .whyus__box {
    margin: 0.5em;
  }
  .services__boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    -moz-column-gap: 1em;
         column-gap: 1em;
  }
  .services__box--development {
    grid-row: 1/2;
    grid-column: 1/2;
  }
  .services__box--optimization {
    grid-row: 1/2;
    grid-column: 2/3;
  }
  .services__box--audit {
    grid-row: 2/3;
    grid-column: 1/2;
  }
  .services__box--ecom {
    grid-row: 2/3;
    grid-column: 2/3;
  }
  .collab__boxes {
    display: flex;
    flex-direction: row;
  }
  .collab__box {
    margin: 0.5em;
  }
  .footer__elements {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 2fr;
    margin-top: 3em;
  }
  .footer__elements .contact {
    grid-column: 3/4;
  }
  .footer__elements .contact__form-textarea {
    max-width: 600px;
  }
  .footer__contact {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .footer__links {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}/*# sourceMappingURL=style.css.map */