:root {
  /* Colours */
  --primary: #3db2ff;
  --secondary: #00224d;
  --color-1: #a0153e;
  --color-2: #5d0e41;
  --white: #ffff;
  --text: rgb(14, 19, 24);
  --header-text: #1d2124;
  /* Spacing */
  --spacing-xxs: 2px;
  --spacing-xs: 4px;
  --spacing-s: 8px;
  --spacing-m: 16px;
  --spacing-l: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 40px;
  --spacing-xxxl: 48px;
  /* Breakpoints */
  --mobile-max: 480px;
  --tablet-max: 768px;
}

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.6;
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus {
  text-decoration: underline;
}

p {
  color: var(--text);
}

ol {
  margin: 0;
  padding: 0;
}

body,
html {
  scroll-behavior: smooth;
}

li {
  list-style: none;
}

footer section p {
  width: 80%;
}

main,
footer,
.header {
  padding: 0px var(--spacing-l);
}

button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

h1 {
  color: var(--white);
  font-weight: 200;
}

h2 {
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
}

.header p {
  color: var(--white);
  font-weight: 200;
}

.header a,
footer a {
  margin: var(--spacing-l) 0;
  display: inline-block;
  color: var(--white);
  text-decoration: none;
}

.header a:hover {
  text-decoration: underline;
}

footer a:hover {
  text-decoration: underline;
}

.section {
  margin: var(--spacing-l) 0;
}

.section p {
  color: var(--text);
}

.section h2,
h3 {
  color: var(--header-text);
  font-weight: 900;
}

h2 span {
  color: var(--primary);
}

h3 span {
  color: var(--primary);
}

.offerings article {
  margin-bottom: var(--spacing-xl);
}

.offerings {
  text-align: center;
}

.offerings svg {
  fill: var(--primary);
}

.offerings button {
  color: var(--primary);
  font-weight: 900;
}

.offerings h3 {
  margin: 0;
}

.our-work {
  text-align: center;
}

.our-work img {
  width: 100%;
}

.our-work-item {
  padding: var(--spacing-l);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.our-work-item a {
  background-color: var(--primary);
  color: var(--white);
  padding: var(--spacing-m);
  text-decoration: none;
  margin: var(--spacing-sm);
  display: inline-block;
}

.how-does-it-work svg {
  fill: var(--primary);
}

.how-does-it-work header {
  display: flex;
  align-items: center;
  gap: var(--spacing-m);
}

.seo-icon {
  height: 200px;
  width: 100%;
  fill: var(--primary);
}

.seo-img {
  height: 200px;
  width: 100%;
}

.faqs h3 {
  border-left: solid 2px var(--primary);
  padding-left: var(--spacing-s);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.bounce {
  -webkit-animation: bounce 2s 2s;
  animation: bounce 2s 2s;
}

.floating-whatsapp {
  position: fixed;
  z-index: 99;
  bottom: 8px;
  right: 4px;
  z-index: 100000;
}

footer {
  position: relative;
  min-height: 250px;
  margin-top: 150px;
}

footer h2 {
  color: var(--white);
  text-align: left;
}

footer h2 span {
  color: var(--white);
}

footer section {
  z-index: 1000;
  position: relative;
  bottom: var(--spacing-xxl);
}

footer section p {
  color: var(--white);
}

.custom-shape-divider-bottom-1712166529 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1712166529 svg {
  position: relative;
  display: block;
  width: calc(153% + 1.3px);
  height: 403px;
}

.custom-shape-divider-bottom-1712166529 .shape-fill {
  fill: #00224d;
}

.company {
  z-index: 1000;
  position: relative;
  color: var(--white);
  display: block;
  text-align: center;
  bottom: var(--spacing-sm);
  font-weight: 200;
  font-size: small;
}

.profile-pic {
  height: 200px;
  display: inline-block;
  text-align: center;
  border-radius: 200px;
  align-self: center;
}

.our-story-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header img {
  height: 50px;
  margin-top: var(--spacing-m);
  margin-bottom: var(--spacing-m);
}

.cta-link {
  font-weight: 900;
  color: var(--primary);
  text-decoration: none;
  text-align: center;
}
.cta-link:hover {
  text-decoration: underline;
}

.header h1 {
  margin-top: var(--spacing-s);
}

.header p {
  width: 85%;
}

.header {
  background-color: var(--secondary);
}

.our-story-container p {
  text-align: center;
}

.custom-shape-divider-top-1712294756 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1712294756 svg {
  position: relative;
  display: block;
  width: calc(141% + 1.3px);
  height: 500px;
}

.custom-shape-divider-top-1712294756 .shape-fill {
  fill: #00224d;
}

footer section h2 {
  font-weight: 200;
}

footer section p {
  font-weight: 200;
}

@media screen and (min-width: 1024px) {
  main {
    width: 75%;
    margin: 0 auto;
  }

  .main-inner {
    width: 80%;
    margin: 0 auto;
  }
  .header {
    text-align: center;
  }
  .header p {
    width: 100%;
  }
}
