:root {
  --primaryDarkColor: #3e606f;
  --fillColor: #f1f1e6;
  --secondaryfillColor: #fff7d6;
  --secondaryColor: #ec2227;
  --secondaryDarkColor: #ea7c27;
  --bespokeGreen: #1d3a1d;
  --primaryLightColor: #3c78fc;
  --borderColor: #dee3eb;

  --color-invalid: #e57373;
  --color-invalid-hover: #f11722;
  --color-valid: #53a654;
  --dark-bg: #222222;
}
* {
  box-sizing: border-box;
}
body {
  font-family: "Nunito Sans";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  transition: 0.5s;
  background-color: #fff;
  /* -webkit-box-shadow: rgb(18 28 45/15%) 0 1rem 3.75rem; */
  box-shadow: 0 1rem 3.75rem rgba(87, 87, 87, 0.4);
  margin: 0 auto;
  max-width: 1440px;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("/assets/fonts/NotoSans-Regular.ttf");
}

/* Custom Button */
.button {
  color: #fff;
  background-color: var(--primaryDarkColor);
  border: none;
  border-radius: 4px;
  padding: 12px 2rem;
  width: fit-content;
}
.button:hover {
  opacity: 0.9;
  cursor: pointer;
}

/* Navbar */
header {
  /* background-color: var(--primaryDarkColor); */
  isolation: isolate;
  position: fixed;
  top: 0;
  left: 0;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  width: 100%;
  z-index: 10;
  height: 72px;
}

nav {
  max-width: 1440px;
  margin: auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ccc;
  background-color: #fff;
}
nav > div {
  display: flex;
  gap: 1rem;
  align-items: center;
}
nav > div > i {
  color: #333;
  height: 28px;
  width: 28px;
}
#openButton {
  display: none;
  @media screen and (max-width: 768px) {
    display: block;
  }
}
nav > div > i:hover {
  cursor: pointer;
  opacity: 0.9;
}

nav a {
  color: var(--primaryDarkColor);
  text-decoration: none;
  font-weight: 400;
}
nav > a:hover {
  cursor: pointer;
}

nav > ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  @media screen and (max-width: 768px) {
    display: none;
  }
}
nav > ul > li {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
}
nav > ul > li:hover {
  cursor: pointer;
  color: #ccc;
}
nav button {
  background-color: transparent;
  border-radius: 4px;
  border: 2px solid var(--secondaryColor);
  padding: 8px 12px;
  color: var(--secondaryColor);
}
nav button:hover {
  cursor: pointer;
  opacity: 0.95;
  color: #fff;
  background-color: var(--secondaryColor);
}

/* Offering dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;

  border-radius: 4px;
}
.dropdown-content > a {
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}
.dropdown-content > a:hover {
  background-color: #eee;
  cursor: pointer;
}

.dropdown:hover .dropdown-content {
  display: grid;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -82vw;
  width: 80vw;
  height: 100%;
  background-color: #eee;
  box-shadow: 0 10px 5px 5px #33333366;

  transition: left 0.3s ease;
  z-index: 20;
  padding: 1rem;
}
.sidebar > span {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.sidebar > span > a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--primaryDarkColor);
}
.sidebar > span > i {
  color: #333;
  margin: 0.7rem 1rem;
}
.sidebar > span > i:hover {
  cursor: pointer;
  opacity: 0.9;
}

.sidebar.open {
  left: 0;
}
@keyframes hover {
  50% {
    transform: translateX(10px);
  }
}
.sidebar > div {
  display: grid;
  gap: 1rem;
  border-bottom: none !important;
}

.sidebar > div ul {
  list-style: none;
  padding: 0;
}
.sidebar > div ul > h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
}

.sidebar > div li {
  padding: 10px 0;
}

.sidebar > div a {
  color: #222;
  text-decoration: none;
}
.sidebar > div a:hover {
  animation: hover 1s;
}
main {
  min-height: 90vh;
  padding-block-start: 86px;
}
section {
  max-width: 1440px;
  margin: auto;
}

footer {
  background-color: var(--primaryDarkColor);
}
.footer-wrapper {
  max-width: 1240px;
  margin: auto;
  padding: 2rem 0;
  display: grid;
  row-gap: 1rem;
  grid-template-columns: 1fr;
  justify-content: center;
  text-align: center;
}
footer p {
  color: #f9f9f9;
  font-size: 14px;
  margin: 0;
}
footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: #f9f9f9;
  display: flex;
  justify-content: center;
  gap: 4px;
}
footer a {
  color: #f9f9f9;
}
footer a:hover {
  cursor: pointer;
  color: #ccc;
}

/* Containerization */
#containerization {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(90deg, #222, #222222cc, transparent);
}
.o-wrapper {
  max-width: 1240px;
  margin: auto;

  padding: 2rem 1rem;
  display: grid;
  gap: 1rem;
  z-index: 10;
}
.o-wrapper > h1 {
  font-size: 56px;
  font-weight: 400;
  line-height: 44px;
}
.o-wrapper > h2 {
  font-size: 20px;
  font-weight: 400;
  max-width: 500px;
  color: #eee;
}

