/* Assigning the commonly used values to custom properties */
:root {
  --main-bg-color: #ffffff;
  /* #e6e6e6 */
  --mod-scale: 1.165;
  --slight-border: #d9d9d9;
  --link-color: #2660eb;
  --yellow-bg-color: #f9f8f4;
  --gray-bg-color: #eceae7;
  --heading-text-color: #000000;
  --primary-body-text-color: #000000;
  --secodary-body-text-color: #666666;
  --base-size: 16px;
}

/* Inter Variable supported on Modern Browsers */
@font-face {
  font-family: "Inter Variable";
  src: url(/static/fonts/Inter-VariableFont_opsz\,wght.woff2) format("woff2"),
    url(/static/fonts/Inter-VariableFont_opsz\,wght.ttf) format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

/* Inter Variable Italic supported on Modern Browsers */
@font-face {
  font-family: "Inter Variable";
  src: url(/static/fonts/Inter-Italic-VariableFont_opsz\,wght.woff2)
      format("woff2"),
    url(/static/fonts/Inter-Italic-VariableFont_opsz\,wght.ttf)
      format("truetype");
  font-weight: 100 900;
  font-style: italic;
}

/* Add fonts for: */
/*  Inter Static 400 */
/*  Inter Static 700 */
/*  Inter Static 400 Italic */
/*  Inter Static 700 Italic */

/* Resetting the default box values */
*,
*:before,
*:after {
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  /* border: .5px solid red; */
}

html {
  height: 100%;
  scroll-behavior: smooth;
  font-size: clamp(
    calc(0.875 * var(--base-size)),
    2vw,
    calc(1 * var(--base-size))
  );
  /* font-size: clamp(.875rem, 2vw, 1rem); */
}

body {
  margin: 0 auto;
  padding: 0;
  height: 100vh;
  text-align: center;
  font-family: "Inter Variable", Arial, sans-serif;
  background-color: var(--main-bg-color);
  color: var(--primary-body-text-color);
  overflow-x: hidden;
}

h1 {
  font-size: clamp(
    calc(1rem * pow(var(--mod-scale), 6)),
    2vw,
    calc(1.25rem * pow(var(--mod-scale), 6))
  );
  line-height: 1.2;
}

h2 {
  font-size: clamp(
    calc(1rem * pow(var(--mod-scale), 5)),
    2vw,
    calc(1rem * pow(1.2, 5))
  );
}

h3 {
  font-size: clamp(
    calc(1rem * pow(var(--mod-scale), 4)),
    2vw,
    calc(1rem * pow(1.2, 4))
  );
}

h4 {
  font-size: clamp(
    calc(1rem * pow(var(--mod-scale), 3)),
    2vw,
    calc(1rem * pow(1.2, 3))
  );
}

p {
  line-height: 1.4;
}

.plain-link,
.plain-link:visited {
  text-decoration: none;
  color: var(--link-color);
}

.plain-link:hover {
  text-decoration: underline;
}

/* Include only those properties (height and font-size) that you want to assign to the root, so that it inherits and then you can use relative sizing for all the child elements. */

/* Root font is set at 16px by default by the browser.
So below 50em, the font remains fixed at 16px. */

/* When the viewport width reaches 50em i.e. 800px, 
the fluid font sizing using vw kicks in */

/* @media only screen and (min-width: 50em) {
    html {
        height: 100%;
        font-size: 2vw;
        scroll-behavior: smooth;
    }
} */

/* When the viewport width reaches 56.25em i.e. 900px, 
the font size is again fixed at a max of 1.125em i.e. 18px. */

/* @media only screen and (min-width: 56.25em) {
    html {
        height: 100%;
        font-size: 1.125rem;
        scroll-behavior: smooth;
    }
} */

/* Use the body element for global styles that you want all child elements to inherit */

/* h1 {
    font-size: calc(1rem*pow(1.165, 6));
}

h2 {
    font-size: calc(1rem*pow(1.168, 5));
}

h3 {
    font-size: calc(1rem*pow(1.165, 4));
}

h4 {
    font-size: calc(1rem*pow(1.165, 3));
} */

/*-------------------------------------------------------------*\
    #Navigation
\*-------------------------------------------------------------*/

.header {
  /* max-width: 1280px; */
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
  /* border-bottom: 1px solid #d9d9d9; */
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 1);
}

.menu-logo {
  margin-top: 0.5rem;
  margin-left: 1rem;
}

.menu-logo.hidden {
  margin-left: 1rem;
  display: none;
}

