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

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

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

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

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

* {
  transition: all 0.3s ease;
}

html {
  scrollbar-width: thin;
}

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

header {
  height: max-content;
  background: #ffffff45;
  position: relative;
  z-index: 1;
}

#headerLogo {
  height: 6vh;
}

#headerContainer {
  display: flex;
  align-items: center;
  font-size: 120%;
  justify-content: space-between;
  padding: 5px;
  padding-left: 20px;
  padding-right: 20px;
}

#headerLogoHolder {
  display: flex;
  align-items: center;
  cursor: pointer;
}

#headerText {
  font-family: var(--Jost);
  letter-spacing: 1px;
  font-weight: 700;
  color: #285166;
}

#headerCTA {
  padding: 5px;
  color: white;
  font-family: var(--Lexend);
  letter-spacing: 1px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 3px;
  background: linear-gradient(
    0deg,
    rgb(40, 81, 102) 0%,
    rgb(128, 173, 191) 100%
  );
  color: white;
  border: 2px solid #285166;
  cursor: pointer;
}

#blogShip {
  height: 100%;
}

#blogContainer {
  padding: 50px;
  padding-top: 10px;
  height: 100%;
  box-sizing: border-box;
}

.blog {
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff30;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
}

.blog:hover {
  background: rgba(255, 255, 255, 0.288);
}

.blogHeaderText {
  padding: 5px;
  font-family: var(--Jost);
  background: #ffffff30;
}

.blogContent {
  padding: 5px;
  font-family: var(--Outfit);
  text-align: justify;
  font-weight: 300;
  letter-spacing: 1px;
}

.blogFooter {
  font-family: var(--Outfit);
  padding: 5px;
  display: flex;
  justify-content: end;
}

.blogContent {
  padding: 5px;
  display: flex;
  justify-content: end;
  font-family: var(--Jost);
}

#topicShip{
  position: relative;
  height: 100%;
  background: #ffffff45;
  border-radius: 5px;
}

#topicContainer{
  display: flex;
  height: 100%;
  padding: 5px;
  box-sizing: border-box;
}

#subTopics{
  padding: 5px;
  font-family: var(--Figtree);
  font-size: 120%;
  font-weight: 500;
  margin-top: 10px;
  padding-right: 20px;
}

#subTopicBlog{
  flex: 1;
  padding: 5px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.stBlogContent{
  font-family: var(--Outfit);
  letter-spacing: 1px;
}

.stBlogTime{
  font-size: 14px;
}

.stBlog{
  background: #ffffff45;
  border-radius: 10px;
  box-shadow: 0 4px 10px 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;
}

.stBlogHeader{
  background: white;
  padding: 5px;
  border-left: 4px solid var(--body-color);
  font-family: var(--Jost);
  display: flex;
  align-items: end;
  justify-content: space-between;
  font-weight: 500;
  letter-spacing: 1px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.stBlogContent{
  font-family: var(--Figtree);
  padding: 5px;
  font-size: 80%;
  text-align: justify;
}

#navigationShip{
  position:relative;
}

#navigationContainer{
  padding: 10px;
  padding-left: 50px;
  font-family: var(--Outfit);
}

.navigationLink{
  width: max-content;
  text-decoration: underline;
  cursor: pointer;
  letter-spacing: 1px;
}

#headerLinks{
  font-family: var(--Jost);
  font-weight: 500;
  color: #285166;
  cursor: pointer;
}


@media (max-width: 1000px) {
  #blogContainer {
    padding: 25px;
  }

  .blog {
    width: 200px;
  }

  .blogContent {
    text-align: left;
    line-height: 1;
    font-size: 80%;
  }
}
