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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  overflow-y: hidden;
}

/* Reuseable class */
.color-gray {
  color: gray;
}

.background-color-green {
  background-color: green;
}

.background-color-blue {
  background-color: rgb(25, 103, 210);
}

a {
  text-decoration: none;
}

/* .clearfix {
    clear: both;
    display: block;
    content: "";
} */

/* Header section */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 1px solid #ccc;
}

.logo {
  /* width: 220px; */
  height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo a {
  font-size: 22px;
  color: #5f6368;
}

.logo a:hover {
  text-decoration: underline;
}

.logo:hover {
  cursor: pointer;
}

.logo img {
  /* width: 15%; */
  height: 28px;
}

.profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.profile i {
  font-size: 24px;
}

main {
  display: flex;
  gap: 50px;
}

/* side seciton */
.aside-section {
  width: 23vw;
  height: 100vh;
  /* padding: 10px 0; */
  border-right: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  /* position: fixed; */
  /* gap: 30px; */
}

.option-1,
.option-2,
.option-3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 20px;
  gap: 15px;
}

.option-1 div,
.option-2 div,
.option-3 div {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  gap: 18px;
  padding: 5px 0;
  transition: all 0.3s;
}

.option-1 div i,
.option-2 div i,
.option-3 div i {
  font-size: 22px;
}

.option-1 div a,
.option-2 div a,
.option-3 div a {
  font-size: 14px;
  color: #3c4043;
  font-weight: 500;
}

.option-1,
.option-2 {
  border-bottom: 1px solid #ccc;
}

.active {
  background-color: rgb(232, 240, 254);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  padding-left: 10px !important;
  cursor: pointer;
}

.option-1 div:hover,
.option-2 div:hover,
.option-3 div:hover {
  background-color: rgba(26, 115, 232, 0.12);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  padding-left: 10px !important;
  cursor: pointer;
}

.alphabat {
  padding: 10px;
  font-size: 12px;
  color: #fff;
  border-radius: 50%;
}

/* Card Section */
.section-card {
  width: 73vw;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  align-items: center;
  align-items: center;
  gap: 20px;
}

.card {
  width: 340px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: all 0.3s;
}

.card-content {
  padding: 12px 20px;
  color: #fff;
}

.card:hover {
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3),
    0 2px 6px 2px rgba(60, 64, 67, 0.15);
    cursor: pointer;
}

.card-content h3 {
  font-weight: 500;
  margin-bottom: 5px;
  transition: all 0.3s;
}

.card-content span {
  font-size: 14px;
  font-weight: light;
  transition: all 0.3s;
}

.background01 {
  background-image: url(img/background01.jpeg);
  background-size: contain;
  background-repeat: no-repeat;
}

.background02 {
  background-image: url(img/background02.jpeg);
  background-size: contain;
  background-repeat: no-repeat;
}

.mentor-image {
  text-align: right;
  margin-right: 20px;
  margin-top: -40px;
}

.mentor-image img {
  border-radius: 50%;
}

.empty {
  padding: 10px;
}

.icon {
  border-top: 1px solid #ccc;
  padding: 10px 20px;
  text-align: right;
}

.icon i {
  font-size: 22px;
  margin-right: 10px;
}

.card-content h3:hover,
.card-content span:hover {
  text-decoration: underline #fff;
  cursor: pointer;
}
