@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Poppins", sans-serif;
  margin-top: 0;
}

h4 {
  font-size: 1.2rem !important;
}

.googleMap {
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 50%;
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 20px;
  box-shadow: 1px 1px 20px -12px black;
}

.googleMap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  border-radius: 20px;
}

.impact {
  background-color: rgba(255, 255, 255, 0.4) !important;
  box-shadow: 1px 1px 20px 1px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* ==========Blog section home=========== */
.blog-card {
  display: flex;
  flex-direction: column;
  margin: 1rem auto;
  box-shadow: 0 3px 7px -1px rgba(0, 0, 0, 0.2);
  margin-bottom: 1.6%;
  background: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
  /* font-family: sans-serif; */
  border-radius: 5px;
  overflow: hidden;
  z-index: 0;
}
.blog-card a {
  color: inherit;
}
.blog-card a:hover {
  color: #5ad67d;
}
.blog-card:hover .photo {
  transform: scale(1.3) rotate(3deg);
}
.blog-card .meta {
  position: relative;
  z-index: 0;
  height: 200px;
}
.blog-card .photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.2s;
}
.blog-card .details,
.blog-card .details ul {
  margin: auto;
  padding: 0;
  list-style: none;
}
.blog-card .details {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  margin: auto;
  transition: left 0.2s;
  background: rgba(0, 0, 0, 0.6);
  color: #f29422;
  padding: 10px;
  width: 100%;
  font-size: 0.9rem;
}
.blog-card .details a {
  text-decoration: dotted underline;
}
.blog-card .details ul li {
  display: inline-block;
}
.blog-card .details .author:before {
  font-family: FontAwesome;
  margin-right: 10px;
  content: "\f007";
}
.blog-card .details .date:before {
  font-family: FontAwesome;
  margin-right: 10px;
  content: "\f133";
}
.blog-card .details .tags ul:before {
  font-family: FontAwesome;
  content: "\f02b";
  margin-right: 10px;
}
.blog-card .details .tags li {
  margin-right: 2px;
}
.blog-card .details .tags li:first-child {
  margin-left: -4px;
}
.blog-card .description {
  padding: 1rem;
  background: #fff;
  position: relative;
  z-index: 1;
}
.blog-card .description h1,
.blog-card .description h2 {
  font-family: Poppins, sans-serif;
}
.blog-card .description h1 {
  line-height: 1;
  margin: 0;
  font-size: 1.7rem;
}
.blog-card .description h2 {
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #a2a2a2;
  margin-top: 5px;
}
.blog-card .description .read-more {
  text-align: right;
}
.blog-card .description .read-more a {
  color: #0073b2;
  display: inline-block;
  position: relative;
  font-weight: bolder;
}
.blog-card .description .read-more a:after {
  content: "\f061";
  font-family: FontAwesome;
  margin-left: -10px;
  opacity: 0;
  vertical-align: middle;
  transition: margin 0.3s, opacity 0.3s;
}
.blog-card .description .read-more a:hover:after {
  margin-left: 5px;
  opacity: 1;
}
.blog-card p {
  position: relative;
  margin: 1rem 0 0;
}
.blog-card p:first-of-type {
  margin-top: 1.25rem;
}
.blog-card p:first-of-type:before {
  content: "";
  position: absolute;
  height: 5px;
  background: #0073b2;
  width: 35px;
  top: -0.75rem;
  border-radius: 3px;
}
.blog-card:hover .details {
  left: 0%;
}
@media (min-width: 640px) {
  .blog-card {
    flex-direction: row;
    max-width: 700px;
  }
  .blog-card .meta {
    flex-basis: 40%;
    height: auto;
  }
  .blog-card .description {
    flex-basis: 60%;
  }
  .blog-card .description:before {
    transform: skewX(-3deg);
    content: "";
    background: #fff;
    width: 30px;
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    z-index: -1;
  }
  .blog-card.alt {
    flex-direction: row-reverse;
  }
  .blog-card.alt .description:before {
    left: inherit;
    right: -10px;
    transform: skew(3deg);
  }
  .blog-card.alt .details {
    padding-left: 25px;
  }
}

.impact-row {
  justify-content: center;
}

.achievements-row {
  justify-content: center;
}

.blogs-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.blogs-page {
  display: flex;
  flex-direction: column;
  margin: 1rem auto;
  box-shadow: 1px 1px 20px -2px black;
  margin-bottom: 1.6%;
  background: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
  /* font-family: sans-serif; */
  border-radius: 5px;
  overflow: hidden;
  z-index: 0;
  max-width: 300px;
  height: 550px;
}

.blogs-page .meta {
  height: 200px;
}
.blogs-page .description {
  height: 350px;
}

.blog-card .description h1 {
  line-height: 1;
  margin: 0;
  font-size: 1.3rem;
}

/* Imported font: Inter */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700;800&display=swap");

/* List of variables */