.o-wrapper > h1,
h2 {
  color: #fff;
  margin: 0;
}
.c-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;

  z-index: -1;
  height: 220px;
  pointer-events: none;
  @media screen and (max-width: 542px) {
    height: 300px;
  }
}
.offerings-wrapper {
  max-width: 1240px;
  margin: auto;
  padding: 1rem;
}
.offerings-wrapper > h1 {
  max-width: 600px;
  font-size: 28px;
  margin: 0 0 1rem 0;
}
.offerings-wrapper > ul {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
  gap: 1rem;
}
.offerings-wrapper > ul > li {
  display: grid;
  background-color: #222;
  flex: 1;
  min-width: 280px;
  position: relative;

  grid-template-columns: 1fr;
  place-content: flex-start;
  padding: 2rem;
  gap: 1rem;
  aspect-ratio: 1/1;
  overflow: hidden;
  z-index: 1;
  @media screen and (max-width: 920px) {
    aspect-ratio: auto;
  }
}
.offerings-wrapper > ul > li > div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.offerings-wrapper > ul > li > div > small {
  color: #eee;
}
.offerings-wrapper h3 {
  color: #fff;
}
.offerings-wrapper p {
  color: #f9f9f9;
  font-size: 14px;
  max-width: 200px;
  z-index: 2;
  background-color: #22222222;
  border-radius: 2rem;
}
.offerings-wrapper img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 150px;
  overflow: hidden;
  border-top-left-radius: 100px;
  object-fit: contain;
  z-index: -1;
  @media screen and (max-width: 768px) {
    height: 120px;
  }
}

.purple-bg {
  background-color: #7c575a;
}
.red-bg {
  background-color: #dd2c2b;
}
.orange-bg {
  background-color: #e96928;
}
.lightred-bg {
  background-color: #e15b64;
}
.blue-bg {
  background-color: #4181d3;
}
.brown-bg {
  background-color: #be8a63;
}
.darkblue-bg {
  background-color: #293250;
  color: #7cf9ef !important;
}
.green-bg {
  background-color: #59bb57;
}
.lightgreen-bg {
  background-color: #70e4a8;
  color: #1c2d34 !important;
}
.offerings-wrapper i {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 1rem;
}

/* Contact us */
#contactus {
  max-width: 1440px;
  margin: auto;
}
.contactus-wrapper {
  max-width: 640px;
  margin: auto;
  border-radius: 4px;

  padding: 0 2rem;
  display: grid;
  justify-content: center;
  place-content: center;
  gap: 1rem;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  @media screen and (max-width: 768px) {
    grid-template-columns: 1fr;
  }
}
.contactus-wrapper > h1 {
  color: #ffffff;
  font-size: 64px;
  line-height: 70px;
  text-align: center;
  margin: 0 0 1rem 0;
  max-width: 300px;
  @media screen and (max-width: 768px) {
    font-size: 28px;
    max-width: none;
    line-height: normal;
  }
}

form {
  max-width: 640px;
  margin: auto;
  border-radius: 4px;
  padding: 2rem;
  display: grid !important;
  grid-template-columns: 1fr;
  justify-content: center;
  place-content: center;
  gap: 1rem;
}

