#hamBurger {
  display: none;
}

.founder1,.founder2,.founder3{
  margin-top: 50px;  
}

.button {
  padding: 7px 10px;
  color: #fff;
  animation: none;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  background-color: rgb(32, 154, 202);
}

#home {
  width: 100%;
  display: flex;
  padding: 3rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  text-align: justify;
  font-size: 20px;
}

.home-para {
  font-weight: normal;
}
.home-left {
  height: 500px;
  position: relative;
}

.home-img {
  width: 400px;
  height: 4000px;
}

.home-left img {
  height: 100%;
  border-radius: 10px;
}

.home-right {
  width: 50%;
}
/* Circle effect for image of team(start from here) */
.hover15 figure {
  position: relative;
}
.hover15 figure::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  cursor: pointer;
}
.hover15 figure:hover::before {
  -webkit-animation: circle 0.75s;
  animation: circle 0.95s;
}
@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
@keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
/* Circle effect for image of team(ends from here) */

.home-heading {
  font-size: 4rem;
  margin-bottom: 10px;
}
.home-img {
  transition: 0.5s ease;
}
.home-img:hover {
  box-shadow: 1px 1px #373737, 2px 2px #373737, 3px 3px #373737, 4px 4px #373737,
    5px 5px #373737, 6px 6px #373737;
  -webkit-transform: translateX(-3px);
  transform: translateX(-3px);
  transition: 0.5s ease;
  cursor: pointer;
}
.btn-work {
  text-decoration: none;
  color: black;
  font-weight: bold;
  position: relative;
  width: 0;
}

.btn-work:hover::after {
  content: "";
  height: 4px;
  position: absolute;
  background-color: aqua;
  left: 0;
  bottom: -10px;
  animation: width;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  border-radius: 5px;
}

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

#workFlow {
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  text-align: center;
  margin-bottom: 4rem;
}

.heading {
  margin: 1rem auto;
  text-align: center;
}

.para {
  margin: 1rem auto;
}

.num-container {
  width: 70%;
  margin: 1rem auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.num-item {
  font-size: 1.5rem;
  line-height: 1.4rem;
  color: rgb(43, 126, 199);
}

/* Our Goal */
.whyChooseUs{
  margin-top: 50px;
}
#goal {
  width: 80%;
  margin: 2rem auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
}

.goal-left {
  width: 60%;
  line-height: 2rem;
}

.goal-left h2 {
  font-size: 2.4rem;
}

.goal-left p {
  line-height: 1.5rem;
  margin: 1rem 0;
}

.goal-left ul {
  list-style: none;
  margin-bottom: 1rem;
}

.goal-left ul li::before {
  line-height: 1.5rem;
  content: "✓";
  color: red;
}

.goal-right {
  position: relative;
  width: 35%;
}

.goal-right img {
  width: 100%;
  cursor: pointer;
  border-radius: 10px;
  filter: drop-shadow(3px 4px 5px black);
  transition: all 0.2s linear;
}

.goal-right img:hover {
  transform: translateY(-5px);
  filter: drop-shadow(5px 6px 7px black);
}

/* Our Team */
#our-Team {
  overflow: hidden;
  width: 80%;
  margin: 4rem auto 1rem;
}

#our-Team h2 {
  text-align: center;
  margin: 1rem auto 4rem;
  position: relative;
}

#our-Team h2::after {
  content: "";
  height: 2.5px;
  margin: 0 auto;
  text-align: center;
  width: 120px;
  background-color: blue;
  position: absolute;
  left: 36%;
  bottom: -10px;
  border-radius: 5px;
  transform: translate(-50%);
}

.teamContainer {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.team-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0.5rem;
  font-size: 20px;
}

.team-item h5 {
  margin-top: 1rem;
  font-size: 20px;
}

.team-item span {
  margin-top: 0.4rem;
  font-weight: bold;
  text-transform: uppercase;
  color: blue;
}

.team-item img {
  width: 250px;
}

