* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: white;
  font-family: var(--mont);
  /* letter-spacing: -0.03em; */
}

html {
  scroll-behavior: smooth;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
}

:root {
  --darkblue: #0a0f24;
  --blue: #000060;
  --lightblue: #1877f2;
  --pale: #fafa7f;
  --accent: orange;
  --accent2: #f0f8ff;
  --mont: Montserrat;
}

body {
  position: relative;
  background-color: #0a0f24;
}

.sections {
  display: flex;
  padding: 0.5em;
  margin: 1em;
  gap: 2em;
  margin-top: 3em;
  animation: aniscroll linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.sections:last-of-type,
.sections:first-of-type {
  animation: aniscroll linear;
  animation-timeline: view();
  animation-range: entry 0% cover 0%;
}

@keyframes aniscroll {
  from {
    opacity: 0;
    scale: 0.5;
    /* clip-path: inset(100% 100% 0 0); */
  }
  to {
    opacity: 1;
    scale: 1;
    /* clip-path: inset(0 0 0 0); */
  }
}

.sub-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75em;
  text-align: center;
}

.sections .sub-section .heading {
  font-weight: 800;
}

.sections .sub-section .main-descrip span {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-weight: 700;
  font-size: 2em;
}

/* Text Styles */

p {
  font-family: Montserrat;
  font-weight: 100;
  font-size: 1.4em;
}

h1,
h2,
h3,
h5,
h6 {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 1.75em;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-family: var(--mont);
  font-size: 1.25em;
}

/* Button Styles */

button {
  cursor: pointer;
}

.default-btn {
  padding: 0.5em;
  padding-left: 2em;
  padding-right: 2em;
  border: none;
  color: #fff;
  border-radius: 0.5em;
  width: 15em;
  height: 3.5em;
  font-size: 1.2em;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.default-btn.one {
  background-color: var(--lightblue);
  color: #fff;
}

.default-btn.two {
  background: linear-gradient(
    -45deg,
    rgba(239, 239, 239, 0.2),
    rgba(10, 15, 36, 0.9),
    rgba(255, 255, 255, 0.43)
  );
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.8), 0 0 2px rgba(255, 255, 255, 0.5);
}

.default-btn.three {
  background-color: gray;
  color: #fff;
}

.default-btn.four {
  background-color: var(--lightblue);
  /* background: linear-gradient(
    45deg,
    rgba(24, 119, 242, 0.43),
    rgba(240, 248, 255, 0.9)
  ); */
  box-shadow: 0 0 1px rgba(24, 119, 242, 0.8), 0 0 2px (24, 119, 242, 0.5);
  color: #fff;
}

/* Section Styles */

.heading {
  background: linear-gradient(
    to right,
    rgba(239, 239, 239, 0.2),
    rgba(10, 15, 36, 0.9),
    rgba(255, 255, 255, 0.43)
  );
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.8), 0 0 2px rgba(255, 255, 255, 0.5);
  padding: 0.5em;
  width: auto;
  padding-left: 2em;
  padding-right: 2em;
  border-radius: 5em;
  text-align: center;
}

.main-descrip {
  font-size: 25px;
}

.main-descrip .highlighted {
  background-color: var(--blue);
  position: relative;
}

.main-descrip .highlighted::before {
  content: "";
  position: absolute;
  background-color: orange;
  height: 1.7cap;
  width: 5px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  animation: flick 1s infinite;
}