.contactus-wrapper input {
  padding: 1rem;
  width: 300px;
  margin: 0 auto 1rem auto;
  border: none;

  border-radius: 1rem;
  @media screen and (max-width: 768px) {
    width: 250px;
  }
}
.contactus-wrapper textarea {
  padding: 1rem;
  width: 300px;
  height: auto;
  margin: 0 auto 1rem auto;
  border: none;
  font-family: "Nunito Sans";
  border-radius: 1rem;
  resize: none;
  outline: none;
  @media screen and (max-width: 768px) {
    width: 250px;
  }
}
.contactus-wrapper input:focus {
  outline: 1px solid var(--primaryDarkColor);
}
.contactus-wrapper button {
  background-color: var(--secondaryColor);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 2rem;
  width: 300px;
  margin: auto;
  @media screen and (max-width: 768px) {
    width: 250px;
  }
}
.contactus-wrapper button:hover {
  opacity: 0.9;
  cursor: pointer;
}

textarea::placeholder {
  font-family: Arial;
}

.line-title {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  margin-bottom: 0;
}
.line-title > hr {
  border: none;
  height: 1px;
  background-color: #ccc;
  width: 100%;
}

.line-title > p {
  color: #494949;
  font-size: 18px;
  margin: 1rem 1rem 1rem 0;
  text-transform: uppercase;
  font-weight: 700;
}

/* How we work Section */
#agilepod {
  max-width: 1440px;
  margin: auto;
}
.agile-pod-wrapper {
  max-width: 1240px;
  margin: auto;
  display: grid;
  gap: 1rem;
  padding: 2rem 1rem;
}
.agile-pod-wrapper > h1 {
  color: #333;
  font-size: 48px;
  margin: 0;
  text-align: center;
  @media screen and (max-width: 768px) {
    font-size: 28px;
  }
}
.agile-pod-wrapper > p {
  margin: 0;
}
.agile-pod-wrapper > h2 {
  margin: 0 auto;
  /* max-width: 600px; */
  color: #222;
  font-weight: 400;
  text-align: center;
}
.agile-card-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  gap: 2rem;
}
.agile-card-container hr {
  @media screen and (max-width: 768px) {
    display: none;
  }
}
.agile-card {
  display: grid;
  flex-direction: column;
  gap: 1rem;
  grid-template-columns: 3fr 1fr;
  padding: 1rem 0;
  border-radius: 4px;

  flex: 1;
}
.agile-card h3 {
  margin: 0 auto;

  font-size: 18px;
}

.agile-card img {
  height: 180px;
  object-fit: contain;

  @media screen and (max-width: 768px) {
    height: 120px;
  }
}
.agile-card p {
  color: #494949;
  margin: 0;
}

.ideate-card {
  position: relative;
  min-width: 250px;
  /* border: 1px solid var(--primaryDarkColor); */
  /* background-color: #333; */
  background-image: linear-gradient(
    -10deg,
    var(--primaryDarkColor),
    var(--primaryDarkColor),
    #e2e2e2
  );
  border-radius: 8px;
  /* box-shadow: 0 0 10px 5px #00000011; */
  padding: 2rem;
  flex: 1;
}
.first-arrow {
  position: absolute;
  transform: rotate(30deg);
  height: 80px;
  right: -100px;
  z-index: 5;
  @media screen and (max-width: 510px) {
    transform: rotate(90deg) translate(0, -50%);
    bottom: -50px;
    right: 50%;

    margin: auto;
  }
}
.second-arrow {
  position: absolute;
  transform: rotate(30deg);
  height: 80px;
  right: -100px;
  z-index: 5;

  @media screen and (max-width: 800px) {
    transform: rotate(90deg);
    bottom: -50px;
    right: auto;
    margin: auto;
  }
}

.ideate-card > h1 {
  font-size: 48px;
  text-align: center;
  margin: 0 0 2rem 0;
  text-transform: uppercase;
  color: #fff;
}
.ideate-card > h4 {
  text-align: center;
  font-size: 28px;
  margin: 0;
  color: #d8d8d8;
}
.ideate-card > ul {
  color: #eee;
}

.key-diff {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 1rem;
}
.key-diff i {
  padding: 1rem;
  border-radius: 50%;
  background-color: #eee;
  color: var(--primaryDarkColor);
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.key-diff > li {
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  align-items: stretch;
  gap: 1rem;
  flex: 1;
  min-width: 250px;
}
.key-diff > li > h3 {
  font-size: 24px;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}
.key-diff > li > p {
  font-size: 16px;
  text-align: center;
  max-width: 250px;
  color: #494949;
  margin: 0 auto;
}
.key-diff > li > img {
  object-fit: cover;
  height: 100px;
  width: 100px;

  padding: 1rem;
  margin: auto;
}
