/* .navbar {
  background-color: pink;
} */

.navbar-brand {
  color: black;
  font-size: 60px;
  font-weight: 600;
}

.navbar-logo {
  height: 70px;
  width: auto;
  border-radius: 50%;
}

.navbar {
  display: flex;
  flex-direction: column;
  background-color: white;
}

.navbar .container {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: center;
}

.navbar .nav-link {
  color: black;
  font-size: 18px;
}

.navbar .nav-link:hover {
  color: rgb(221, 48, 68);
}

.landing {
  margin-top: 120px;
  height: 85vh;
  background-image: url(train.gif);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 100%;
}

.landing-txt {
  color: white;
  display: flex;
  justify-content: center;
  padding-top: 120px;
  font-size: 50px;
  font-weight: bold;
}

.landing-txt-2 {
  color: white;
  display: flex;
  justify-content: center;
  font-size: 50px;
  font-weight: bold;
}

.about {
  height: 130vh;
  padding-top: 170px;
  padding-bottom: 70px;
  background-color: rgb(204, 153, 159);
}

.about .wrapper {
  display: flex;
  justify-content: center;
}

.about .text {
  text-align: center;
  margin: 0px 9px;
  color: white;
  padding: 40px;
}

.about .concept-video-txt {
  width: 560px;
}

.about .row {
  display: flex;
  justify-content: center;
  padding: 10px;
}

.about .card {
  border-color: white;
  border-radius: 3px;
}

.about .card-body {
  background-color: rgb(204, 153, 159);
}

.about .card-text {
  background-color: rgb(204, 153, 159);
  border-color: rgb(204, 153, 159);
  color: white;
  font-size: 20px;
}

.team .row {
  display: flex;
  justify-content: space-around;
  padding: 40px 0;
}

.title {
  font-size: 44px;
  font-weight: 700;
  color: white;
}

.team {
  height: 90vh;
  padding-top: 140px;
  align-items: center;
  background-color: rgb(198, 135, 138);
}

.team .card {
  width: 200px;
  border-color: rgb(198, 135, 138);
  background-color: rgb(198, 135, 138);
  text-align: center;
}

.team .card img {
  border-radius: 50%;
}

.team .card .card-text {
  font-size: 16px;
  font-weight: 500;
  color: white;
}

.design {
  color: white;
  padding-top: 140px;
  background-color: rgb(170, 65, 78);
}

.design .row {
  padding: 32px 0;
}

.design .card {
  height: 100%;
  border: 1px solid white;
  background-color: rgb(170, 65, 78);
  color: white;
}

.design .list-group {
  --bs-list-group-bg: rgb(170, 65, 78);
  display: block;
  width: 100%;
}

.design .card i {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 60px;
  padding-top: 20px;
}

.design .card a {
  color: white;
  text-decoration: none;
}

.design .card a:hover {
  color: black;
  text-decoration: none;
}

.design .last-row {
  display: flex;
  justify-content: center;
}

.video {
  height: 80vh;
  padding-top: 50px;
  background-color: rgb(109, 37, 45);
  color: white;
}

.video .row {
  height: 60vh;
  display: flex;
  align-content: center;
}

.video .box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background-color: rgb(170, 65, 78);
  height: 200px;
}

.video h1 {
  font-size: 40px;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .team {
    height: auto;
  }
}

@media (max-width: 992px) {
  .navbar {
    display: flex;
    flex-direction: row;
  }

  .navbar .container {
    display: flex;
    justify-content: space-between;
  }
}

@media (max-width: 600px) {
  .navbar-brand {
    color: black;
    font-size: 25px;
    font-weight: 600;
  }

  .navbar-logo {
    height: 40px;
  }

  .about {
    height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .landing {
    margin-top: 70px;
  }

  .design {
    padding-top: 20px;
  }

  .design .card {
    width: 200px;
  }

  .design .col-12 {
    display: flex;
    justify-content: center;
    margin: 40px 0;
  }

  .design .row {
    margin: 0;
    padding: 0;
  }
}
