@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Italiana&display=swap');

body {
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 400;
    margin: 0px;
    color: #000000;
    margin: 0px;

}
a{
  text-decoration: none;
}
h1{
  margin: 0px;
}

h3{
  font-size: 16px;
  font-weight: 600;
  margin: 0px;
}
.mainCont {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}
.bodyItem{
    flex-grow: 1;
}
.welcomeCont{
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: left;
    font-size: 24px;
    font-weight: 600;
}
.sideBar {
    position: relative;
    top: 0;
    margin-top: 48px;
    margin-left: 48px;
    height: 100vh;
    width: 48px;
    color: rgb(0, 0, 0);
    transition: width 0.3s ease;
    overflow: hidden;
    border-right: solid 1px  #1e2c60;
    flex-grow: 0;
    background-color: #101730;
    border-radius: 15px;
}
.squircle {
    margin-left: 48px;
    padding: 48px;
    width: 600px;
    height: 200px;
    border: solid 1px #1e2c60;
    border-radius: 70px / 80px;
    background-color: #54575f24;
}
.heading{
  margin-top: 0px;
    font-size: 24px;
    font-weight: 600;
}

.bodyContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    gap: 96px;
}
.navBar{
    position: fixed;
    top: 0;
    left: 0;
    width: 125px;
    height: 550px;
    background-color: #101730;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    padding: 12px;
    padding-left: 36px;
    padding-right: 36px;
    z-index: 1000;
    margin: 48px;
    margin-top: 48px;
    border-radius: 28px;
    box-shadow: 2px 4px 12px #00000014;
    border: 1px solid #00000014;
}
.navTab{
  position: relative;
  width: 140px;
  padding: 8px;
  padding-left: 18px;
  height: 35px;
  background-color: #101730;
  border-radius: 10px;
  color: #ffffff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  font-weight: 300;
  border-radius: 20px;
  gap: 10px;
  animation: background-color 0.3s ease;
  border: 1px solid #00000014;
}
.navTab:hover{
  background-color: #1e2c60;
  cursor: pointer;
  animation: background-color 0.3s ease;
  box-shadow:0px 5px 26px -7px rgba(255, 255, 255, 0.10);
}
.contentContainer{
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  margin-left: 240px;
  padding: 40px 60px;
  gap:24px;
}
.contentBox{
  width: 100%;
  height: auto;
  background-color: #EDEDED;
  padding: 48px;
  padding-top: 0px;
  margin-right: 96px;
  border-radius: 32px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);

}
.stuwinLogo{
  width: 70px;
  height: auto;
  position: absolute;
  top: 24px;
  left: 48px;
}
.navBar img{
  width: 24px;
  height: 24px;
  height: auto;
}
.italiana{
  font-family: "italiana";
  font-size: 24px;
}
.yellowBox{
  position:static;
  width: 85%;
  height: auto;
  background-color: #FCFAD4;
  padding: 48px;
  margin-right: 24px;
  border-radius: 32px;
  box-shadow: 2px 4px 12px #00000014;
  border: 1px solid #00000014;
}

footer{
  padding-left: 200px;
  margin: 0px;
}
.cancelHamburger{
  display: none;
}
.hamburger{
  display: none;
}

.overlayNav{
  position:fixed; 
  inset:0; 
  display:none; 
  align-items:center; 
  justify-content:center;
  background:rgba(16,23,48,0.55); 
  backdrop-filter:blur(4px); 
  z-index:2000;
  height: 100vh;
  width: 100vw;
}
.panel{
  box-shadow: 2px 4px 12px #00000014;
  border: 1px solid #00000014;
}
.stuwinLogo{
  z-index: 5000;
}
@media only screen and (max-width: 768px) {
  body{
    font-size: 12px;
  }
  .navBar{
    display: none;
    z-index: 5000;
  }
  .contentContainer{
    margin-left:12px;
    padding: 12px;
  }
  .hamburger{
    display: block;
    width: 24px;
    height: 24px;
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 5000;
  }
  .hamburger.active{
    display: none;
  }
  .cancelHamburger{
    width: 24px;
    height: 24px;
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 5000;
  }
  .cancelHamburger.active{
    display: block;
  }
  .navBar.active {
    display: flex;
    position: fixed;
    left: 13%;
    scale: 1.3;
  }
  .italiana{
    font-size: 24px;
  }
  p.italiana{
    font-size: 16px;
  }
  h3{
    font-size: 16px;
  }
  h2{
    font-size: 16px;
  }
  .overlay.active{
    display:block;
  }
  .overlayNav.active{
    display:block;
  }
  th{
    font-size: 14px;
  }
  
}


