@import url("https://fonts.googleapis.com/css2?family=Abel&family=Anton&family=Josefin+Sans&family=Lexend+Deca&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;900&family=Roboto&display=swap");

html,
body {
  margin: 0%;
  box-sizing: border-box;
  overflow-x: hidden;
}

:root {
  /* Colors */
  --text-gray: #3f4954;
  --text-light: #686666da;
  --bg-color: #0f0f0f;
  --white: #ffffff;
  --midnight: #104f55;

  /* gradient color   */
  --sky: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);

  /* fonts */
  --Abel: "Abel", cursive;
  --Anton: "Anton", cursive;
  --Josefin: "Josefin", cursive;
  --Lexend: "Lexend", cursive;
  --Livvic: "Livvic", cursive;
}

/* all global classes */

a {
  text-decoration: none;
  color: var(--text-gray);
}
a > i {
  cursor: pointer;
}

.flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

ul {
  list-style-type: none;
}

h1 {
  font-family: var(--Lexend);
  font-size: 2.5rem;
}

h2 {
  font-family: var(--Lexend);
}

h3 {
  font-family: var(--Abel);
  font-size: 1.3rem;
}

button.btn {
  border: none;
  border-radius: 2rem;
  padding: 1rem 3rem;
  font-size: 1rem;
  font-family: var(--Livvic);
  cursor: pointer;
}

span {
  font-family: var(--Abel);
}

.container {
  margin: 0 5vw;
}

.text-gray {
  color: var(--text-gray);
}

p {
  font-family: var(--Lexend);
  color: var(--text-light);
}

/* Global classes ends */

/* Navbar */

.nav {
  background: white;
  padding: 0 2rem;
  height: 0rem;
  min-height: 10vh;
  overflow: hidden;
  transition: height 1s ease-in-out;
}

.nav .nav-menu {
  justify-content: space-between;
}

.nav .toggle-collapse {
  position: absolute;
  top: 0%;
  width: 90%;
  cursor: pointer;
  display: none;
}

.nav .toggle-collapse .toggle-icons {
  display: flex;
  justify-content: flex-end;
  padding: 1.7rem 0;
}

.nav .toggle-collapse .toggle-icons i {
  font-size: 1.4rem;
  color: var(--text-gray);
}

.collapse {
  height: 35rem;
}

.nav .nav-items {
  display: flex;
  margin: 0;
}

.nav .nav-items .nav-link {
  padding: 1.6rem 1rem;
  font-size: 1.1rem;
  position: relative;
  font-family: var(--Abel);
  font-size: 1.1rem;
}

/* .nav .nav-items .nav-link:hover {
  background-color: var(--midnight);
} */

.nav .nav-items .nl1:hover {
  background-color: palegreen;
}

.nav .nav-items .nl2:hover {
  background-color: red;
}

.nav .nav-items .nl3:hover {
  background-color: dodgerblue;
}

.nav .nav-items .nl4:hover {
  background-color: red;
}

.nav .nav-items .nl5:hover {
  background-color: palegreen;
}

.nav .nav-items .nav-link:hover a {
  color: var(--white);
}

.nav .nav-brand a {
  font-size: 1.6rem;
  padding: 1rem 0;
  display: block;
  font-family: var(--Lexend);
  font-size: 1.6rem;
}

.nav .social {
  padding: 1.4rem 0;
}

.nav .social i {
  padding: 0 0.2rem;
}

.nav .social i:hover {
  color: #a1c4cf;
  transform: translateY(-3px);
}

/* Nav ends */

/* Main Content */

/* Site title */
main .site-title {
  background: url("../assets/bg-1.png");
  background-size: cover;
  height: 110vh;
  /* display: flex; */
  /* justify-content: center; */
  position: relative;
}

main .site-title .site-background {
  padding-top: 10rem;
  /* text-align: center; */
  color: var(--white);
}

main .site-title .site-background h1,
h3 {
  margin: 0 0 0 15rem;
  padding: 0;
}

main .site-title .site-background h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2em;
  /* text-align: left; */
}

main .site-title .site-background h1 {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 5em;
}

main .site-title .site-background h1#bold {
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  font-size: 5em;
}

main #wave {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

/* Site title ends here */

/* Intro  */

section .intro {
  /* height: 250px; */
  width: 100%;
  text-align: center;
  margin: 3rem auto 0 auto;
}