@keyframes flick {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* Navbar Section */

.navbar {
  justify-content: space-evenly;
  align-items: center;
  background-color: var(--accent2);
  margin: 0;
  padding: 1em 6em;
  position: sticky;
  top: 0;
  z-index: 99;
}

.navbar .logo {
  width: 7em;
  height: auto;
}

.navbar .navigation {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  width: 50%;
  position: sticky;
  top: 0;
  background-color: var(--blue);
  padding: 1em;
  border-radius: 5em;
  z-index: 98;
}

.sidebar {
  flex-direction: column;
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(180deg, #f0f8ff, #1877f2);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.8), 0 0 2px rgba(255, 255, 255, 0.5);
  border-radius: 1em 0 0 0;
  z-index: 100;
  width: 90vw;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  padding: 2em;
  transform: translateX(90vw);
  transition: transform 0.5s ease-in-out;
  /* animation: moveIn 0.5s ease-in-out; */
  display: none;
}

@keyframes moveIn {
  0% {
    transform: translateX(90vw);
  }
  100% {
    transform: translateX(0vw);
  }
}

.sidebar.active {
  display: block;
  transform: translate(0vw);
  transition: transform 0.5s ease-in-out;
}

.navbar .navigation a {
  text-decoration: none;
}

.navbar .navigation .nav-item:hover::before {
  content: "";
  height: 2px;
  width: 3em;
  background-color: white;
  position: absolute;
  bottom: 25%;
  transition: width 1s ease-in-out;
  animation: hover 0.3s ease-in-out;
}

@keyframes hover {
  0% {
    width: 0;
  }
  100% {
    width: 3em;
  }
}

.navbar .contact {
  background-color: crimson;
  color: white;
  padding: 0.5em;
  text-align: center;
  border-radius: 5em;
  border: none;
  width: 10em;
  height: 3em;
}

.overview {
  background-color: #fafa7f;
  width: 2em;
  height: 2em;
  display: none;
  cursor: pointer;
}

/* HARMBURGER SQUEEZE MENU */

.menu--squeeze {
  width: 4rem;
  height: 4rem;
  background: none;
  padding: 0;
  border-radius: 0.5rem;
  border: 1px var(--blue) solid;
  /* overflow: hidden; */
  transform: translateX(-50%);
  transform: translateY(-50%);
}

.menu:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.menu__inner,
.menu__inner::before,
.menu__inner::after {
  position: absolute;
  height: 0.2rem;
  background-color: var(--blue);
  border-radius: 0.25rem;
  display: block;
}

.menu__inner {
  width: 50%;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
}

.menu__inner::before,
.menu__inner::after {
  content: "";
  left: 0;
  width: 100%;
}

.menu__inner::before {
  top: -0.75rem;
}

.menu__inner::after {
  top: 0.75rem;
}

.menu--squeeze .menu__inner,
.menu--squeeze .menu__inner::before,
.menu--squeeze .menu__inner::after {
  transition: top 0.2s 0.2s, transform 0.2s, background-color 0.4s 0.2s;
}

.menu--squeeze.menu--active .menu__inner {
  background-color: transparent;
  transition: background-color 0.2s;
}

.menu--squeeze.menu--active .menu__inner::before {
  transform: rotate(-45deg);
  top: 0;
  transition: top 0.2s, transform 0.2s 0.14s;
}

.menu--squeeze.menu--active .menu__inner::after {
  transform: rotate(45deg);
  top: 0;
  transition: top 0.2s, transform 0.2s 0.14s;
}

/* Hero Section */

.hero {
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: center;
  padding: 1em 5em;
  background-color: #f0f8ff;
}

.hero .hero-buttons {
  display: flex;
  gap: 1em;
  margin: 1em;
}

.hero .sub-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  gap: 0.25em;
}

.hero .sub-section p {
  color: var(--blue);
}

.hero .sub-section h1 {
  font-size: 4em;
  line-height: 1em;
  text-align: center;
  color: var(--lightblue);
}

.hero .hero-image {
  width: 35vw;
  height: auto;
}

.hero .awards {
  display: flex;
}

.hero p {
  font-weight: 400;
  font-size: 1.4em;
  font-family: var(--mont);
}

.award1,
.award2,
.award3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.3em;
  color: var(--blue);
}

.arrow {
  height: 2.1cap;
}

.awards span {
  color: crimson;
}

/* Logos Section */

.logos {
  display: flex;
  justify-content: space-between;
}

.logos .logo {
  width: 3em;
  height: 3em;
  background-color: #fafa7f;
}

/* Services Section */

.services {
  flex-direction: column;
  align-items: center;
}

/* .services .sub-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25em;
    text-align: center;
} */

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 1em;
}

.service-cards .icon {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(
    45deg,
    rgba(239, 239, 239, 0.2),
    rgba(10, 15, 36, 0.9),
    rgba(255, 255, 255, 0.43)
  );
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.8), 0 0 3px rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-cards .card-icon {
  width: 3rem;
  height: 5rem;
}

.service-cards .card-1,
.service-cards .card-2,
.service-cards .card-3,
.service-cards .card-4 {
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.8), 0 0 2px rgba(255, 255, 255, 0.5);
  /* background: linear-gradient(
    -45deg,
    rgba(82, 157, 244, 0.2),
    rgba(5, 5, 101, 0.9),
    rgba(9, 148, 240, 0.43)
  ); */
  background: linear-gradient(
    45deg,
    rgba(10, 15, 36, 0.9),
    rgba(255, 255, 255, 0.23)
  );
  /* background-color: var(--blue); */
  border-radius: 0.25em;
  width: 22vw;
  padding: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1em;
}

/* Pricing Section */

.pricing {
  flex-direction: column;
  align-items: center;
}

/* .pricing .sub-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25em;
    text-align: center;
} */

.pricing .price-cards {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  justify-content: center;
}

.pricing .price-cards .card {
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.8), 0 0 2px rgba(255, 255, 255, 0.5);
  background: linear-gradient(
    45deg,
    rgba(10, 15, 36, 0.9),
    rgba(255, 255, 255, 0.23)
  );
  border-radius: 0.25em;
  width: 22vw;
  height: auto;
  padding: 2em;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 0em;
  padding-bottom: 4em;
}

