.page-heading {
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	font-size: 58px;
	line-height: 145%;
	letter-spacing: -0.02em;
	color: #20303C;
}
.basic-txt {
	font-family: "Roboto", sans-serif;
	font-weight: 400 !important;
	font-size: 16px;
	line-height: 200%;
	color: #424242;
}
.btns {
	display: flex;
	align-items: center;
	width: fit-content;
	padding: 14px 30px !important;
	font-family: "Inter", sans-serif;
	font-weight: 400 !important;
	font-size: 18px;
	line-height: 100% !important;
	border-radius: 44px;
	border: 2px;
	transition: all 0.2s ease-in-out;
}
.btns--orange {
  color: white;
  background-color: #EE851F;
  box-shadow: 0px 4px 10px 2px rgba(238, 133, 31, 0.2);
}
.btns--blue {
  color: white;
  background-color: #20303C;
  box-shadow: 0px 4px 10px 2px rgba(32, 48, 60, 0.2);
}

.btns--to-blue:hover {
  background-color: #20303C;
  border: #20303C;
  color: white;
  box-shadow: none;
}



.section-h {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 163%;
  color: #20303C;
  font-size: 32px;
}

.section-sub-h {
  max-width: 500px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400 !important;
  line-height: 163%;
  color: #505050;
}



.team-members-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 50px;
  row-gap: 120px;
  margin-bottom: 80px;
}


.header2 {
  background: #2c3b58;
  padding: 0px 0 20px;
}
.mainNavigation__link:hover {
  text-decoration: none;
}


@media screen and (max-width: 1300px) {
  .team-members-wrap {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 800px) {
  .team-members-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 550px) {
  .team-members-wrap {
    grid-template-columns: 1fr;
  }
}

.team-member__img {
  width: 100%;
  filter: saturate(0);
  transition: filter 0.3s ease-in-out;
}
.team-member__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.team-member__name {
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	color: #20303C;
	font-size: 24px;
	margin-top: 10px;
	padding-bottom: 10px;
}
.team-member__job {
  font-family: "Roboto", sans-serif;
  font-weight: 400 !important;
  color: #828282;
  font-size: 16px;
}
.text-orange {
	color: #ee851f !important;
}
@media screen and (max-width: 800px) {
  .team-member__name {
    font-size: 1.25rem;
  }
}