@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}


body {
  background-color: #e07a5f;
}

.heading {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2d2d2d;
  height: 9vh;
  width: 100%;
}

.heading h1 {
  color: #f5f5f5;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
}

.bg {
  height: 100%;
  width: 100%;
}

.sec1 {
  position: relative;
  top: 10px;
  margin: 0px 10px;
}

.head1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.head1 h2 {
  font-size: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #f5f5f5;
}

.icon-bar {
  height: 25vh;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 65px;
}

.icon {
  height: 100px;
  width: 100px;
  border-radius: 100%;
  box-shadow: inset 0px 0px 8px rgba(255, 255, 255, 0.3),
    6px 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.icon:hover {
  transform: scale(1.25);
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.2);
  background: #f9fafb;
}

.icon:active {
  transform: scale(0.95);
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.icon a img {
  height: 100px;
  width: 100px;
  border-radius: 100%;
  object-fit: cover;
}

.name {
  font-family: poppins, sans-serif;
  color: white;
  font-size: 17px;
  font-weight: 400;
}

.box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.sec2 {
  position: relative;
  width: 90%;
  top: 30px;
  margin: 0px 55px;
  height: 100%;
}

.head2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.head2 h2 {
  font-size: 45px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
}

.line1 {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.line2 {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
  margin-top: 20px;
  padding-bottom: 100px;
}

.box_card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.cards {
  border-radius: 20px;
  padding: 20px;
  width: 300px;
  height: 400px;
  background-color: #f9fafb;
  box-shadow: inset 0px 0px 8px rgba(255, 255, 255, 0.3),
    6px 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  overflow-y: auto;
  -ms-overflow-style: none;
}

.cards::-webkit-scrollbar {
  display: none;
}

.cards:hover {
  transform: scale(1.25);
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.2);
}

.box_card p {
  font-family: poppins, sans-serif;
  color: white;
  font-size: 25px;
  font-weight: 400;
}

.cards ul li a {
  text-decoration: none;
  color: rgb(8, 0, 255);
  font-family: poppins, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.cards ul li {
  list-style: none;
  margin: 10px 0;
}

.cards ul p{
  color: black;
}

