@font-face {
  font-family: Lexend;
  src: url("https://static.smartstock.africa/font/lexend.ttf");
  font-display: swap;
}

@font-face {
  font-family: RobotoVariable;
  src: url("https://static.smartstock.africa/font/Roboto.ttf");
  font-display: swap;
}

@font-face {
  font-family: Jost;
  src: url("https://static.smartstock.africa/font/jost.ttf");
  font-display: swap;
}

@font-face {
  font-family: Figtree;
  src: url("https://static.smartstock.africa/font/figtree.ttf");
  font-display: swap;
}

* {
  transition: all 0.3s ease;
}


::selection {
  background-color: var(--body-color);
  color: white;
}

html {
  scrollbar-color: var(--font-color) var(--body-color);
  scrollbar-width: thin;
  height: 100%;
}

:root {
  --body-color: #80adbf;
  --font-color: #285166;
  --Lexend: "Lexend", sans-serif;
  --Roboto: "Roboto", sans-serif;
  --Jost: "Jost", sans-serif;
  --Figtree: "Figtree", "sans-serif"
}

body {
  margin: 0;
  background: var(--body-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--font-color);
  text-decoration: underline;
}

#loader {
  position: relative;
  z-index: 101;
  background: linear-gradient(
    90deg,
    rgb(187, 211, 221) 0%,
    rgba(128, 173, 191, 1) 20%,
    rgba(128, 173, 191, 1) 75%,
    rgb(187, 211, 221) 100%
  );
  animation: streak 8.5s linear infinite;
}

#loaderIcon,
#loader {
  height: 30px;
}

@keyframes streak {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100rem 0%;
  }
}

header {
  background: rgba(255, 255, 255, 0.5);
  height: 50px;
  display: grid;
  padding: 5px;
  grid-template-rows: 100%;
  grid-template-columns: 1fr 2fr 1fr;
  position: sticky;
  top: 0;
  z-index: 99;
  backdrop-filter: blur(4px);
}

.headerElement {
  margin: 5px;
  position: relative;
}

#headerImage {
  height: 100%;
  position: absolute;
}

#headerLogoContainer {
  margin-bottom: 10px;
  margin-top: 10px;
}

#headerLinksContainer {
  display: flex;
  align-items: end;
  font-size: 110%;
  justify-content: center;
}

#linksContainer {
  display: flex;
  font-family: var(--Jost);
  color: var(--font-color);
  justify-content: space-between;
  flex: 0.3;
  z-index: 2;
}

#headerCTAContainer {
  display: flex;
}

#CTAButtonHolder {
  margin-left: auto;
  display: flex;
  align-items: center;
  font-family: var(--Jost);
  background-color: #35454c;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;
  letter-spacing: 1px;
  color: white;
  font-weight: 500;
  box-shadow: 0px 0px 3px #00000061;
}

main {
  display: flex;
  flex-direction: column;
  flex: 1;
}

#introSection {
  flex: 1;
  background: linear-gradient(
    0deg,
    rgb(128, 173, 191) 0%,
    rgba(200, 215, 223, 0.5) 70%,
    rgba(255, 255, 255, 0.5) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 40px;
  padding-bottom: 40px;
}

#introTextTitle {
  font-family: var(--Jost);
  font-weight: 700;
  font-size: 150%;
  padding: 5px;
  border-radius: 5px;
  line-height: 1.7;
}

#headerLogoContainer {
  display: flex;
}

#headerLogo {
  position: relative;
  aspect-ratio: 1/1;
}

#headerText {
  font-family: var(--Jost);
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  margin-left: 10px;
  font-weight: 500;
  color: var(--font-color);
  font-size: 150%;
}

#headerSubTitle {
  font-family: var(--Lexend);
  margin-left: 10px;
}
#introTextSubTitle {
  padding: 5px;
  width: 100%;
  font-family: var(--Jost);
  font-size: 90%;
  flex: 1;
  box-sizing: border-box;
}

#introHolder {
  display: flex;
}

#introCTAButton {
  font-family: var(--Lexend);
  padding: 5px;
}

#CTAButton {
  padding: 5px;
  width: max-content;
  background: #000000e5;
  color: var(--body-color);
  border-radius: 5px;
  letter-spacing: 1px;
  cursor: pointer;
}

#briefHolder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

#briefHeader {
  font-family: var(--Jost);
  font-weight: 500;
  font-size: 120%;
}

#brief {
  display: grid;
  grid-template-columns: 50% 50%;
  width: 40%;
  gap: 10px;
}