.menu-burger {
  /* display: flex; */
  display: none;
  flex-direction: column;
  padding: 0.5rem;
  margin-right: 1rem;

  /* width: 100%; */
}

.menu-burger.active {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  margin: 0 1rem;
  width: 100%;
}

.menu-burger a {
  margin: 0;
  align-self: flex-end;
}

.menu-list {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  transition: 0.2s ease-in-out;
}

.menu-list.active {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-right: 1.5rem;
  padding: 2rem;
  width: 100%;
  height: 100vh;
  overflow-y: hidden;
}

.menu-list a {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.5rem 1rem;
  text-align: left;
  text-wrap: nowrap;
  text-decoration: none;
  color: var(--primary-body-text-color);
}

@media only screen and (max-width: 999.9px) {
  .nav-horizontal {
    display: none;
  }

  .menu-logo {
    margin: 0;
    /* padding: 0.25rem 1rem; */
  }

  .icon-leancraft {
    margin: 0.5rem 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    display: block;
    /* display: flex; */
    /* flex-direction: row; */
    /* align-items: center; */
    text-decoration: none;
    color: var(--primary-body-text-color);
  }

  .icon-leancraft--footer {
    margin: 0;
    padding: 0;
  }

  .icon-leancraft:hover {
    text-decoration: underline;
  }
}

@media only screen and (min-width: 1000px) {
  .nav-toggle {
    display: none;
  }

  .nav-horizontal {
    max-width: 1280px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0.25rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 99;
  }

  .header-logo {
    margin: 0;
    padding: 0.25rem 1rem;
  }

  .icon-leancraft {
    font-size: 0.9375rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    color: var(--primary-body-text-color);
  }

  .icon-leancraft:hover {
    text-decoration: underline;
  }

  .nav--left {
    display: flex;
    flex: 1 1 30%;
    order: 1;
  }

  .nav--right {
    display: flex;
    flex: 1 1 70%;
    order: 2;
    justify-content: right;
  }

  .nav__list {
    margin: 0;
    list-style-type: none;
    display: flex;
    justify-items: right;
  }

  .nav__item {
    display: flex;
    text-wrap: nowrap;
    justify-items: right;
  }

  .nav__link {
    font-size: 0.9375rem;
    display: flex;
    text-decoration: none;
    padding: 0.5rem 1rem;
    color: var(--primary-body-text-color);
    transition: background-color 0.2s, border 0.2s;
  }

  .nav__item:hover,
  .nav__item:focus,
  .nav__item:active {
    /* background-color: var(--tab-highlight-color); */
    /* border: 1px var(--tab-highlight-color); */
    /* border-radius: 5px; */
    text-decoration: underline;
  }
}

/*---------------------------------------------------------------------------*\
    Hero
\*---------------------------------------------------------------------------*/

/* Set the container height using padding and relative units. */

.hero-container {
  padding-top: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 5rem;
  max-width: 1280px;
  height: 100vh;
}

/* for screens less than 474.99px in width */
@media only screen and (max-width: 474.99px) {
  .hero-container {
    padding-top: 5rem;
  }

  .typing-block {
    padding: 0 0.5rem;
    margin: 0 1rem;
    /* height: 15rem; */
  }

  .hero-para {
    padding: 0 0.5rem;
    margin: 0 1rem;
  }

  .hero__cta-block {
    margin: 0 2rem;
    padding: 0 0 4rem;
  }
}

/* for screen widths between 475px to 630px */
@media only screen and (min-width: 475px) {
  .hero-container {
    padding-top: 8rem;
  }

  .typing-block {
    padding: 0 0.5rem;
    margin: 0 1rem;
    /* height: 12rem; */
  }

  .hero-para {
    padding: 0 0.5rem;
    margin: 0 1rem;
  }

  .hero__cta-block {
    margin: 0 2rem;
    padding: 0 0 6rem;
  }
}

/* for screen widths above 630px */
@media only screen and (min-width: 630px) {
  .hero-container {
    padding-top: 10rem;
  }

  .typing-block {
    /* padding-bottom: 1rem; */
    margin: 0 1rem;
    /* height: 12rem; */
  }

  .hero__cta-block {
    margin: 0 2rem;
    padding: 0 0 8rem;
  }
}

.hero__title {
  margin: 1rem auto;
  font-weight: 700;
  font-size: clamp(2.5rem, 3vw, 3rem);
  /* font-size: clamp(calc(1rem*pow(var(--mod-scale), 6)), 2vw, calc(1.25rem*pow(var(--mod-scale), 6))); */
  max-width: 800px;
  /* max-width: 900px; */
  text-align: center;
}

