/* ==================== ROOT VARIBLES */
:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-light: #e5e8ec;
  --color-dark: #363949;
  --color-logo: #10a310;

  --color-primary: #7380ec;
  --color-danger: #ff7782;
  --color-success: #41f1b6;
  --color-warning: #ffbb55;
  --color-info-dark: #7d8da1;
  --color-info-light: #dec1eb;
  --color-light: rgba(132, 139, 200, 0.18);
  --color-primary-variant: #111e88;
  --color-dark-variant: #677483;
  --color-background: #f6f6f9;

  --card-border-radius: 2rem;
  --border-radius-1: 0.4rem;
  --border-radius-3: 0.8rem;
  --border-radius-2: 1.2rem;

  --card-padding: 1.8rem;
  --padding-1: 1.2rem;
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
  text-decoration: none;
  box-sizing: border-box;
  font-size: 1.1rem;
  font-weight: lighter;
  font-family: Verdana;
}
body::-webkit-scrollbar {
  display: none;
}

/* ==================== topBar */
#topBar {
  width: 100%;
  height: 100px;
  background-color: var(--color-black);
  padding: 0 50px 0 20px;
  display: flex;
  justify-content: space-between;
  position: absolute;
  /* border: 1px solid red; */
}
#topBar > div:nth-child(1) {
  display: flex;
  align-items: center;
}
#topBar > div:nth-child(1) > img {
  width: 100%;
  cursor: pointer;
}
#topBar > div:nth-child(2) {
  width: 35%;
  display: flex;
  align-items: center;
  color: var(--color-white);
  justify-content: space-between;
}
#topBar > div:nth-child(2) > div {
  display: flex;
  align-items: center;
  color: var(--color-white);
}
#topBar > div:nth-child(2) > div:nth-child(1) {
  width: 53%;
  height: 20%;
  display: flex;
  justify-content: space-between;
  padding: 25px 20px;
  border-radius: 50px;
  background-color: var(--color-white);
  color: var(--color-black);
  cursor: pointer;
}
#topBar > div:nth-child(2) > div:nth-child(1) > span {
  font-size: 1rem;
}
#topBar > div:nth-child(2) > a > h2 {
  cursor: pointer;
  color: var(--color-white);
}

/* ==================== toggle */
#toggle {
  width: 20px;
  height: 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.bar {
  width: 100%;
  height: 3px;
  background-color: var(--color-white);
  border-radius: 5px;
}

/* ==================== sideBar */
#sideBar {
  position: fixed;
  width: 30%;
  height: 100vh;
  left: -40%;
  background-color: var(--color-white);
  transition: 0.2s;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  display: block;
  z-index: 1;
}
#sideBar > div {
  width: 100%;
  margin: 20px 0 0 0;
  padding: 10px;
}
#sideBar > div:nth-child(1) {
  background-color: var(--color-light);
  margin: 0 0 0 0;
}
#sideBar > div > a {
  display: flex;
  align-items: center;
  color: var(--color-dark);
}
/* #sideBar > div > a > img {
  background-color: var(--color-dark);
} */
#sideBar > div > a > span {
  margin-left: 10px;
}
#sideBar > div > a > div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 10px;
}
#sideBar > div > a > div > h3 {
  color: var(--color-logo);
}
#sideBar.active {
  left: 0;
}
/* ==================== main */
#main {
  width: 100%;
  background-color: #f5f5f5;
  padding: 150px 50px 50px 50px;
}
#cont {
  width: 100%;
  height: 100%;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.3) 1px 1px 3px, rgba(0, 0, 0, 0.3) 0px 1px 2px;
  border-radius: 0;
  padding: 50px;
}
#cont > h1:nth-child(1) {
  text-align: left;
  margin-bottom: 20px;
  font-size: 2rem;
}
#option {
  display: flex;
  /* border: 1px solid red; */
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 20px;
}
#option > div {
  width: 100%;
  padding: 20px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.2) 0px 0px 0px 1px;
}
#option > div > img {
  width: 40%;
  margin-bottom: 10px;
}
#option > div > p {
  font-size: 1rem;
}
#option > div:hover {
  background-color: #e0e0e0;
  cursor: pointer;
  box-shadow: none;
}
#cont > h1:nth-child(3) {
  text-align: left;
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 30px;
}
.summary {
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 10px;
  border-bottom: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
.para {
  background-color: #f5f5f5;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
hr {
  opacity: 0.3;
}
#footer {
  width: 100%;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.3) 1px 1px 3px, rgba(0, 0, 0, 0.3) 0px 1px 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
}
#footer > div:nth-child(1) {
  width: 50%;
}
#footer > div:nth-child(1) > h2 {
  font-weight: 900;
  margin-bottom: 20px;
}
#footer > div:nth-child(1) > p {
  color: #c9c3c3;
}
#footer > div:nth-child(2) {
  width: 50%;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
#footer > div:nth-child(2) > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#footer > div:nth-child(2) div > h2 {
  margin-bottom: 20px;
  font-weight: 900;
}
#footer > div:nth-child(2) div > h4 {
  color: var(--color-logo);
  font-weight: 900;
  cursor: pointer;
}