.brief {
  font-size: 90%;
  font-family: var(--Lexend);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.briefHeader {
  padding: 5px;
  background: #ffffff45;
  display: flex;
}

.briefContent {
  font-size: 80%;
  padding: 5px;
}

.briefIcons {
  height: 100%;
}

.briefIcon {
  width: 18px;
  height: 100%;
}

#circleLogo {
  height: 100%;
}

#footerLogos {
  display: flex;
  height: 25px;
  gap: 10px;
  justify-content: center;
}

#footerHolder {
  margin: 10px;
}

#footerLogo {
  display: flex;
  height: 30px;
  justify-content: center;
  gap: 10px;
}

#circleFooter {
  flex: 0;
}

#rectangleFooter {
  display: flex;
  align-items: center;
  flex: 0;
}

#rectangleLogo {
  height: 50%;
  box-shadow: 0px 0px 0px 5px #e8eef1;
  border-radius: 1px;
}

#footerHeader {
  text-align: center;
  font-family: var(--Jost);
  font-size: 120%;
  font-weight: 500;
}

#footerSocials {
  padding: 10px;
}

footer {
  background: linear-gradient(
    0deg,
    rgb(200, 215, 223) 0%,
    rgb(128, 173, 191) 100%
  );
  margin-top: 50px;
}

#footerEndings {
  display: flex;
  font-family: var(--Jost);
  gap: 10px;
  padding-bottom: 10px;
  justify-content: center;
}

.linkContainer {
  position: relative;
}

.linkActions {
  position: absolute;
  background: white;
  padding: 5px;
  font-size: 80%;
  width: 200px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.link {
  cursor: pointer;
  display: flex;
}

.linked {
  border-bottom: 2px solid var(--font-color);
}

.linkContainer {
  display: none;
  opacity: 0;
}

.linkAction {
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
}

.linkAction:hover {
  background: #0000000f;
}

.linkAction:active {
  background: #0000000f;
}

.lAHeaderText {
  font-weight: 500;
}

.lASubTitle {
  line-height: 1;
  font-size: 90%;
  display: flex;
  flex-direction: column;
}

.lAHeaderText:hover {
  text-decoration: underline;
}

.linkSubTitle {
  font-weight: 500;
  margin-top: 5px;
  font-size: 90%;
}

#contentShip {
  z-index: 1;
  border-radius: 10px;
  display: flex;
  margin-left: 50px;
  margin-right: 50px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--body-color);
  box-shadow: inset 0px -10px 5px #80adbf70;
  background: #00000003;
}

#contentContainer {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  justify-content: space-around;
  flex-direction: row;
}

#heroSectionContainer,
#heroText,
#heroCTAContainer,
#problemSectionContainer {
  display: flex;
}

.heroSection {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-right: 10px;
  flex: 1;
}

.headerSection {
  font-family: var(--Jost);
}

#heroPhotoShip {
  position: absolute;
  right: 0;
}

#photo {
  width: 4vw;
}

#heroText {
  flex-direction: column;
  gap: 10px;
}

#heroSectionShip {
  display: flex;
  align-items: center;
}

#heroHeader {
  font-family: var(--jost);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  color: white;
}

#heroSubTitle {
  font-family: var(--Lexend);
  color: #ffffffc4;
  margin-left: 10px;
}

#heroCTAContainer {
  justify-content: space-between;
  text-wrap-mode: nowrap;
  margin-left: 10px;
  font-family: var(--Jost);
}

.heroCTA {
  font-family: var(--jost);
  padding: 10px;
  background: #0000009c;
  color: white;
  border-radius: 10px;
  padding-left: 15px;
  padding-right: 15px;
  border: 2px solid #fff;
  cursor: pointer;
  display: flex;
}

#heroLoaderSVG {
  width: 2em;
  transform-origin: center;
  animation: rotate4 2s linear infinite;
  height: 100%;
  width: 0;
}

.loadSVG #heroLoaderSVG {
  margin-right: 10px;
  width: auto;
}

.heroText {
  text-wrap-mode: nowrap;
}

#svgCircle {
  fill: none;
  stroke: hsl(214, 97%, 59%);
  stroke-width: 2;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: dash4 1.5s ease-in-out infinite;
}

@keyframes rotate4 {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash4 {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dashoffset: -125px;
  }
}

#secHeroCTA {
  background: #ffffff66;
  color: #1c1c1c;
  border: 2px solid white;
  font-weight: 500;
}

/* PROBLEM SECTION */
#problemSectionContainer {
  gap: 10px;
}
.problem {
  display: flex;
  flex-direction: column;
  background: #ffffff14;
  border-radius: 5px;
  gap: 5;
  overflow: hidden;
  border: 1px solid #ffffff7a;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  color: white;
}

