* {
  box-sizing: border-box;
  margin: 0%;
  padding: 0%;
  font-family: "kumbh", sans-serif;
  scroll-behavior: smooth;
}

.hero {
  background: url(/17520.jpg);
  height: 100vh;
  background-position: center;
  background-size: cover;
  padding: 0.5rem calc((100vw-1200px) / 2);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hero__content {
  color: antiquewhite;
  padding: 3rem 1rem;
  line-height: 1;
}

.hero__content h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  background: #009fff; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #ec2f4b,
    #009fff
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to bottom,
    #f7bb97,
    #283048
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background-size: 100px;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.team {
  background: #045fc7;
  height: 1253%;
  background-position: center;
  background-size: cover;
  padding: 791px;
  position: absolute;
}

.team-card h1 {
  font-size: 6rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  background: #009fff; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #ec2f4b,
    #009fff
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to bottom,
    #f7bb97,
    #77f1fa
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background-size: 100px;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.team-card h2 {
  font-size: 2.5rem;
  background: #667db6; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #667db6,
    #db5902,
    #0082c8,
    #667db6
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to top,
    #667db6,
    #db6a00,
    #f11818,
    #667db6
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background-size: 100px;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

/*Services Navigation*/
.navbar {
  background: black;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar_container {
  display: flex;
  justify-content: space-between;
  height: 80px;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}

#navbar_logo {
  background-color: cornflowerblue;
  background-image: linear-gradient(to top, blueviolet 0%, cyan 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
}

.navbar-item {
  height: 80px;
}

.navbar__links {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 125px;
  text-decoration: none;
  height: 100%;
  transition: all 0.3s ease;
}

.navbar__links:hover {
  color: turquoise;
  transition: all 0.3s ease;
}

@media screen and (max-width: 960px) {
  .navbar_container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0;
  }

  .navbar__menu {
    display: grid;
    grid-template-columns: auto;
    margin: 0%;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: -1;
  }

  .navbar__menu.active {
    background: darkslategrey;
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 99;
    height: 60vh;
    font-size: 1.6rem;
  }

  #navbar_logo {
    padding-left: 25px;
  }

  .navbar_toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-image: linear-gradient(to bottom, blueviolet 0%, cyan 100%);
  }

  .navbar-item {
    width: 100%;
  }

  .navbar__links {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: table;
  }

  #mobile-menu {
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
  }

  .navbar_toggle .bar {
    display: block;
    cursor: pointer;
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  #mobile-menu.is-active .bar:nth-child(4) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    width: 100%;
  }

  .hero__content h {
    width: 100%;
  }

  .team-card {
    width: 100%;
  }

  .team-card p {
    width: 100%;
  }

  .team__wrapper {
    width: 100%;
  }

  .team {
    width: 100%;
  }

  .team__img {
    width: 100%;
  }
  .team__img2 {
    width: 100%;
  }
  .team__img3 {
    width: 100%;
  }
  .team__img4 {
    width: 100%;
  }
  .team__img5 {
    width: 100%;
  }
  .team__img6 {
    width: 100%;
  }
  .team__img7 {
    width: 100%;
  }
  .team__img8 {
    width: 100%;
  }
  .team__img9 {
    width: 100%;
  }
  .team__img10 {
    width: 100%;
  }
  .team__img11 {
    width: 100%;
  }
  .team__img12 {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .navbar_container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0;
  }

  .navbar__menu {
    display: grid;
    grid-template-columns: auto;
    margin: 0%;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: -1;
  }

  .navbar__menu.active {
    background: darkslategrey;
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 99;
    height: 60vh;
    font-size: 1.6rem;
  }

  #navbar_logo {
    padding-left: 25px;
  }

  .navbar_toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-image: linear-gradient(to bottom, blueviolet 0%, cyan 100%);
  }

  .navbar-item {
    width: 100%;
  }

  .navbar__links {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: table;
  }

  #mobile-menu {
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
  }

  .navbar_toggle .bar {
    display: block;
    cursor: pointer;
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  #mobile-menu.is-active .bar:nth-child(4) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    width: 100%;
  }

  .hero__content {
    width: 100%;
  }
  .hero__content h1 {
    width: 100%;
  }

  .hero__content h2 {
    width: 100%;
  }

  .team-card {
    width: 100%;
  }

  .team-card p {
    width: 100%;
  }

  .team__wrapper {
    width: 100%;
  }

  .team {
    width: 480px;
  }

  .team__img {
    width: 480px;
  }
  .team__img2 {
    width: 480px;
  }
  .team__img3 {
    width: 100%;
  }
  .team__img4 {
    width: 100%;
  }
  .team__img5 {
    width: 100%;
  }
  .team__img6 {
    width: 100%;
  }
  .team__img7 {
    width: 100%;
  }
  .team__img8 {
    width: 100%;
  }
  .team__img9 {
    width: 100%;
  }
  .team__img10 {
    width: 100%;
  }
  .team__img11 {
    width: 100%;
  }
  .team__img12 {
    width: 100%;
  }

  .main {
    width: 100%;
  }
}