mark {
  margin: 0 -0.4em;
  padding: 0.1em 0.4em;
  border-radius: 0.8em 0.3em;
  background: transparent;
  background-image: linear-gradient(
    to right,
    rgba(255, 225, 0, 0.1),
    rgba(255, 225, 0, 0.7) 4%,
    rgba(255, 225, 0, 0.3)
  );
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

#typing-effect {
  position: relative;
}

/* #typing-effect::after {
    content: "_";
    position: absolute;
    right: 20;
    width: 20px;
    height: 10px;
    animation: blink .5s infinite;
} */

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.big-para {
  font-size: 1.125rem;
  /* font-weight: 400; */
  margin: 0;
  /* padding: 0 0 2rem; */
}

.huge-para {
  margin: 0 1rem;
  /* font-size: clamp(calc(1rem*pow(var(--mod-scale), 3)), 2vw, calc(1rem*pow(1.2, 3))); */
  font-size: 1.5rem;
  text-align: left;
  padding: 0.5rem 1rem;
  /* max-width: 70%; */
}

.huge-para--mod {
  max-width: 100%;
}

@media only screen and (min-width: 800px) {
  .huge-para--mod {
    max-width: 70%;
  }
}

.hero-sub-title {
  margin: 1rem auto;
  padding: 0 2rem 2rem;
  /* max-width: 70%; */
  /* max-width: 500px; */
  font-size: 1.25rem;
  text-align: center;
}

.small-call-button {
  color: var(--primary-body-text-color);
  text-decoration: none;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  margin: 0.15rem 1rem 0;
  font-size: 0.8125rem;
  background-color: #66cc99;
  border: 1px solid #000000;
  border-radius: 5px;
  position: relative;
  top: 0px;
  box-shadow: 3px 3px #000000;
  transition: top 0.2s, box-shadow 0.2s;
}

.small-call-button:hover {
  top: 3px;
  box-shadow: 0 1px #000000;
}

/* .hero__cta-block {
    margin: 0 2rem;
    padding: 0 0 8rem;
} */

.big-call-button {
  color: var(--primary-body-text-color);
  text-decoration: none;
  display: inline-block;
  padding: 0.4rem 0.8rem;
  margin: 1rem;
  font-size: 1rem;
  background-color: #66cc99;
  border: 1px solid #000000;
  border-radius: 5px;
  position: relative;
  top: 0px;
  box-shadow: 3px 3px #000000;
  transition: top 0.2s, box-shadow 0.2s;
}

.big-call-button:hover {
  top: 3px;
  box-shadow: 0 1px #000000;
}

@media only screen and (min-width: 999.99px) {
  .big-call-button {
    color: var(--primary-body-text-color);
    text-decoration: none;
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 1rem;
    font-size: 1rem;
    background-color: #66cc99;
    border: 1px solid #000000;
    border-radius: 5px;
    position: relative;
    top: 0px;
    box-shadow: 3px 3px #000000;
    transition: top 0.2s, box-shadow 0.2s;
  }

  .big-call-button:hover {
    top: 3px;
    box-shadow: 0 1px #000000;
  }
}

.de-emphasize {
  color: var(--secodary-body-text-color);
  font-weight: 350;
}

.sec-heading-light {
  color: var(--secodary-body-text-color);
  font-weight: 350;
  font-size: 1.5rem;
  padding: 1rem;
}

.hero__para--note {
  font-style: italic;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--secodary-body-text-color);
}

/* Check back later. */

.error-popup {
  border: 1px solid red;
  border-radius: 6px;
  background-color: #ffe6e6;
  max-width: 550px;
  text-align: center;
  padding: 1rem;
  margin: 1rem;
  position: absolute;
  top: 150px;
  left: 490px;
  margin-bottom: 3rem;
}

.error-popup p {
  padding: 0.5rem;
}

.error-popup a {
  text-decoration: none;
  color: var(--primary-body-text-color);
  font-weight: 600;
}

.error-popup a:hover {
  border-bottom: 2px solid red;
}

/*--------------------------------------------*\ 
    #PROBLEM
\*--------------------------------------------*/

.problem-container {
  padding-bottom: 1rem;
  justify-content: center;
  max-width: 1280px;
}

.problem-container h2 {
  /* padding-bottom: 1rem; */
  margin: 0 1rem;
  text-align: left;
}

.problem-container p {
  margin: 0 1rem;
  padding-top: 2rem;
}

