@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background-color: rgb(235, 235, 232);
  font-size: 1.6rem;
  font-family: "lato", cursive;
}
.header {
  display: flex;
  justify-content: space-between;
  width: 75%;
  margin: auto;
  padding: 1.6rem 0;
}

.logo {
  color: #bd412d;
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  text-decoration: none;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 300ms;
}
.logo_footer {
  color: white;
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  text-decoration: none;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 300ms;
}
.logo:hover {
  font-size: 1.7rem;
}
.navList {
  display: flex;
  list-style: none;
  column-gap: 1.6rem;
}

.nav_item {
  transition: ease-in-out 1s;
  cursor: pointer;
  font-size: 1.2rem;
}

.nav_item:hover::after {
  width: 100%;
}

.nav_item::after {
  display: block;
  background-color: #bd412d;
  margin: auto;
  height: 2px;
  width: 0%;
  content: "";
  transition: ease-in-out 0.3s;
}

.active {
  color: #bd412d;
}

.main_title {
  font-size: 4.2rem;
}

.title {
  margin-bottom: 1.6rem;
}

.title_other {
  margin-bottom: 0;
}

.decorate {
  color: #bd412d;
}
.section {
  height: 95vh;
  width: 75%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

img {
  height: 65vh;
}

.spacer {
  width: 15rem;
}

.desc {
  font-size: 1rem;
  line-height: 1.3;
  width: 20rem;
  padding-left: 1.6rem;
}

.other {
  width: 30rem;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 3rem;
  column-gap: 1.6rem;
  padding-top: 2rem;
}
.about_sec {
  display: block;
}

.form {
  width: 50%;
  background-color: azure;
  border-radius: 1rem;
  padding: 1.6rem;
}

input {
  border: none;
  background-color: transparent;
}
.footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #bd412d;
  color: white;
  width: 100%;
  padding: 1.6rem 0;
}
.social_links {
  display: flex;
  column-gap: 1.6rem;
  list-style: none;
}
.footer_text {
  font-size: 1rem;
  font-weight: 300;
  font-family: "Lato", cursive;
  text-align: center;
}

.social_links a {
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
}

.social_link {
  border: 1px solid #ffffff5b;
  border-radius: 1.6rem;
  padding: 2px 1.6rem;
  font-size: 1.2rem;
}

.detail_footer {
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 1.2rem;
  font-weight: 300;
  font-family: "Lato", cursive;
  text-align: center;
  column-gap: 1rem;
}

.leadership_item {
  display: flex;
  justify-content: start;
  align-content: start;
  column-gap: 1rem;
}

/* .img_container{
  display: flex;
  align-items: center;
  justify-content: start;
  
} */

.img {
  height: 5rem;
  width: 5rem;
  overflow: hidden;
}

.leader_img {
  height: 100%;
  width: 100%;
  border-radius: 50%;
}

.leadership_item p {
  font-size: 1rem;
}
