@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/* @import url(./reset.css); */
body {
  
  margin: auto;
  font-family: "Roboto", sans-serif;
}
nav {
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #533174;
  color: white;
  padding: 5px 20px;
}
ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  list-style: none;
}
.logo-wrapper {
  height: 90px;
}
.logo-wrapper img {
  height: 100%;
}
ul>li> a {
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  letter-spacing: 1%;
  font-size: 18px;
}
ul>li>a:hover {
  background-color: #c91b65;
}
.active {
  background-color: #c91b65;
}
button {
  padding: 10px 15px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  letter-spacing: 1%;
  font-size: 18px;
  background-color: #c91b65;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 300ms ease-out;
}
button:hover {
  background-color: #b51f60;
  transition: all 300ms ease-in;
  transform: scale(1.1);
}

.hero-wrapper {
  background-image: url(../images/Hero\ Images.png);
  width: 100%;
  height: calc(100vh - 100px);
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  background-position: right;
}
.thinheader {
  font-weight: 400;
  line-height: 1;
  color: #79165d;
  font-size: 3rem;
}
.hero-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  top: 30%;
  left: 5%;
}
.normaltext {
  font-size: 24px;
  color: #c91b65;
  font-style: italic;
}
.mainheader {
  font-weight: 800;
  color: #79165d;
  font-size: 5rem;
}
span {
  color: #c91b65;
  font-weight: 400;
}
/* Section */
.features {
  padding: 3rem 0 6rem 0;
  background-color: rgba(126, 220, 185, 0.12);
}
.features-change {
  padding: 3rem 0 3rem 0;
  background-color: #fff;
}
.sectiontitle {
  /* text-align: center; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-direction: column;
  padding: 3rem 0;
}
.titlesubhead {
  font-weight: 400;
  line-height: 1;
  color: #c91b65;
  font-size: 1.5rem;
}
.titlehead {
  font-weight: 550;
  line-height: 1;
  color: #79165d;
  font-size: 3rem;
}
.item-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
width: 80%;
margin: auto;
}
.itembox {
  display: flex;
  align-items:center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  border: 1px solid beige;
  padding: 20px 20px 40px 20px;
  transition: all 0.2s ease-in-out;
  background-color: rgba(0, 0, 0, 0.1);
}
.itembox .image img{
  width: 100%;
  filter:blur(1);
}
.itembox:hover {
  background-color: rgba(250, 235, 215, 0.5);
  transition: all 0.2s ease-in-out;
}
.global-body-title {
  font-size: 18px;
  color: #79165d;
  text-align: center;
  line-height: 2;
  font-weight: 600;
}
.global-body-text {
  font-size: 16px;
  color: #79165d;
  text-align: center;
  line-height: 1.3;
}
.itemcontent{
    display: flex;
    flex-direction: column;
    gap: 10px;

}
/* Team Member */
.team-wrapper {
  padding: 20px;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
.member-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  width: 300px;
  overflow: hidden;
  transition: all 300ms ease-out;

}
.member-image {
  height: 350px;
  overflow: hidden;
}
.member-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  transition: all 300ms ease-in;
}
.member-image:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
  transition: all 300ms ease-in;
  cursor: pointer;
}
.member-detail {
  height: 40%;
}
.member-box:hover{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: all 300ms ease-in;
}
.socialmedia-links {
  padding: 10px 0;
}
.socialmedia-links a {
  font-size: 25px;
  text-decoration: none;
  padding: 5px 10px;
}
.socialmedia-links a:hover {
  text-shadow: 1px 1px 2px rgb(255, 0, 0), 0 0 25px rgb(95, 95, 97),
    0 0 5px rgb(139, 139, 139);
}
.banner{
  padding: 3rem 0;
  background-color: rgba(121, 22, 93,0.1);}
.banner-content{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20%;
}