@media only screen and (max-width: 699.9px) {
  .problem-list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding-top: 1rem;
    padding-bottom: 6rem;
    list-style-type: none;
    justify-content: space-around;
    align-items: center;
  }

  .problem-block {
    display: flex;
    flex-direction: column;
    width: 75%;
    margin: 1rem;
    padding: 2rem;
    font-style: italic;
    border: 1px solid var(--slight-border);
    border-radius: 5px;
  }
}

@media only screen and (min-width: 700px) {
  .problem-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 3rem 1.5rem 4rem;
    /* padding: 1rem 1rem; */
    list-style-type: none;
    justify-content: space-around;
    align-items: start;
    /* border: 1px solid var(--slight-border);
        border-radius: 5px; */
  }

  .problem-block {
    margin: 0;
    display: flex;
    flex-direction: column;
    width: 30%;
    padding: 2rem;
    font-style: italic;
    border: 1px solid var(--slight-border);
    border-radius: 5px;
  }
}

.problem-img {
  padding: 1rem;
}

/*--------------------------------------------------------------*\
    #Solution
\*--------------------------------------------------------------*/

.solution {
  padding-top: 6rem;
  justify-content: center;
  max-width: 1280px;
}

.solution h2 {
  /* padding-bottom: 1rem; */
  /* margin: 0 1rem; */
}

.solution__intro {
  padding-bottom: 6rem;
}

@media only screen and (max-width: 799.9px) {
  .solution-list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding-top: 2rem;
    padding-bottom: 2rem;
    list-style-type: none;
    justify-content: space-evenly;
    align-items: center;
  }

  .solution-list__items {
    width: 75%;
    margin: 1rem;
    padding: 2rem;
    border: 1px solid var(--slight-border);
    border-radius: 5px;
  }
}

@media only screen and (min-width: 800px) {
  .solution-list {
    display: flex;
    margin: 3rem 1.5rem 4rem;
    /* padding: 1rem 0; */
    list-style-type: none;
    justify-content: space-around;
    align-items: start;
    /* border: 1px solid var(--slight-border);
        border-radius: 5px; */
  }

  .solution-list__items {
    margin: 0;
    width: 30%;
    padding: 2rem;
    border: 1px solid var(--slight-border);
    border-radius: 5px;
  }
}

.solution-image {
  padding: 1rem;
}

/* .solution-container .big-call-button {
    margin-bottom: 1rem;
} */

/*-----------------------------------------------------*\
    #HOW IT WORKS
\*-----------------------------------------------------*/

#how-it-works {
  padding-top: 5rem;
  padding-bottom: 3rem;
  justify-content: center;
  max-width: 1280px;
}

#how-it-works .topper {
  padding: 1rem;
}

#how-it-works .sub-title {
  padding-bottom: 1rem;
}

@media only screen and (max-width: 999.9px) {
  .process-list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding-top: 2rem;
    padding-bottom: 2rem;
    justify-content: space-evenly;
    align-items: center;
  }

  .process-list__items {
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    /* padding-bottom: 2rem; */
  }

  /* .process-list__items.process-list__arrow {
        align-self: center;
        margin: 0;
        display: block;
        box-sizing: border-box;
        background-image: url(/static/img/icons/down-arrow.svg);
        background-repeat: no-repeat;
        background-size: contain;
        height: 75px;
        width: 75px;
    } */
}

@media only screen and (min-width: 1000px) {
  .process-list {
    display: flex;
    flex-wrap: wrap;
    margin: 2rem 1.5rem 2rem;
    /* padding: 2rem 1rem; */
    justify-content: space-between;
    align-items: start;
    /* border: 1px solid var(--slight-border);
        border-radius: 5px; */
  }

  .process-list__items {
    margin: 1rem;
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: first baseline;
    text-align: left;
    padding: 2rem;
    border: 1px solid var(--slight-border);
    border-radius: 5px;
  }

  /* .process-list__items.process-list__arrow {
        align-self: center;
        margin: 0;
        display: block;
        box-sizing: border-box;
        background-image: url(/static/img/icons/right-arrow.svg);
        background-repeat: no-repeat;
        background-size: contain;
        height: 75px;
        width: 75px;
    } */
}

.process-list__items img {
  /* margin-bottom: -1rem; */
}

.process-list__items h3 {
  font-size: 2rem;
}

.process-list__title {
  margin: 0;
}

.process-list__desc {
  list-style-position: outside;
  padding: 0.5rem 0 0 1rem;
}

/*--------------------------------------------------------------------*\
    #OUR SERVICES
\*--------------------------------------------------------------------*/