.pricing .price-cards .card .inset {
  font-size: 1em;
}

.pricing .price-cards .card .items-head {
  font-family: var(--mont);
}

.pricing .price-cards .card .checkmark {
  height: 1.25cap;
  width: auto;
}

.pricing .card .price {
  font-size: 3em;
  padding: 0.2em 0;
  letter-spacing: -0.03em;
}

.pricing .price-cards .card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  margin-bottom: 2.5em;
}

.pricing .price-cards .card ul li {
  font-family: var(--mont);
  font-weight: 75;
  font-size: 1.4em;
}

.pricing .card-action {
  background-color: #1877f2;
  color: #fff;
  font-weight: 600;
  padding: 0.3em;
  margin-top: 0.5em;
  border-radius: 0.25em;
  border: none;
  justify-self: flex-end;
  position: absolute;
  bottom: 1em;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  height: 3.5em;
  font-size: 1.2em;
}

/* Projects Section */

.projects {
  flex-direction: column;
  width: 80vw;
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.8), 0 0 2px rgba(255, 255, 255, 0.5);
  padding: 2em;
  border-radius: 0.25em;
  justify-self: center;
  align-self: center;
}

/* .projects .sub-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25em;
    justify-content: center;
    text-align: center;
} */

.projects .project-cards {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  justify-content: center;
}

.projects .project-cards .project-card {
  border: 1px white solid;
  border-radius: 0.25em;
  width: 25em;
  padding: 1em;
  height: 10em;
  border-radius: 0.25em;
  background-color: #f0f8ff;
}

.projects .project-cards .project-card:hover {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.5);
  border: 5px solid #f0f8ff;
}

.projects .project-cards .project-card.image-1 {
  background: url(/assets/images/pictures/web.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.projects .project-cards .project-card.image-2 {
  background: url(/assets/images/pictures/logo.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.projects .project-cards .project-card.image-3 {
  background: url(/assets/images/pictures/flyer.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.projects .project-cards .project-card.image-4 {
  background: url(/assets/images/pictures/other.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.heading.bottom-heading {
  width: 35vw;
  align-self: center;
  margin-bottom: 1em;
  cursor: pointer;
}

.heading.bottom-heading:hover {
  p {
    animation: flip 1s ease-in-out infinite;
  }
}

@keyframes flip {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Values Section */

.values {
  flex-direction: column;
}

/* .values .sub-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25em;
    text-align: center;
} */

.values .value-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}

.values .value-cards .card {
  width: 30%;
  height: auto;
  padding: 1em;
  border-radius: 0.25em;
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.8), 0 0 3px rgba(255, 255, 255, 0.5);
  background: linear-gradient(
    45deg,
    rgba(10, 15, 36, 0.9),
    rgba(255, 255, 255, 0.23)
  );
  flex-wrap: wrap;
  overflow-x: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

.values .value-cards .card .card-heading {
  font-family: var(--mont);
}

.values .value-cards .card .description {
  color: #fff;
}

.values .value-cards .card .icon {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(
    45deg,
    rgba(239, 239, 239, 0.2),
    rgba(10, 15, 36, 0.9),
    rgba(255, 255, 255, 0.43)
  );
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.8), 0 0 3px rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-image {
  width: 3rem;
  height: 3rem;
}

/* Testimonials Section */

.testimonials {
  flex-direction: column;
  padding: 1em;
}

/* .testimonials .sub-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25em;
    text-align: center;
} */

.testimonials .testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}

.testimonials .testimonial-cards .card {
  display: flex;
  flex-direction: column;
  width: 30%;
  height: auto;
  padding: 1em;
  border-radius: 0.25em;
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.8), 0 0 2px rgba(255, 255, 255, 0.5);
  gap: 1em;
}

.testimonials .testimonial-cards .card .stars {
  width: 30%;
  height: auto;
}

/* Contacts Section */

.contacts {
  flex-direction: column;
  align-items: center;
}

/* .contacts .sub-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25em;
    text-align: center;
} */

.contacts .sub-section .main-descrip {
  justify-content: center;
}

.contacts .contact-btns {
  display: flex;
  gap: 2em;
}

/* Footer Section */

.footer {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.footer .socials {
  display: flex;
  gap: 1em;
}

.footer .icon {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(
    45deg,
    rgba(239, 239, 239, 0.2),
    rgba(10, 15, 36, 0.9),
    rgba(255, 255, 255, 0.43)
  );
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.8), 0 0 3px rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .icon img {
  width: 1em;
  height: 1em;
}

/* Navbar Section */
/* Navbar Section */
/* Navbar Section */