section .intro h1 {
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  font-size: 3em;
}

section .intro h1,
h2 {
  text-align: center;
  margin-left: 5rem;
  margin-right: 5rem;
}

/* Carousel */

main .blog {
  background: url("../assets/Abract01.png");
  background-repeat: no-repeat;
  background-position: right;
  height: 100vh;
  width: 100%;
  background-size: 65%;
}

main .blog .blog-post {
  padding-top: 6rem;
}

main .blog-post .blog-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 80%;
  margin: 3rem 2rem;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2);
}

main .blog-post .blog-content:hover {
  transform: translateY(-3rem);
}

main .blog-content .blog-title {
  padding: 2rem 0;
}

main .blog-content .btn-blog {
  padding: 0.7rem 2rem;
  background: var(--sky);
  margin: 0.5rem;
}

main .blog-content span {
  display: block;
}

main .blog-content span i {
  color: red;
}

main .blog-content span i:hover {
  transform: translateY(-3px);
}

/* Site content */

main .site-content {
  display: grid;
  grid-template-columns: 70% 30%;
  margin-top: 3rem;
}

main .post-content {
  width: 100%;
}

main .site-content .post-content > .post-image,
.post-title {
  padding: 1rem 2rem;
  position: relative;
}

main .site-content .post-content > .post-image .post-info {
  background: var(--sky);
  padding: 1rem;
  position: absolute;
  bottom: 0%;
  left: 20vw;
  border-radius: 3rem;
}

main .site-content .post-content > .post-image > div {
  overflow: hidden;
}

main .site-content .post-content > .post-image .img {
  width: 100%;
  transition: all 1s ease;
}

main .site-content .post-content > .post-image .img:hover {
  transform: scale(1.3);
}

main .site-content .post-content > .post-image .post-info span {
  margin: 0 0.5rem;
}

main .post-content .post-title a {
  font-family: var(--Anton);
  font-size: 1.5rem;
}

.site-content .post-content .post-title .post-btn {
  border-radius: 0;
  padding: 0.7rem 1.5rem;
  background: var(--sky);
}

.site-content .pagination {
  justify-content: center;
  color: var(--text-gray);
  margin: 4rem 0;
}

.site-content .pagination a {
  padding: 0.6rem 0.9rem;
  border-radius: 2rem;
  margin: 0 0.3rem;
  font-family: var(--Lexend);
}

.site-content .pagination .pages {
  background: var(--text-gray);
  color: var(--white);
}

/* Sidebar */

.site-content > .sidebar .category-list {
  font-family: var(--Livvic);
}

.site-content > .sidebar .category-list .list-items {
  background: var(--sky);
  padding: 0.4rem 1rem;
  margin: 0.8rem 0;
  border-radius: 3rem;
  width: 70%;
  display: flex;
  justify-content: space-between;
}

.site-content > .sidebar .category-list .list-items a {
  color: black;
}

.site-content .sidebar .popular-post .post-content {
  padding: 1rem 0;
}

.site-content .sidebar .popular-post h2 {
  padding-top: 8rem;
}

.site-content .sidebar .popular-post .post-info {
  padding: 0.4rem 0.1rem !important;
  bottom: 0rem !important;
  left: 1.5rem !important;
  border-radius: 0rem !important;
  background: white !important;
}

.site-content .sidebar .popular-post .post-title a {
  font-size: 1rem;
}

.site-content .sidebar .newsletter {
  padding-top: 10rem;
}

.site-content .sidebar .newsletter .form-element {
  padding: 0.5rem 2rem;
}

.site-content .sidebar .newsletter .input-element {
  width: 80%;
  height: 1.9rem;
  padding: 0.3rem 0.5rem;
  font-family: var(--Lexend);
  font-size: 1rem;
}

.site-content .sidebar .newsletter .form-btn {
  border-radius: 0;
  padding: 0.8rem 32%;
  margin: 1rem 0;
  background: var(--sky);
}

.site-content .sidebar .popular-tags {
  padding: 5rem 0;
}

.site-content .sidebar .popular-tags .tags .tag {
  background: var(--sky);
  padding: 0.4rem 1rem;
  border-radius: 3rem;
  margin: 0.4rem 0.6rem;
}

/* Side bar ends */

/* Main content ends */

/* Footer */