.services {
  padding-top: 3rem;
  max-width: 1280px;
  /* padding-bottom: 2rem; */
}

.services .sec-heading-light {
  padding: 1rem;
}

.service-block {
  /* height: 400px; */
  text-align: left;
  /* margin: 2rem 2rem 5rem; */
  margin: 2rem 0 5rem;
  /* padding: 2rem 1rem; */
  /* border: 1px solid var(--slight-border);
    border-radius: 5px; */
}

.service-block__title {
  margin: 0 1rem;
  padding: 0 1rem;
}

/* .service-desc__block {
    margin: 0 1rem;
    padding: 0 1rem;
} */

.service-desc__block small {
  display: inline-block;
  margin: 0 1rem 0.5rem;
  padding: 0 1rem 0.5rem;
}

.service-desc__text {
  margin: 0;
}

.service-block a {
  display: inline-block;
  text-decoration: none;
  color: var(--link-color);
  font-weight: 600;
  margin: 1rem;
  padding: 0 1rem;
}

.service-block a:hover {
  text-decoration: underline;
}

/* .service-block small {
    margin: 0 1rem;
    padding: 0 1rem;
} */

@media only screen and (max-width: 799.9px) {
  .service-desc__list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    list-style-type: none;
    justify-content: space-around;
    align-items: center;
  }

  .service-desc__items {
    width: 75%;
    margin: 1rem;
    padding: 2rem;
    border: 1px solid var(--slight-border);
    border-radius: 5px;
  }
}

@media only screen and (min-width: 800px) {
  .service-desc__list {
    display: flex;
    margin: 1.5rem;
    /* padding: 1rem 1rem 2rem; */
    list-style-type: none;
    justify-content: space-around;
    align-items: start;
    /* border: 1px solid var(--slight-border);
        border-radius: 5px; */
  }

  .service-desc__list-1 {
    margin: 1.5rem 1.5rem 0.5rem;
    /* padding-bottom: 0.5rem; */
  }

  .service-desc__items {
    margin: 0;
    width: 30%;
    padding: 2rem 2rem 2rem;
    border: 1px solid var(--slight-border);
    border-radius: 5px;
  }
}

.services a.big-para {
  /* margin: 0; */
}

.services-image {
  /* padding: 2rem 1rem 1rem 0; */
  padding: 1rem;
}

/*-------------------------------------------------------------------*\
    #Pricing
\*-------------------------------------------------------------------*/

.pricing {
  padding-top: 3rem;
  display: flex;
  padding-bottom: 3rem;
  justify-content: center;
  max-width: 1280px;
}

.pricing .main-heading {
  padding: 0 1rem 1rem;
}

@media only screen and (max-width: 999.9px) {
  .pricing-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
  }

  /* Try out min-width and max-width for pricing block */
  .pricing-block {
    display: flex;
    flex-direction: column;
    text-align: start;
    align-items: start;
    margin-top: 1rem;
    margin-bottom: 2rem;
    padding: 2rem;
    width: 85%;
    max-width: 30rem;
    border: 1px solid var(--slight-border);
    border-radius: 5px;
    background-color: var(--yellow-bg-color);
  }
}

@media only screen and (min-width: 1000px) {
  .pricing-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .pricing-block {
    display: flex;
    flex-direction: column;
    text-align: start;
    align-items: start;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    width: 30%;
    border: 1px solid var(--slight-border);
    border-radius: 5px;
    background-color: var(--yellow-bg-color);
  }
}

#pricing h2 {
  padding: 1rem;
}

#pricing h3 {
  font-size: 1rem;
  text-align: left;
  margin: 0;
}

#pricing h4 {
  margin: 0;
  font-size: 2rem;
  padding: 1rem 0;
  text-align: left;
}

#pricing h5 {
  font-size: 1.2rem;
  padding: 0.75rem;
}

.big-wide-call-button {
  color: var(--primary-body-text-color);
  text-decoration: none;
  text-align: center;
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  margin: 1rem 0;
  /* font-size: 1.2rem; */
  background-color: #66cc99;
  border: 1px solid #000000;
  border-radius: 6px;
  position: relative;
  top: 0px;
  box-shadow: 3px 3px #000000;
  transition: top 0.2s, box-shadow 0.2s;
}

.big-wide-call-button:hover {
  top: 3px;
  box-shadow: 0 1px #000000;
}

.big-wide-call-button.big-wide-call-button--secondary {
  background-color: var(--gray-bg-color);
}

.service-list {
  list-style-type: none;
  list-style-position: inside;
  line-height: 1.5rem;
}

