@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #171717;
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: inherit;
}

li a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  text-transform: capitalize;
}

* img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

footer {
  margin-top: auto;
  padding: 0.5rem;
  width: 100%;
  text-align: center;
}

.disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
.container .intro {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100dvh;
}
.container .intro .header {
  max-width: 500px;
  height: 500px;
}
.container .intro .content {
  margin-block: 5rem;
}
.container .intro .content h1 {
  font-size: clamp(1rem, 1rem + 5.7366vw, 3.75rem);
  text-align: center;
}

.cards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
.cards .card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  gap: 2rem;
  padding: 5rem;
  margin-block: 3rem;
  overflow: hidden;
}
.cards .card:nth-child(odd) {
  flex-direction: row-reverse;
}
.cards .card__left, .cards .card__right {
  flex: 1;
}
.cards .card__left {
  text-align: center;
  padding: 2rem;
}
.cards .card__right {
  display: grid;
  place-items: center;
  border-radius: 24px;
  height: 600px;
  overflow: hidden;
}
.cards .card__right__img {
  width: 250px;
  height: 250px;
}
.cards .card__title {
  margin-block: 2rem;
  font-size: clamp(1rem, 1rem + 1.5645vw, 1.75rem);
}
.cards .card__text {
  font-size: clamp(0.65rem, 1rem + 1.5645vw, 1.75rem);
  line-height: 1.4;
}
.cards .card__btn {
  margin-block-start: 3rem;
}
.cards .card__btn .btn {
  display: inline-block;
  text-decoration: none;
  text-transform: capitalize;
  padding: 0.8rem 2.1rem;
  cursor: pointer;
  border: none;
  border-radius: 24px;
  font-size: 1rem;
  letter-spacing: 2px;
  transition: 0.3s;
  margin: 0 0.75rem;
  background-color: rgba(119, 141, 169, 0.3);
  color: #FFFFFF;
  font-weight: 200;
}

@media screen and (max-width: 767px) {
  .container .intro .header {
    padding: 0.75rem;
  }
  .container .intro .content {
    padding: 2rem;
  }
  .cards .card {
    flex-direction: column;
    width: 100%;
    margin-block: 3rem;
    height: auto;
    padding: 0;
  }
  .cards .card:nth-child(odd), .cards .card:nth-child(even) {
    flex-direction: column-reverse;
  }
  .cards .card__left {
    padding: 0;
  }
}
@media screen and (max-width: 1200px) {
  .container .content {
    margin-block: 1rem;
  }
  .container .cards .card {
    gap: 1rem;
    padding: 2.5rem;
  }
  .container .cards .card__left {
    padding: 0.75rem;
  }
  .container .cards .card__right {
    height: auto;
  }
}
@media screen and (max-width: 900px) and (orientation: landscape) {
  .container .intro {
    border: 2px solid blue;
  }
  .container .cards {
    margin-top: 5rem;
  }
}
.flex-reverse {
  flex-direction: row-reverse;
}

.taylor,
.braneu,
.team,
.fgroup {
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.taylor {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)), url("/assets/img/brands/taylorBgImg.jpg");
}

.braneu {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)), url("/assets/img/brands/braneuBgImg.png");
}

.team {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)), url("/assets/img/brands/tryy.jpg");
}

.fgroup {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)), url("/assets/img/brands/firmGroupBgIMg1.jpg");
}/*# sourceMappingURL=style.css.map */