:root {
  /* Colors: */
  --bg: #16181d;
  --accent: #5686f5;
  --accent-10: #5686f510;
  --emphasis: #333;
  --text: #98a0b3;
  /* Typography */
  --h1: 2.25rem;
  --h2: 1.5rem;
  --h3: 1.25rem;
  --paragraph: clamp(1rem, 0.875rem + 0.4vw, 1.125rem);
  --info-text: 1rem;
  --text-width-wide: 70ch;
  --text-width-medium: 60ch;
  --fw-bold: 700;
  --fw-regular: 500;
  --fw-light: 300;
  /* Spacing */
  --spacing-xxs: 0.5em;
  --spacing-xs: 1em;
  --spacing-s: 1.5em;
  --spacing-m: 3em;
  --spacing-l: 6em;
  --spacing-xl: 8em;
  /* Misc */
  --radius-xs: 0.25em;
  --radius-s: 0.5em;
  --center-it: auto;
}

#scroll-tracker {
  height: 4px;
  background-color: var(--accent);
  position: fixed;
  inset: 0 0 auto;
  transform-origin: left;
}

main {
  padding-block: var(--spacing-m);
}

article {
  margin: var(--center-it);
  max-width: var(--text-width-wide);
}

article > p ~ p {
  margin-bottom: var(--spacing-s);
}

article h1 {
  color: var(--emphasis);
  margin-bottom: var(--spacing-s);
  font-size: var(--h1);
  font-weight: var(--fw-bold);
}

article h2 {
  color: var(--emphasis);
  margin-bottom: var(--spacing-s);
  margin-top: var(--spacing-m);
  font-size: var(--h2);
  font-weight: var(--fw-bold);
}

article h3 {
  color: var(--accent);
  margin-bottom: var(--spacing-s);
  font-size: var(--h3);
  font-weight: var(--fw-bold);
}

article p {
  font-size: var(--paragraph);
  color: var(--text);
  line-height: 32px;
  letter-spacing: 0.25px;
}

article em {
  color: var(--emphasis);
}

article cite {
  font-weight: var(--fw-light);
  color: var(--emphasis);
  font-style: italic;
}

article .info_block {
  display: flex;
  gap: 6px;
  margin-bottom: var(--spacing-xs);
}

article .info {
  font-size: var(--info-text);
  color: var(--text);
}

article .likes,
article .replies,
article .mentions {
  font-size: var(--info-text);
  color: var(--accent);
}

article .last_update {
  display: inline-block;
  background-color: var(--accent-10);
  color: var(--accent);
  margin-bottom: var(--spacing-l);
  font-size: var(--info-text);
  padding: var(--spacing-xxs) var(--spacing-xs);
  border-radius: var(--radius-s);
}

article .link {
  color: var(--accent);
  cursor: pointer;
}

article img {
  width: 100%;
  margin-block: var(--spacing-m);
  border-radius: var(--radius-xs);
  box-shadow: 1px 1px 20px -2px black;
}

.highlight {
  margin: var(--center-it);
  margin-bottom: var(--spacing-m);
  background-color: #98a0b3;
  max-width: var(--text-width-medium);
  border-radius: var(--radius-s);
  padding: var(--spacing-m);
}

article ul {
  margin: var(--spacing-s);
}

article li {
  padding-bottom: var(--spacing-s);
  margin-left: var(--spacing-xs);
  font-size: var(--paragraph);
  color: var(--emphasis);
  list-style: square;
}

@media screen and (max-width: 760px) {
  article .info_block {
    flex-direction: column;
  }

  article .highlight {
    padding: var(--spacing-s);
    max-width: var(--text-width-wide);
  }

  .title-container h1 {
    font-size: 2rem !important;
  }
}

.angles {
  margin-left: 20px;
  margin-right: 20px;
  position: relative;
  /* background-color: rgba(255, 255, 255, 0.4); */
  margin-bottom: 40px;
  backdrop-filter: blur(5px);
  box-shadow: 1px 1px 20px -2px black;
}

.angles::before {
  content: "";
  position: absolute;
  top: 0;
  left: -5px;
  height: 60px;
  width: 5px;
  background-color: #0073b2;
  border-bottom-left-radius: 5px;
}

.angles::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  height: 5px;
  width: 60px;
  background-color: #0073b2;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.angles-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -5px;
  height: 60px;
  width: 5px;
  background-color: #0073b2;
  border-top-right-radius: 5px;
}

.angles-1::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: -5px;
  height: 5px;
  width: 60px;
  background-color: #0073b2;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.service-anima::before {
  content: "";
  position: absolute;
  top: 0;
  left: -15px;
  height: 60px;
  width: 15px;
  background-color: #0073b2;
  border-bottom-left-radius: 15px;
}

.service-anima::after {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  height: 15px;
  width: 60px;
  background-color: #0073b2;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.row {
  justify-content: center;
}

.contact-form-holder {
  margin-left: 0 !important;
}

.blog-card {
  position: relative;
}

/* .big-title {
  position: absolute;
  left: 50%;
  top: -50%;
  background: linear-gradient(90deg, #0073b2, #f29422, #98a0b3);
  background-size: 400%;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  animation: animated 10s linear infinite;
} */
