* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Courier New', Courier, monospace;
}
body {
  background: #f9f9f9;
}

/* NavBar */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  background-color: #ffff;
}
.logo a {
  text-decoration: none;
  font-size: 25px;
  font-weight: bold;
  color: black;
}
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.nav-menu li {
  margin: 0 15px;
}
.nav-menu a {
  text-decoration: none;
  color: black;
  font-size: 16px;
}
.nav-menu a:hover {
  color: #ccc;
}
.nav-btn .btn-link {
  padding: 8px 20px;
  background-color: black;
  font-size: 16px;
  color: white;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
}
.nav-btn .btn-link:hover {
  background-color: #ccc;
}

/* Banner-1 */
.banner-1 {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('images-folder/banner-1-img.webp') no-repeat center/cover;
}
.banner-1-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 50px;
  color: #fff;
}
.banner-1-text h1 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
}
.banner-1-text h1 span {
  background: yellow;
  color: black;
  padding: 0 5px;
}
.banner-1-text p {
  margin: 20px 0;
  max-width: 400px;
  font-size: 16px;
  color: black;
}

.banner-1-btn {
  padding: 10px 20px;
  background: black;
  color: white;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  border-radius: 5px;
}
.banner-1 img {
  width: 400px;
  height: auto;
  object-fit: cover;
}

/* COLLABORATION */

.collaboration-img {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    background-color: yellow;
}
.collaboration-img img {
  width: 50px;
  height: 40px;
  object-fit: contain;
}

/*Card Container*/
.container-card {
  width: 90%;
  max-width: 1200px;
  margin: 40px;
  text-align: center;
}
.arriver-text {
  font-size: 28px;
  margin-bottom: 20px;
}
.arriver-text span {
  color: #ffd700;
}
.new-card {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 300px;
  background: #f9f9f9;
  margin: 10px;
  padding: 15px;
  border-radius: 10px;
  text-align: left;
  vertical-align: top;
}
.card-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  object-fit: cover;
}
.card-title {
  font-size: 18px;
  margin: 10px 0 5px;
}
.card-title-span {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-title-span p {
  font-size: 14px;
  color: #888;
}
.card-title-span img {
  width: 12px;
  height: 12px;
}

/* Banner-2*/

.banner-2 {
    position: relative;
    width: 100%;
    height: 70vh;
    background: url('images-folder/banner-2-img.webp') no-repeat center center/cover;
}
.banner-2-text {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 50px;
  color: #000000;
}
.banner-2-text h1 {
font-size: 40px;
font-weight: bold;
line-height: 1.3;
}
.banner-2-text h1 span {
  background-color: #000000;
  color: #f9f9f9;
  padding: 0 5px;
}
.banner-2-text p {
  font-size: 14px;
  margin: 15px 0;
}
.banner-2-btn {
  padding: 10px 20px;
  background: black;
  color: white;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  border-radius: 5px;
}