@media screen and (max-width: 650px) {
  .navbar_container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0;
  }

  .navbar__menu {
    display: grid;
    grid-template-columns: auto;
    margin: 0%;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: -1;
  }

  .navbar__menu.active {
    background: darkslategrey;
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 99;
    height: 60vh;
    font-size: 1.6rem;
  }

  #navbar_logo {
    padding-left: 25px;
  }

  .navbar_toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-image: linear-gradient(to bottom, blueviolet 0%, cyan 100%);
  }

  .navbar-item {
    width: 100%;
  }

  .navbar__links {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: table;
  }

  #mobile-menu {
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
  }

  .navbar_toggle .bar {
    display: block;
    cursor: pointer;
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  #mobile-menu.is-active .bar:nth-child(4) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    width: 100%;
  }

  .hero__content {
    width: 100%;
  }

  .team-card {
    width: 100%;
  }

  .team-card p {
    width: 100%;
  }

  .team__wrapper {
    width: 100%;
  }

  .team {
    width: 100%;
  }

  .team__img {
    width: 100%;
  }
  .team__img2 {
    width: 100%;
  }
  .team__img3 {
    width: 100%;
  }
  .team__img4 {
    width: 100%;
  }
  .team__img5 {
    width: 100%;
  }
  .team__img6 {
    width: 100%;
  }
  .team__img7 {
    width: 100%;
  }
  .team__img8 {
    width: 100%;
  }
  .team__img9 {
    width: 100%;
  }
  .team__img10 {
    width: 100%;
  }
  .team__img11 {
    width: 100%;
  }
  .team__img12 {
    width: 100%;
  }
}

@media screen and (max-width: 580px) {
  .navbar_container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0;
  }

  .navbar__menu {
    display: grid;
    grid-template-columns: auto;
    margin: 0%;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: -1;
  }

  .navbar__menu.active {
    background: darkslategrey;
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 99;
    height: 60vh;
    font-size: 1.6rem;
  }

  #navbar_logo {
    padding-left: 25px;
  }

  .navbar_toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-image: linear-gradient(to bottom, blueviolet 0%, cyan 100%);
  }

  .navbar-item {
    width: 100%;
  }

  .navbar__links {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: table;
  }

  #mobile-menu {
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
  }

  .navbar_toggle .bar {
    display: block;
    cursor: pointer;
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  #mobile-menu.is-active .bar:nth-child(4) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    width: 570px;
  }

  .hero__content {
    width: 570px;
  }

  .team-card {
    width: 570px;
  }

  .team-card p {
    width: 570px;
  }

  .team__wrapper {
    width: 570px;
  }

  .team {
    width: 570px;
  }

  .team__img {
    width: 570px;
  }
  .team__img2 {
    width: 570px;
  }
  .team__img3 {
    width: 570px;
  }
  .team__img4 {
    width: 570px;
  }
  .team__img5 {
    width: 570px;
  }
  .team__img6 {
    width: 570px;
  }
  .team__img7 {
    width: 570px;
  }
  .team__img8 {
    width: 570px;
  }
  .team__img9 {
    width: 570px;
  }
  .team__img10 {
    width: 570px;
  }
  .team__img11 {
    width: 570px;
  }
  .team__img12 {
    width: 570px;
  }
}