.support-list {
  list-style-type: none;
  list-style-position: inside;
  line-height: 1.5rem;
}

#pricing li {
  padding: 3px 30px;
  background-image: url(/static/img/icons/green_check1.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 20px;
}

/*-------------------------------------------------------*\
    #TOOLS
\*-------------------------------------------------------*/

.tools {
  max-width: 1280px;
  padding-bottom: 2rem;
}

.tools h2 {
  padding: 1rem 0 1rem;
}

.tools-block {
  padding-bottom: 2rem;
}

.tools-block__title {
  font-size: calc(1rem * pow(1.2, 3));
  /* padding-bottom: .5rem; */
  margin: 0 1rem;
  line-height: 2.5rem;
}

@media only screen and (max-width: 699.9px) {
  .tools-block__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 20rem;
    padding-top: 1rem;
  }

  .tools-block__fig {
    width: 35%;
    padding: 1rem;
    margin: 1rem;
    border: 1px solid var(--slight-border);
    border-radius: 5px;
  }
}

@media only screen and (min-width: 700px) {
  .tools-block__list {
    display: flex;
    justify-content: center;
    /* max-width: 40rem; */
    padding-top: 1rem;
  }

  .tools-block__fig {
    padding: 1.5rem 1rem;
    margin: 1rem;
    width: 115px;
    border: 1px solid var(--slight-border);
    border-radius: 5px;
  }
}

.tools-block__fig figcaption {
  font-size: 0.8rem;
}

/*-------------------------------------------------------*\
    #FAQ
\*-------------------------------------------------------*/

.faq {
  /* display: flex; */
  padding-bottom: 4rem;
  /* justify-content: center; */
  max-width: 1280px;
}

.faq h2 {
  padding: 1rem;
}

.question-accordion {
  padding: 1rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  width: 100vw;
  max-width: 1280px;
  align-items: start;
}

.question-accordion__item {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin: 0;
  width: 100%;
  border-bottom: 1px solid #ddd;
}

.question-accordion__header {
  display: flex;
  flex-direction: row;
  /* justify-content: space-between; */
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 1rem 1rem 1rem;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: var(--main-bg-color);
  /* transition: background-color 0.3s ease; */
}

.question-accordion__header:hover {
  color: var(--link-color);
  text-decoration: underline;
}

.question-accordion__header.active:hover {
  color: var(--primary-body-text-color);
  text-decoration: none;
}

.question-accordion__title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6rem;
  text-align: left;
  margin: 0;
}

/* .question-accordion__title:hover {
    color: blue;
    text-decoration: underline;
} */

.question-accordion__icon {
  margin: 0;
  /* text-align: right; */
  padding-right: 1rem;
}

.question-accordion__content {
  /* padding-left: 1rem; */
  /* padding-right: 1rem; */
  padding-bottom: 1.5rem;
  display: none;
  overflow: hidden;
  color: var(--secodary-body-text-color);
  margin: 0;
  margin-left: 3.5rem;
  text-align: left;
  /* width: 90%; */
  max-width: 800px;
  line-height: 1.6rem;
}

.faq a {
  text-decoration: none;
  color: var(--link-color);
  font-weight: 600;
  margin: 0;
  padding: 0;
  text-align: left;
}

.faq a:hover {
  text-decoration: underline;
}

.faq a.big-para {
  margin: 0;
  text-align: left;
}

/*--------------------------------------------------------*\
    #ABOUT
\*--------------------------------------------------------*/

.about {
  padding-top: 3rem;
  padding-bottom: 1rem;
  max-width: 1280px;
}

.about .sec-heading-light {
  padding: 1rem 0 1rem;
}

.about__block {
  /* margin: auto; */
  padding: 1rem 0;
  text-align: left;
  /* display: flex; */
  /* justify-content: space-around; */
  max-width: 800px;
  /* align-items: last baseline; */
}

.about__img {
  margin: 0 1rem;
  height: 180px;
  width: 180px;
  padding: 1rem;
}

.about__item {
  /* padding: 1rem 0; */
  /* text-align: left; */
  max-width: 800px;
  margin: 0 auto;
  /* line-height: 1.5rem; */
}

.about__heading {
  padding: 0.5rem;
  font-size: 1.728rem;
  /* h4 size as per modular scale using 1.2 as scale value */
}

.about__para {
  /* max-width: 800px; */
  margin: 0 1rem;
  padding: 1rem 1rem 0;
  font-size: 1.125rem;
  line-height: 1.6rem;
  text-align: left;
}

