:root {
  --nav-link-color: rgb(177, 201, 235);
  --nav-link-hover-color: rgb(3, 5, 6);
  --title-span-color: rgb(73, 86, 198);
  --hero-background: rgb(255, 255, 255);
  --hero-background-gradient: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(17, 57, 96, 1) 100%);

  --font-small: 0.5em;
  --font-medium: 1em;
  --font-medium-large: 1.25em;
  --font-large: 1.5rem;
  --font-x-large: 2rem;
  --font-2x-large: 3rem;
  --font-3x-large: 3.5rem;
  --font-4x-large: 4rem;
  --font-5x-large: 4.5rem;
  --font-6x-large: 5rem;
  --font-7x-large: 5.5rem;

  --text-color: rgba(7, 26, 44, 1);

  --transition-slow: 0.6s;
  --transition-medium: 0.4s;
  --transition-fast: 0.2s;
  --transition-fastest: 0.1s;
}
@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
/*Large Desktop*/
/*General CSS*/

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Quicksand", sans-serif;
}

* {
  margin: 0;
  padding: 0;
}

h2,
h3 {
  color: var(--title-span-color);
  font-weight: bold;
}

h2,
h3,
p {
  font-family: "Quicksand", sans-serif;
}

.container {
  width: 60%;
  margin: 0 auto;
}

/*Navigation*/

.navigation {
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0px;
  height: 60px;
  /*background-color: #c0ee7f;*/
  background: rgb(141,210,227);
  background: linear-gradient(90deg, rgba(141,210,227,1) 11%, rgba(29,97,253,1) 59%);
}

.nav-container {
  margin: 0 auto;
  width: 90%;
  height: 100%;
  display: flex;
}

.nav-container .links {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: large;
}

.nav-container .logo {
  display: flex;
  width: auto;
  align-items: center;
  min-width: 20%;
  font-family: "Courier New", monospace;
  color: rgb(6, 6, 6);
}
.nav-container .logo img {
  width: 180px;
}

.nav-container .logo span {
  color: var(--nav-link-hover-color);
}
.nav-container .logo img {
  background-size: cover;
  background-repeat: no-repeat;
}

.nav-container .links a,
.nav-container .logo a {
  text-decoration: none;
  color: var(--nav-link-color);
  transition: var(--transition-fast);
}

.nav-container .links a {
  font-size: var(--font-medium);
}

.nav-container .logo a {
  font-size: var(--font-large);
}

.nav-container .links a:hover {
  color: var(--nav-link-hover-color);
  -webkit-box-reflect: below 1px linear-gradient(transparent,#0001);
  background-color: rgba(141,210,227,1);
  box-shadow: 0 0 5px #03e914,0 0 15px #03e9f4, 0 0 25px #03e9f4;
  border-radius: 6px;
  display: block;
  content: "";
  transform: scaleX(1.2);
  transition: transform var(--transition-fastest) ease-in-out;
  transform-origin: 100% 50%;
}

.nav-container .logo a:hover:after,
.nav-container .links a:hover:after {
  transform: scaleX(0);
  transform-origin: 0% 50%;
}

.mobile-button {
  display: none;
}

.mobile-logo {
  display: flex !important;
}

.mobile-logo .logo {
  width: auto;
}

.mobile-links {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  overflow-x: hidden;
  transition: var(--transition-fast);
  padding-top: 20px;
  background: rgb(121,198,216);
  background: linear-gradient(90deg, rgba(121,198,216,1) 14%, rgba(29,97,253,1) 53%);
}

.mobile-links a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: var(--nav-link-color);
  color: black;
  display: block;
  transition: 0.3s;
}

.mobile-links .m:hover {
  color: var(--nav-link-hover-color);
  -webkit-box-reflect: below 1px linear-gradient(transparent,#0001);
  background-color: rgba(141,210,227,1);
  box-shadow: 0 0 5px #03e914,0 0 15px #03e9f4, 0 0 25px #03e9f4;
  border-radius: 6px;
  display: block;
  content: "";
  transform: scaleX(0.9);
  transition: transform var(--transition-fastest) ease-in-out;
  transform-origin: 100% 50%;
}

.mobile-links a:hover {
  color: #f1f1f1;
}

.mobile-links .closebtn {
  font-size: var(--font-x-large);
  margin-right: 25px;
}
  /*Project*/
  .proj {
    min-height: 730px;
    height: fit-content;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 85%;
    padding-top: 70px;
  }
  .proj a{
    color: blue;
  }
  .proj .tablee {
    padding: 20px;
  }
  .proj .tablee table{
    width: 100%;
    align-items: center;
  }
  .proj .tablee tr span {
    color: black;
  }
  .proj .tablee td {
    padding: 10px;
  }
  .proj .projectimg {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 10px 0px;
  }
  .proj .projectimg img , video {
    width: 30%;
    max-height: 400px;
    height: auto;
    overflow: auto;
  }

  .proj .tablee .h {
    width: 20%;
    text-align: left;
    text-align: start;
    color: rgb(232, 56, 53);
  }

  .proj .tablee .s {
    width: 5%;
    text-align: justify;
    color: blue;
  }

  .proj .tablee .d {
    width: 75%;
    text-align: start;
  }
  .proj .tablee .d span{
    font-weight: bold;
  }

  /*FOOTER*/
#footer p span {
    color: var(--nav-link-hover-color);
  }
  
  /*Utilities*/
  
  .show-medium {
    display: none;
  }

@media screen and (max-width: 1200px){
  .nav-container {
    width: 80%;
  }

  .container {
    width: 80%;
  }
  .nav-container .links {
    display: none;
  }

  .mobile-button {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
  }

  .mobile-button span {
    font-size: var(--font-x-large);
    color: var(--nav-link-hover-color);
  }

  .mobile-logo {
    display: flex;
  }
  .mobile-links-active {
    width: 40%;
  }
}
@media screen and (max-width: 1024px){
  .proj .projectimg img, video {
    width: 45%;
  }
}

@media screen and (max-width: 768px) {
  .proj.container {
    width: 100%;
  }
  .proj{
    min-height: 800px;
  }
  .proj .projectimg img, video {
    width: 100%;
    height: auto;
  }
}