.problem {
  flex: 1;
}

.problemIcon,
.featureIcon {
  height: 25px;
  width: max-content;
  padding: 5px;
  border-radius: 50%;
  background: #ffffff45;
  display: flex;
}

.problemIcon {
  margin-left: 5px;
  margin-top: 5px;
}

.problemIcon,
.problemStmt {
  padding: 5px;
}

.featureStmt,
.featureHeader {
  padding: 5px;
}

.problemStmt,
.featureStmt {
  font-family: var(--jost);
}

.featureStmt {
  font-size: 80%;
  font-family: var(--Jost);
}

#smTstck {
  font-family: var(--Lexend);
  font-variant-caps: petite-caps;
  font-weight: 700;
}

/* END OF PROBLEM SECTION */

/* FEATURES SECTION */
.featuresSectionContainer {
  display: grid;
  grid-template-columns: max-content max-content;
  grid-template-rows: 1fr 1fr;
  justify-items: center;
  gap: 10px;
}

.featureHeader {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #ffffff26;
  color: var(--font-color);
}

.fHeaderText {
  font-family: var(--Lexend);
  font-weight: 500;
}

#problemSectionShip {
  display: flex;
  font-family: var(--Jost);
  flex-direction: column;
  justify-content: center;
}

.socialLogo {
  cursor: pointer;
}

.socialLogo:hover {
  transform: translateY(-5px);
}

#testimonialSection,
#featuresSection,
#pricingSection {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#testimonialHeaderHolder,
#featuresHeaderHolder,
#pricingHeaderHolder {
  font-family: var(--Jost);
  font-weight: 700;
  font-size: 150%;
  padding: 5px;
  border-radius: 5px;
  line-height: 1.7;
}

#testimonialHolder {
  font-family: var(--Jost);
  font-size: 90%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 50%;
  gap: 10px;
  padding: 5px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonialAmt {
  font-family: var(--Lexend);
  font-size: 60px;
  font-weight: 500;
  color: var(--font-color);
}

.testimonialTitle {
  font-weight: 500;
}

.testimonialDescription {
  font-size: 80%;
}

#featuresHolder {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ffffff29;
  margin: 10px;
  border-radius: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.feature {
  display: flex;
  gap: 20px;
}

.miniFeature{
  width: min-content;
  border-radius: 5px;
  background: #ffffff4f;
  padding: 5px;
  border: 1px solid #0000002e;
}


.feature:nth-child(2) .featureDataHolder{
  margin-left: 0px;
}

#featureImageExact {
  background: hsl(var(--hue), 33%, 63%);
  box-shadow: 0px 0px 5px #00000040;
  width:30vw;
  display:flex;
  align-items:center;
  overflow: hidden;
}

.featureImageHolder {
  border: 1px solid #ffffff7d;
  border-radius: 5px;
  box-shadow: 0px 0px 5px #00000040;
  position: relative;
  z-index: 0;
}

#backgroundColorImage {
  width:100%;
}

#variableImage {
  height: 600px;
}

#variableMbImage {
  height: 100%;
}

.featureDataHolder {
  font-size: 150%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex:1;
}

.featureDataHeader {
  font-family: var(--Jost);
  background: #fff6;
  padding: 5px;
  border-left: 4px solid var(--font-color);
  font-weight: 500;
  letter-spacing: 1px;
}

.featureDataContent {
  font-family: var(--Jost);
  text-align: justify;
  line-height: 1.5;
  font-size: 18px;
  font-weight: 300;
}

#mobile_image_holder {
  position: absolute;
  bottom: 10px;
  height: 50%;
  right: 10px;
  border: 1px solid #ffffff7d;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 0px 5px #00000040;
}

#pricing{
  display: flex;
}

.pricing{
  margin: 5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
}

.prContent{
  font-family: var(--Jost);
  font-weight: 300;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  font-size: 90%;
}