@media screen and (max-width: 784px) {
  #list {
    display: none;
  }

  #hamBurger {
    cursor: pointer;
    display: block;
    z-index: 20;
    font-size: 2rem;
  }

  .responsive.active {
    left: 0%;
  }

  .goal-right {
    width: 100%;
    margin: 0 auto 2rem;
  }

  .goal-left {
    width: 100%;
    text-align: center;
  }

  #goal {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 633px) {
  #home {
    flex-direction: column;
  }

  .home-left {
    width: 100%;
    height: auto;
  }

  .home-left img {
    width: 100%;
  }

  .home-right {
    margin-top: 2rem;
    width: 100%;
  }

  .para {
    width: 90%;
  }

  .num-container {
    flex-direction: column;
  }

  .num-item {
    margin: 1rem;
  }

  .teamContainer {
    justify-content: center;
  }
}

/*Heading's blue underline*/
.underLine {
  background-color: blue;
  position: absolute;
  width: 120px;
  height: 2.5px;
}
/*----------------Founders image and their details setting--------------*/
.Center-Underline {
  position: relative;
  top: 50%;
  left: 43%;
  transform: translate(-50%, -50%);
}

.founder-intro {
  width: 90%;
}
.founder-details1,
.founder-details2 {
  width: 70%;
}
.founder-details2 h2,
.founder-details2 h3 {
  margin-top: 0%;
  padding-top: 0;
  text-align: end;
}
.underLinefounder2 {
  position: relative;
  top: 50%;
  left: 72%;
  transform: translate(-50%, -50%);
}
/*------------------------- Image effect card--------------* Start */
 .glassBox {
	 width: 100%;
	 height: 300px;
	 max-width: 300px;
	 border-radius: 5px;
	 background: rgba(255, 255, 255, 0.05);
	 backdrop-filter: blur(2px);
	 border: 1px solid rgba(255, 255, 255, 0.2);
	 border-right-color: rgba(255, 255, 255, 0.1);
	 border-bottom-color: rgba(255, 255, 255, 0.1);
	 box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
	 position: relative;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 flex-direction: column;
   background-color: #0093e9;
	 background-image: linear-gradient(160deg, #0093e9 0%, #80d0c7 100%);
}
 .glassBox, .glassBox * {
	 box-sizing: border-box;
	 transition: 400ms;
}
 .glassBox__imgBox img {
	 display: block;
   aspect-ratio: 3.5/3;
   object-fit: cover;
	 width: 100%;
	 height: auto;
}
 .glassBox__title {
	 text-align: center;
	 margin-top: 15px;
	 color: #fff;
	 font-size: 20px;
	 font-weight: 400;
	 font-family: "Lato";
}
 .glassBox__content {
	 position: absolute;
	 right: 15px;
	 bottom: 15px;
	 left: 15px;
	 text-align: center;
	 color: #fff;
	 font-size: 14px;
	 font-family: "Lato";
	 letter-spacing: 0.1em;
	 opacity: 0;
}
 .glassBox:hover .glassBox__imgBox {
	 transform: translateY(-10px);
}
 .glassBox:hover .glassBox__imgBox img {
	 transform: translate(-20px, -40px) rotate(-5deg) scale(1.0);
}
 

/*---------------------Why people choose us----------------*/
.container h2 {
  text-align: center;
}

.wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 90px;
	padding: 6% 0;
}
.review-card {
	background-color: #f5f5f5;
	border-radius: 10px;
	padding: 20px;
	width: 300px;
	box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
    transition: all 500ms ease-in-out;
}
.review-card:hover{
  cursor: pointer;
  box-shadow: 0px 12px 30px 0px rgba(0, 0, 0, 0.2);
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}

.img-area {
	width: 80px;
	height: 80px;
	overflow: hidden;
	border-radius: 50%;
	margin-right: 25px;
}
.img-area img {
	width: 100%;
}
.header-content {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.info h4 {
	margin: 0;
	font-size: 22px;
	font-weight: 600;
}
.info p {
	margin: 5px 0 0;
	font-size: 14px;
	font-weight: 400;
	color: #666;
}
.single-review p {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	color: #333;
}
.review-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 10px;
	font-size: 14px;
	color: #666;
}
.rating {
	display: flex;
}
.rating span {
	color: #000;
	font-size: 18px;
}
.rating span.active {
	color: #fbc02d;
}
@media screen and (max-width: 767px) {
	.wrapper {
		flex-direction: column;
		align-items: center;
	}
	.review-card {
		width: 85%;
	}
}