@media screen and (max-width: 360px) {
  .hero {
    width: 360px;
  }

  .hero__content {
    width: 360px;
  }

  .hero__content h1 {
    width: 360px;
  }

  .hero__content h2 {
    width: 360px;
  }

  .team-card {
    width: 360px;
  }

  .team-card p {
    width: 360px;
  }

  .team__wrapper {
    width: 360px;
  }

  .team {
    width: 360px;
  }

  .team__img {
    width: 360px;
  }
  .team__img2 {
    width: 360px;
  }
  .team__img3 {
    width: 360px;
  }
  .team__img4 {
    width: 360px;
  }
  .team__img5 {
    width: 360px;
  }
  .team__img6 {
    width: 360px;
  }
  .team__img7 {
    width: 360px;
  }
  .team__img8 {
    width: 360px;
  }
  .team__img9 {
    width: 360px;
  }
  .team__img10 {
    width: 360px;
  }
  .team__img11 {
    width: 360px;
  }
  .team__img12 {
    width: 360px;
  }
}

.hero__content h2 {
  font-size: 4rem;
  background: #667db6; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #667db6,
    #db5902,
    #0082c8,
    #667db6
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to top,
    #667db6,
    #00d9ff,
    #f3f3f3,
    #667db6
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background-size: 100px;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

/*Team Section*/
.team {
  padding: 8rem calc(100vw-1100px) / 2;
}

.team__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(auto, 350px);
}

.team-card {
  margin: 1rem;
  border-radius: 10px;
  position: relative;
  filter: grayscale(100%);
  transition: 0.9s ease;
}

.team-card:hover {
  transition: 0.9s ease;
  filter: grayscale(0);
  padding: 5px;
}

.team-card p {
  text-align: center;
  font-size: 3rem;
  background: linear-gradient(to top, rgb(255, 255, 255), cyan);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.team__img {
  margin: 10px;
  height: 500px;
  width: 500px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.team__img2 {
  margin: 10px;
  height: 500px;
  width: 700px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.team__img3 {
  margin: 10px;
  height: 500px;
  width: 500px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.team__img4 {
  margin: 10px;
  height: 500px;
  width: 500px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.team__img5 {
  margin: 10px;
  height: 500px;
  width: 700px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.team__img6 {
  margin: 10px;
  height: 500px;
  width: 700px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.team__img7 {
  margin: 10px;
  height: 500px;
  width: 500px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.team__img8 {
  margin: 10px;
  height: 500px;
  width: 500px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.team__img9 {
  margin: 10px;
  height: 600px;
  width: 500px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.team__img10 {
  margin: 10px;
  height: 500px;
  width: 600px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.team__img11 {
  margin: 10px;
  height: 500px;
  width: 500px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.team__img12 {
  margin: 10px;
  height: 500px;
  width: 650px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.card_img1 {
  margin: 10px;
  height: 600px;
  width: 800px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.card_img2 {
  margin: 10px;
  height: 600px;
  width: 750px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.card_img3 {
  margin: 10px;
  height: 650px;
  width: 800px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

/*footer Css*/
.footer__container {
  background-color: #010101;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#footer__logo {
  color: #010101;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
}

.footer__links {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
}

.footer__link--wrapper {
  display: flex;
}

.footer__items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 16px;
  text-align: left;
  width: 160px;
  box-sizing: border-box;
}

.footer__items h2 {
  margin-bottom: 16px;
  color: white;
}

.footer__items a {
  color: white;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer__items a:hover {
  color: rgb(224, 19, 19);
  transition: 0.3 ease-out;
}

.social__icon--link {
  color: rgb(0, 0, 0);
  font-size: 24px;
}

.social__media {
  max-width: 1000px;
  width: 100%;
}

.social__media--wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1000px;
  margin: 40px auto 0 auto;
}

.social__icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 240px;
}

.website__rights {
  color: #010101;
}

@media screen and (max-width: 820px) {
  .footer__links {
    padding-top: 5rem;
  }

  #footer__logo {
    margin-bottom: 2rem;
  }

  .footer__link--wrapper {
    flex-direction: column;
  }

  .social__media--wrapper {
    flex-direction: column;
  }
}

@media screen and (max-width: 480px) {
  .footer__items {
    margin: 0;
    padding: 10px;
    width: 100%;
  }
}