.proPricing{
  background-color: var(--body-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: white;
}

.proContent{
  filter: drop-shadow(0px 0px 2px #00000082);
}

.prHeaderText{
  font-family: var(--Jost);
  background: #ffffff5e;
  text-align: center;
  font-weight: 500;
  letter-spacing: 1px;
}

.prButtonHolder{
  font-family: var(--Jost);
  padding: 5px;
  text-align: center;
  background: var(--body-color);
  color: white;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: auto;
}



.proButtonHolder{
  background: #ffffff36;
}

@media (max-width: 600px) {
  #loaderContainer {
    padding: 5px;
    border-radius: 5px;
  }
  #loaderIcon,
  #loader {
    height: 20px;
  }
  header {
    grid-template-columns: 1fr 1fr;
  }
  #headerLinksContainer {
    display: none;
  }
  #introSection {
    flex: 1;
    padding-left: 10px;
    padding-right: 10px;
  }
  #introHolder {
    display: flex;
    flex-direction: column;
  }
  #introTextTitle {
    flex: 1;
    line-height: 1;
  }

  #introCTAButton {
    display: flex;
    justify-content: center;
  }
  #brief {
    grid-template-columns: 1fr;
    width: 80%;
  }

  .briefHeader {
    justify-content: center;
  }

  .briefContent {
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
  }

  #briefHolder {
    padding: 5px;
  }
  #footerEndings {
    font-size: 70%;
    text-wrap-mode: nowrap;
    gap: 5px;
    flex-direction: column;
  align-items: center;
  }
  .divider{
    display: none;
  }
  #problemSectionShip {
    margin-left: 10px;
    margin-right: 10px;
  }
  .problem {
    height: max-content;
  }
  .problemStmt {
    line-height: 1;
    font-size: 80%;
  }
  .problemIcon {
    height: 15px;
  }
  #contentShip {
    flex: 1;
    margin-right: 0px;
    margin-left: 0px;
  }
  #featuresSectionShip {
    display: none;
  }
  #contentContainer {
    flex-direction: column;
  }
  #heroCTAContainer {
    justify-content: unset;
    margin: 0;
    padding: 5px;
    gap: 10px;
  }
  .heroCTA {
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
  }
  #headerText {
    font-size: 120% !important;
  }
  #headerCTAContainer {
    align-items: center;
  }
  #CTAButtonHolder {
    padding: 2.5px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 80%;
    height: 3ch;
  }
  .feature {
    flex-direction: column;
    align-items: center;

    
  }
  #featuresHolder {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #variableImage {
    height: auto;
    width: 100% !important;
  }
  .featureDataHolder {
    width: 50vw;
    overflow: hidden;
    background:#fff6;
    box-shadow: 0px -4px 4px -4px black;
    position: relative;
    z-index: 1;
  }
  .featureDataContent{
    padding: 5px;
    border-right: 4px solid var(--font-color);
  }
  #variableImage {
    display: none;
  }
  #mobile_image_holder {
    height: 300px;
    position: relative;
    overflow: hidden;
    width: max-content;
    bottom: 0;
    right: 0;
    border:none;
    box-shadow: none;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  #variableMbImage {
    height: 150%;
  }
  .featureImageHolder {
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }


  #featureImageExact {
    align-items: baseline;
    height: 110px;
    width:100%;
  }

  #backgroundColorImage {
    width: 100%;
    height: auto;
  }
  .prContent{
    font-size: 70%;
  }
  .miniFeature{
    padding: 0px;
    border: none;
    background: none;
    width:80%;
  }
}

@media (max-width: 1550px) {
  #linksContainer {
    flex: 0.5;
  }
  #variableImage {
    width: 30vw;
    height: auto;
  }

  .featureDataHolder {
    margin-left: 0px;
    width: 30vw;
  }
  .featureDataContent {
    margin-left: 0px;
  }
}
@media (max-width: 1250px) {
  .problemStmt {
    line-height: 1;
    font-size: 80%;
  }
  .problemIcon,
  .featureIcon {
    display: none;
  }
  .featureStmt,
  .featureHeader {
    padding: 3px;
  }
  .fHeaderText {
    font-size: 80%;
  }
  #heroSectionShip {
    flex: 0.5;
  }
  #problemSectionShip {
    flex-direction: column;
    justify-content: center;
  }
  #featuresSectionContainer {
    grid-template-columns: max-content;
  }
  #headerText {
    text-wrap-mode: nowrap;
  }
  #heroSubTitle {
    font-size: 60%;
  }
  #problemSectionContainer {
    flex-direction: column;
  }
  .featuresSectionContainer {
    grid-template-columns: max-content !important;
  }
  #headerText {
    font-size: 150%;
  }
  #testimonialHolder {
    grid-template-columns: 1fr;
    width: 70%;
  }
  #featuresHolder {
    width: 100%;
  }
  .featureDataHolder {
    font-size: 120%;
    width: auto;
  }

  .featureDataContent {
    line-height: 1;
    font-size: 14px;
  }

  .testimonial {
    display: grid;
    grid-template-columns: 70px 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .testimonialAmt {
    grid-row: span 2 / span 2;
  }
  .testimonialTitle{
    text-align: left;
  }
  .testimonialDescription {
    line-height: 1;
    text-align: left;
    align-self: flex-start;
  }
  .feature:nth-child(2){
  flex-direction: column;
}
}