.about-list {
  font-size: 1.25rem;
  list-style-position: inside;
  line-height: 1.6rem;
  padding: 0 1.5rem 2rem;
}

.about__table {
  margin: 0 1rem;
  padding: 1rem;
  width: 100%;
  max-width: 800px;
  font-size: 1.125rem;
  line-height: 1.6rem;
  text-align: left;
}

.about-table__row {
  padding: 1rem 0;
}

.about-table__col-1 {
  padding: 0 1rem 1rem 0;
  font-style: italic;
  vertical-align: top;
}

.about-table__col-2 {
  padding: 0 1rem 1rem 0;
  vertical-align: top;
}

.about__desc a {
  text-decoration: none;
  color: var(--link-color);
  font-weight: 600;
  margin: 0;
  padding: 1rem;
}

.about__desc a:hover {
  text-decoration: underline;
}

/*--------------------------------------------*\ 
    #WHY HIRE US
\*--------------------------------------------*/

.why-us {
  padding-top: 3rem;
  padding-bottom: 1rem;
  max-width: 1280px;
}

@media only screen and (max-width: 699.99px) {
  .why-us__block {
    display: flex;
    flex-wrap: wrap;
    margin: 1.5rem 0;
    /* padding: 1rem 1rem 2rem; */
    text-align: left;
    justify-content: space-around;
    align-items: start;
  }

  .why-us__item {
    margin: 1rem;
    width: 75%;
    padding: 2rem 2rem 2rem;
    border: 1px solid var(--slight-border);
    border-radius: 5px;
  }
}

@media only screen and (min-width: 700px) {
  .why-us__block {
    display: flex;
    flex-wrap: wrap;
    margin: 1.5rem 0;
    /* padding: 1rem 1rem 2rem; */
    text-align: left;
    justify-content: space-around;
    align-items: start;
  }

  .why-us__item {
    margin: 1rem 0;
    width: 30%;
    padding: 2rem 2rem 2rem;
    border: 1px solid var(--slight-border);
    border-radius: 5px;
  }
}

/*--------------------------------------------*\ 
    #CONTACT
\*--------------------------------------------*/

.contact-container {
  padding-top: 3rem;
  padding-bottom: 3rem;
  max-width: 1280px;
}

@media only screen and (max-width: 999.9px) {
  .contact {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    /* margin: 0; */
  }

  .contact-block {
    padding: 0.5rem;
    /* background-color: var(--tab-highlight-color); */
    border: 1px solid var(--slight-border);
    border-radius: 5px;
    max-width: 85%;
    margin: 1rem;
  }
}

@media only screen and (min-width: 1000px) {
  .contact {
    padding: 2rem 0 0;
    display: flex;
    justify-content: space-around;
    align-items: baseline;
    /* margin: 0; */
  }

  .contact-block {
    margin: 1rem;
    padding: 0.5rem;
    /* background-color: var(--tab-highlight-color); */
    border: 1px solid var(--slight-border);
    border-radius: 5px;
    max-width: 45%;
    width: 30rem;
    text-align: left;
  }

  /* .contact-block-center {
        padding: 0.5rem 1.5rem 1rem;
    } */
}

.contact-block h3 {
  font-size: 1.728rem;
  /* h4 size as per modular scale using 1.2 as scale value */
  padding-top: 1rem;
  text-align: left;
}

.contact__item {
  margin: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
}

.contact-form__list {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  align-items: start;
}

@media only screen and (max-width: 599.99px) {
  .contact-form__item {
    padding: 1rem 0 0.5rem;
    width: 85%;
  }

  /* .contact-form__item p {
        text-align: left;
    } */

  .contact-form__input {
    /* height: 2.5rem; */
    width: 85%;
    padding: 0.5rem 1rem;
  }
}

.contact-form__item {
  padding: 1rem 0 0.5rem;
  width: 100%;
}

.contact-form__item p {
  text-align: left;
  padding-bottom: 0.5rem;
}

.contact-form__input {
  /* height: 2rem; */
  width: 100%;
  padding: 0.5rem;
}

.contact-form__input::placeholder {
  font-family: "Inter Variable", Arial, sans-serif;
}

.contact-form__input--text-area {
  height: 150px;
  resize: none;
  font-family: "Inter Variable", Arial, sans-serif;
}

.contact-form__input--button {
  margin: 1rem 1rem 1rem 0;
  padding: 0.4rem 0.8rem;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  color: var(--primary-body-text-color);
  font-size: 1rem;
  font-family: "Inter Variable", Arial, sans-serif;
  border: 1px solid #000000;
  border-radius: 5px;
  position: relative;
  width: 100%;
  top: 0px;
  box-shadow: 3px 3px #000000;
  transition: top 0.2s, box-shadow 0.2s;
}

