.headerBg {
  background-color: white;
  margin-top: 0;
  position: inherit;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.headerBg .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0.4rem 0;
}

.headerBg nav a {
  color: #f6966f !important;
}

/* About Us Start */
.aboutUs {
  background: url("../assets/bg-bmfarma-aboutus.jpeg");
  width: 100%;
  background-size: cover;
  padding: 0 50px;
  color: #fff;
  height: 500px;
}

.aboutUs .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.aboutLeft {
  max-width: 50%;
}

.aboutRight {
  max-width: 100%;
  height: 100%;
  margin-top: auto;
  margin-bottom: -2rem;
  margin-right: 5rem;
}

.aboutRight img {
  height: 100%;
  transform: scaleX(-1);
}
/* About Us End */

/* Content Area Start */
.contentArea {
  padding-top: 50px;
  background-image: url("../assets/stock-bg-hakkimizda.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
}

.contentLeft,
.contentRight {
  display: flex;
  gap: 1rem;
  margin: 3rem 0;
}

.contentRight {
  flex-direction: row-reverse;
}

.contentLeft div,
.contentRight div {
  width: 50%;
  padding-top: 5%;
  color: #00307e;
}

.contentLeft div h2,
.contentRight div h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contentLeft div p,
.contentRight div p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.contentLeft img,
.contentRight img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
}
/* Content Area End */

@media (max-width: 840px) {
  .contentLeft,
  .contentRight {
    flex-direction: column-reverse;
  }

  .contentLeft div,
  .contentRight div {
    width: 100%;
    padding-top: 0;
  }

  .contentLeft img,
  .contentRight img {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .aboutUs {
    padding: 5rem 0;
    height: auto;
  }

  .aboutUs .aboutRight {
    display: none;
  }

  .aboutUs .aboutLeft {
    max-width: 100%;
  }
}
