@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
* {
  box-sizing: border-box;
}
body {
  padding: 0;
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  background: #fff;
  color: #000;
}

.container {
  width: 1000px;
  margin: auto;
  border: 1px;
}

/* Header */
header {
  background: #000;
  color: #fff;
  padding: 20px 0;
  width: 100%;
}
.nav-bar {
  width: 72%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.nav {
  display: flex;
  background-color: #000000;
  color: #fff;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  padding: 10px 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-right: 140px;
}
.nav-links a:hover {
  color: #d87d4a;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 13px;
}

/* sarlavha */
.sarlavha {
  background: #000;
  width: 100%;
  color: white;
  text-align: center;
  padding: 60px 0;
  position: sticky;
  top: 0;
}

.sarlavha h2 {
  font-family: Helvetica, Manrope;
  font-size: 1.65rem;
  letter-spacing: 2px;
}

/* main*/
.cards {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 95px 0;
}

.card {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 90px;
  text-align: left;
}

.card img {
  width: 500px;
  border-radius: 8px;
}

.card-info {
  max-width: 500px;
}

.card-info .new {
  color: #d87d4a;
  letter-spacing: 10px;
  font-size: 14px;
}

.card-info h3 {
  font-size: 40px;
  margin: 20px 0;
  letter-spacing: 1.43px;
  line-height: 44px;
}

.card-info p {
  font-size: 15px;
  color: #000000;
  line-height: 25px;
  opacity: 50%;
}

.btn {
  display: inline-block;
  color: white;
  padding: 14px 24px;
  background-color: #d87d4a;
  color: #fff !important;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #fbaf85;
  cursor: pointer;
}

/* cta */
.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 80px 0;
  text-align: left;
}

.cta .text {
  max-width: 500px;
}

.cta h2 {
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: 1.43px;
  line-height: 44px;
}

.cta h2 span {
  color: #d87d4a;
}

.cta p {
  color: #555;
  margin-top: 20px;
  line-height: 1.6;
}

.cta img {
  width: 500px;
  border-radius: 8px;
}

/* Footer */
footer {
  background: #000;
  color: white;
  padding: 60px 0;
}

.footer-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
  margin-top: 20px;
}
.footer-box {
  width: 50%;
}
.footer-box p {
  opacity: 50%;
  font-size: 15px;
  letter-spacing: 0px;
  line-height: 25px;
}
.footer-box span {
  margin-top: 30px;
  opacity: 50%;
}
.footer-box2 {
  width: 50%;
}
.footer-links {
  display: flex;
  justify-content: space-between;
  margin: 0 px;
  color: white;
  text-decoration: none;
  letter-spacing: 2px;
  line-height: 25px;
}
.footer-links a {
  display: flex;
  margin: 0px;
  color: white;
  text-decoration: none;
  letter-spacing: 2px;
  line-height: 25px;
}
.footer-links a:hover {
  color: #d87d4a;
}
.socials {
  display: flex;
  justify-content: end;
  align-items: center;
  width: 100%;
  margin: 120px 0px;
  letter-spacing: 10px;
}
.line {
  position: absolute;
  width: 101px;
  height: 4px;
  top: -80px;
  left: 0px;
  background-color: #d87d4a;
}
