/* ___________________VARIABLES____________________*/

:root {
  --color-blue-1: #170339;
  --color-blue-2: #00bcd4;
  --color-blue-3: #fa8bff;
  --color-blue-4: #886ebc;
  --color-blue-5: #344275;
  --color-blue-6: #005baa;

  --color-light-1: #c7d4d6;
  --color-light-2: #666868;

  --color-white-1: white;
  --color-white-2: #e9e5ef;
  --color-orange: orangered;

  --font-color-paragraph: rgb(124, 119, 119);
  --font-color-heading-light: #005baa;
  --font-color-heading-dark: #170339;

  --button-color: yellow;
  --bg-color-light: rgb(220, 211, 211);
  --bg-color-dark: rgb(199, 182, 182);

  --font-family-title: "Montserrat", sans-serif;
  --font-family-subtitle: "Raleway", sans-serif;
  --font-family-footer: "Rajdhani", sans-serif;

  --font-size-5: clamp(2rem, 4.5vw, 4rem);
  --font-size-4: clamp(1.5rem, 3.5vw, 3.5rem);
  --font-size-3: clamp(1.25rem, 2.5vw, 3rem);
  --font-size-2: clamp(0.9rem, 1.5vw, 2.25rem);
  --font-size-1: clamp(0.6rem, 1.25vw, 2rem);
}

/* ___________________INITIALIZING____________________*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  background-image: white;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.header-line {
  width: 100%;
  height: 0.25rem;
  background-color: var(--color-blue-1);
  border-radius: 20px 20px;
}

nav {
  height: 5.25rem;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0rem 3rem 0rem 1rem;
}

.left-nav-container {
  height: 100%;
  width: 40vw;
  display: flex;
  align-items: center;
}

.logo img {
  height: 3rem;
  width: 10rem;
}

.logo :hover {
  cursor: pointer;
}

.nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 1rem;
}

.nav-item {
  position: relative;
}

ul li {
  list-style: none;
}

.nav-item a {
  font-family: var(--font-family-title);
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--color-blue-1);
  font-weight: 550;
  height: 100%;
}

.nav-item i {
  display: none;
}

.nav-item :hover span {
  color: orangered;
  text-decoration: underline;
  text-decoration-color: orangered;
  text-underline-offset: 0.5rem;
  text-decoration-thickness: 0.15rem;
}

.menu-open {
  display: none;
  background-color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 0.25rem;
}

.menu-open,
.menu-close i {
  font-size: var(--font-size-5);
}

.menu-close {
  text-align: center;
  width: 3rem;
  border-radius: 0.25rem;
}

.menu-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  display: none;
  height: 100vh;
  width: 100vw;
  background-color: rgba(238, 231, 231, 0.2);
  backdrop-filter: blur(10px);
  padding: 2rem;
  flex-direction: column;
  gap: 2rem;
  z-index: 999;
}

/* ___________________FOOTER____________________*/
.footer-container {
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  background-image: url("footer-1-bg.png");
  background-size: cover;
  font-weight: 500;
}

.footer {
  display: flex;
  flex-direction: column;
  color: white;
  gap: 1.15rem;
}

.footer h1 {
  font-size: 2rem;
  color: white;
  font-family: var(--font-family-footer);
}

.social-media-icons a {
  text-decoration: none;
  color: white;
}

.social-media-icons i {
  font-size: 2rem;
  cursor: pointer;
}

.social-media-icons i:hover {
  color: red;
}

.quick-links a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  font-family: var(--font-family-subtitle);
  transition: all 0.25s;
}

.quick-links a:hover {
  font-size: 1.15rem;
  color: red;
  margin-left: 0.25rem;
}

.quick-links span i {
  color: orange;
  font-size: var(--font-size-2);
  margin-right: 0.25rem;
}

.footer-right-container {
  font-family: var(--font-family-subtitle);
}

.footer-right-container i {
  color: white;
  font-size: 1.25rem;
  margin-right: 0.25rem;
}

/* ___________________MEDIA QUERY____________________*/

@media screen and (max-width: 800px) {
  .menu-open {
    display: block;
  }

  .right-nav-container {
    display: none;
  }
  nav {
    height: 5rem;
    padding: 0rem 1rem 0rem 0.5rem;
  }

  .left-nav-container {
    width: 70vw;
  }

  .logo img {
    height: 2rem;
    width: 7rem;
  }
  .footer-container {
    gap: 1rem;
  }
}