footer.footer {
  height: 100%;
  background: var(--bg-color);
  position: relative;
}

footer.footer .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

footer.footer .container > div {
  flex-grow: 1;
  flex-basis: 0;
  padding: 3rem 0.9rem;
}

footer.footer .container h2 {
  color: var(--white);
  font-family: var(--sky);
}

footer.footer .newsletter .form-element {
  background: black;
  display: inline-block;
}

footer.footer .newsletter .form-element input {
  padding: 0.5rem 0.7rem;
  border: none;
  background: transparent;
  color: white;
  font-family: var(--Josefin);
  font-size: 1rem;
  width: 74%;
}

footer.footer .newsletter .form-element span {
  background: var(--sky);
  padding: 0.5rem 0.7rem;
  cursor: pointer;
}

footer.footer .instagram div > img {
  display: inline-block;
  width: 25%;
  height: 50%;
  margin: 0.3rem 0.4rem;
}

footer.footer .follow div i {
  color: var(--white);
  padding: 0 0.4rem;
}

footer.footer .follow div i:hover {
  transform: translateY(-4px);
}

footer.footer .rights {
  justify-content: center;
  font-family: var(--sky);
}

footer.footer .rights h4 a {
  color: var(--white);
}

footer.footer .move-up {
  position: absolute;
  right: 6%;
  top: 50%;
}

footer.footer .move-up span {
  color: var(--midnight);
}

footer.footer .move-up span:hover {
  color: var(--white);
  cursor: pointer;
}

/* Footer ends */

/* Media queries */

/* 1130px */

@media only screen and (max-width: 1130px) {
  .site-content .post-content > .post-image .post-info {
    left: 2rem !important;
    bottom: 1.2rem !important;
    border-radius: 0% !important;
  }

  .site-content .sidebar .popular-post .post-info {
    display: none !important;
  }

  footer.footer .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 750 px */
@media only screen and (max-width: 750px) {
  .nav .nav-menu,
  .nav .nav-items {
    flex-direction: column;
  }

  .nav .nav-items {
    align-items: center;
  }

  .social {
    align-self: center;
  }

  .nav .toggle-collapse {
    display: initial;
  }

  main .site-content {
    grid-template-columns: 100%;
  }

  footer.footer .container {
    grid-template-columns: repeat(1, 1fr);
  }

  main .site-title .site-background h1,
  h3 {
    margin: 0 0 0 3.5rem;
    padding: 0;
  }

  main .site-title .site-background h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 3.5em;
    /* text-align: left; */
  }

  main .site-title .site-background h1 {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 3.7em;
  }

  main .site-title .site-background h1#bold {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 3.9em;
  }
}

/* 520 px */
@media only screen and (max-width: 520px) {
  .nav-brand {
    /* background-color: yellow; */
    align-items: center;
  }

  .nav .nav-brand a {
    font-size: 22px;
    /* padding: 1rem 0; */
    font-family: var(--Lexend);
  }

  main .post-content p {
    font-family: var(--sky);
  }

  main .blog {
    height: 100vh;
  }

  main .blog .blog-post {
    padding-top: 3px;
  }

  .site-content {
    margin-top: 1rem;
  }

  .site-content > .sidebar .category-list {
    font-family: var(--sky);
  }

  .site-content .sidebar .popular-post h2 {
    padding-top: 4rem;
  }

  .site-content .sidebar .newsletter {
    padding-top: 4rem;
  }

  .site-content .post-content > .post-image .post-info {
    display: none;
  }

  footer.footer .container > div {
    padding: 1rem 0.9rem !important;
  }

  footer .rights {
    padding: 0 1.4rem;
    text-align: center;
  }

  nav .toggle-collapse {
    width: 80% !important;
  }

  main .site-title .site-background h1,
  h3 {
    margin: 0 0 0 3rem;
    padding: 0;
  }

  main .site-title .site-background h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 2em;
    /* text-align: left; */
  }

  main .site-title .site-background h1 {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 2.7em;
  }

  main .site-title .site-background h1#bold {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 3em;
  }

  section .intro {
    margin-bottom: 2rem;
  }

  section .intro h1 {
    font-weight: 800;
    font-size: 2.2em;
  }

  section .intro h1,
  h2 {
    text-align: center;
    margin-left: 5rem;
    margin-right: 5rem;
  }

  main .site-content {
    margin-top: 2rem;
  }
}
