@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;1,200;1,300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans:wght@1;100;200;300;400;600;700;800;900;1000&display=swap");

:root {
  --background: #191920;
  --yellow: #f0b823;
  --red: #bd1919;
  --gray: #302f3c;
  --grayw: #586a6a;
  --grayww: #cbecfb;
  --green: #008148;
  --darkblue: #344040;
}

body {
  background-color: var(--background);
}
header {
  width: 100%;
  height: 900px;
  background-image: url(./asset/hero/b1.jpg);
  background-position: center;
  background-size: cover;
}
.nav {
  display: flex;
  height: 60px;
  justify-content: end;
  align-items: center;
  padding: 0px 29px;
  background: rgba(40, 38, 38, 0.767);
  box-shadow: 0px 1px 6px 3px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(11px);
}
.logo {
  margin-right: auto;
  cursor: pointer;
}
.nav__link {
  list-style: none;
}
.nav__link li {
  display: inline-block;
  margin: 5px 15px;
}
.nav__link li a:hover {
  color: var(--green);
}
.nav__link li a {
  font-family: "Titillium Web", sans-serif;
  font-weight: 300;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-size: 16px;
}
.nav__link li a.active {
  color: var(--green);
  border-bottom: 2px solid var(--green);
}
.search input[type="text"] {
}

.search-box {
  position: relative;
  display: inline-block;
}

.search-box input[type="text"] {
  background: rgba(217, 217, 217, 0.12);
  border: 0.25px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0px 2px 3px 1px rgba(0, 0, 0, 0.25);
  border-radius: 34px;
  width: 236px;
  height: 31px;
  color: #fff;
  font-size: 14px;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
  padding-left: 10px;
}

.search-box input[type="text"]:focus {
  outline-style: none;
  outline-color: var(--green);
}

.search-box button[type="submit"] {
  position: absolute;
  top: 0;
  right: 12px;
  width: 30px;
  height: 35px;
  background: transparent;
  border: none;
  background-image: url(./search.svg);
  background-size: cover;
  background-position: center;
  filter: invert(100%) contrast(300%);
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}
.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 93%;
}
.hero__text h1 {
  color: #faf9f8;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 0.4286rem + 5.3571vw, 5.25rem);
  font-weight: 700;
}
.hero__text p {
  color: #faf9f8;
  font-family: "Titillium Web", sans-serif;
  font-size: clamp(1rem, 0.8036rem + 0.9821vw, 1.6875rem);
  font-weight: 300;
  text-align: center;
  margin-top: 20px;
}
.container {
  display: flex;
}
.brands-section {
  margin: 50px auto;
}
.br-body {
  border-radius: 22px;
  background-color: var(--yellow);
  max-width: 1600px;
  height: auto;
  padding: 20px 0;
}
.br-body2 {
  background-color: var(--gray);
  padding: 10px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.brand-header p {
  color: #ffff;
  font-family: "Titillium Web", sans-serif;
  padding: 10px;
  text-align: justify;
  line-height: 1.3;
}
.brands-cards {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cards {
  display: flex;
  background-color: #586a6a;
  width: 155px;
  height: 158px;
  border-radius: 12px;
}
.ca-la1 {
  margin: auto;
  width: 146px;
  height: 139px;
  background: rgba(203, 236, 251, 0.38);
  box-shadow: 0px 3px 5px 2px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16.5px);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.ca-la1 .ca-la1-ti p {
  text-align: center;
  font-size: 15px;
  text-transform: uppercase;
  font-family: "Sofia Sans", sans-serif;
  font-weight: 300;
}

@media only screen and (max-width: 829px) {
}
@media only screen and (max-width: 683px) {
}