.contact-form__input--button:hover {
  top: 3px;
  box-shadow: 0 1px #000000;
}

/* .contact-block .big-call-button {
    margin-top: 3rem;
    margin-bottom: 1rem;
} */

.contact-form__error {
  color: red;
  font-size: 0.8rem;
  text-align: left;
}

.reach-us__email {
  margin: 0.5rem 0;
  padding: 2rem 0 0.5rem;
  text-align: left;
}

.reach-us__phone {
  margin: 0.5rem 0;
  padding: 0.5rem 0 0rem;
  text-align: left;
}

.reach-us__email a,
.reach-us__phone a {
  text-decoration: none;
  color: var(--primary-body-text-color);
  font-size: 1.25rem;
}

/*----------------------------------------------------------*\
    #Footer
\*----------------------------------------------------------*/

.footer {
  max-width: 1280px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  margin: 0 1rem;
  /* margin-right: 2rem; */
  padding: 0 1rem;
  border-top: 1px solid var(--slight-border);
}

.footer-logo {
  margin: 0;
  padding: 2rem 0;
  text-align: start;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
}

.footer-logo__img {
  padding: 0.5rem 0;
  /* padding-bottom: .5rem; */
  margin: 0;
}

.footer-xlink {
  margin: 0;
  /* margin-left: 1rem; */
  padding: 0.2rem;
  /* text-align: left; */
  border: 1px solid var(--slight-border);
  border-radius: 5px;
}

.footer-xlink a {
  text-decoration: none;
  color: var(--link-color);
}

.footer-xlink a:hover {
  text-decoration: underline;
}

.footer__copyright {
  margin: 0;
  padding: 1rem 0;
  font-size: 0.8rem;
  font-weight: 400;
  text-align: left;
}

/* .x-logo {
    border: 1px solid var(--slight-border);
    border-radius: 5px;
} */

/*------------------------------------------------------*\
    #SUCCESS
\*------------------------------------------------------*/

.success-container {
  padding: 3rem 0;
  max-width: 1280px;
  height: 100vh;
}

.success__title {
  font-size: calc(1rem * pow(1.2, 5));
  padding-top: 6rem;
}

.success__para {
  padding: 1rem 1rem 3rem;
}

.success-container a {
  margin-bottom: 1rem;
  text-align: center;
  padding: 1rem 1rem;
  cursor: pointer;
  text-decoration: none;
  color: var(--primary-body-text-color);
  background-color: var(--gray-bg-color);
  font-size: 1rem;
  font-family: "Inter Variable", Arial, sans-serif;
  border: 1px solid #000000;
  border-radius: 4px;
  position: relative;
  width: 80%;
  top: 0px;
  box-shadow: 3px 3px #000000;
  transition: top 0.2s, box-shadow 0.2s;
}

.success-container a:hover {
  top: 3px;
  box-shadow: 0 1px #000000;
}

/*---------------------------------------------------------------------------*\
    #BLOG
\*---------------------------------------------------------------------------*/

.blog {
  height: 100vh;
  max-width: 1280px;
  margin: auto;
  text-align: left;
  /* margin: 0 .5rem; */
  padding: 0 1.5rem;
}

.page-heading {
  font-size: clamp(calc(1rem * pow(1.165, 6)), 2vw, calc(1rem * pow(1.2, 6)));
  text-align: left;
  /* margin: 0 .5rem; */
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/*---------------------------------------------------------------------------*\
    #ABOUT-US
\*---------------------------------------------------------------------------*/

.about-page {
  /* height: 100vh; */
  max-width: 1280px;
  margin: auto;
  text-align: left;
  /* margin: 0 .5rem; */
  padding: 0 1.5rem;
}

.contact-page {
  margin: 2rem auto;
  padding: 2rem 1rem;
}

/*---------------------------------------------------------------------------*\
    #RESOURCES
\*---------------------------------------------------------------------------*/

.resources,
.error-page,
.faq-page,
.website-design-page,
.website-develop-page,
.copy-comms-page {
  height: 100vh;
  max-width: 1280px;
  margin: auto;
  text-align: left;
  /* margin: 0 .5rem; */
  padding: 0 1.5rem;
}

.error-page a:any-link {
  color: var(--link-color);
  text-decoration: none;
}

.error-page a:hover {
  text-decoration: underline;
}
