@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  max-width: 1280px;
  scroll-behavior: 0.4s smooth;
}

.navbar{
  background: black;
  padding: 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  min-height: 20vh;
}

.logo{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  color: white;
  margin: 20px;
  border-bottom: solid yellow;
  border-top: solid yellow;
  transition: .4s ease-in-out;
}

.logo:hover{
  border-radius: 20px;
}

.logo img{
  width: 80px;
  border-radius: 50%;
  margin: 0 auto;
}

.logo p{
  padding: 30px;
  font-size: 1.6rem;
  margin: auto 10px;
  
}


.links{
  list-style: none;
  display: flex;
  width: 70%;
  justify-content: space-evenly;
  align-items: center;
}

.links a{
  text-decoration: none;
  color: white;
  font-size: 1.4rem;
}

.home{
  min-height: 600px;
  background: url(/images/hero.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero-info{
  width: 400px;
  margin: 10px auto;
  width: 50%;
  color: white;
  position: relative;
  /* top: 150px; */
  border-radius: 20px;
  backdrop-filter: blur(10px);
  padding: 20px;
}


.hero-info h1{
  font-weight: 300;
  padding: 40px;
  font-size: 3rem;
}
.button{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
}

.social{
  margin: 10px auto;
}

.social a{
  background: #363535;
  padding: 20px;
  text-decoration: none;
  color: white;
  border-radius: 20px;
  font-size: 1.4rem;
  transition: ease-in-out;
}

.social a:hover{
  background-color: black;
}

/* About Section */
.about{
  min-height: 600px;
  background: url(/images/about-bg.svg);
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  align-items: flex-end;
  padding: 20px;
}

.about-text{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 50%;
  background: rgba(255, 255, 255, 0.669);
  padding: 20px;
  height: 400px;
  border-radius: 20px;
  text-align: left;
}

.about-text h1{
  font-weight: 300;
  padding: 40px;
  font-size: 3rem;
}

/* Service */
.service{
  min-height: 600px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.service-text h1{
  font-weight: 300;
  padding: 40px;
  font-size: 3rem;
  color: #f4d01e;
}

.box-container{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}

.box{
  min-height: 500px;
  width: 300px;
  padding: 20px;
  margin: 20px;
  border-radius: 20px;
  text-align: center;
  transition: .2s ease-in-out;
}

.box1{
  background: url(/images/learning.svg);
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

.box2{
  background: url(/images/networking.svg);
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

.box3{
  background: url(/images/guide.svg);
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
}
.box:hover{
  cursor: pointer;
  transform: scale(.9);
}

.box .title{
  font-weight: 500;
  padding: 20px;
  font-size: 1.4rem;
  color: #f4d01e;
}

/* Review */
.review{
  min-height: 600px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.review-text h1{
  font-weight: 300;
  padding: 40px;
  font-size: 3rem;
  color: #7d7dff;
}

.rbox-container{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.rbox{
  min-height: 300px;
  width: 300px;
  padding: 20px;
  margin: 20px;
  border-radius: 20px;
  text-align: center;
  transition: .2s ease-in-out;
  border: solid #9898ff;
}

.rbox img{
  width: 200px;
  border-radius: 30px 343px 432px;
  position: relative;
  top: -100px;
  border-radius: 50%;
  position: relative;
  top: -100px;
  border: solid #7d7dff;
  padding: 12px;
  background: white;
}

.rbox:hover{
  cursor: pointer;
  transform: scale(.9);
}

.rbox .name{
  font-weight: 500;
  padding: 20px;
  font-size: 1.4rem;
  color: #6060dc;
  position: relative;
  top: -100px;
}

.star{
  font-size: 1.6rem;
  color: #f4d01e;
}

.rtext{
  position: relative;
  top: -100px;
}