

.clear-fix {
  clear: both;
}
.main-text h1 {
  font-size: 26px;
  color: #ffffff;
  line-height: 26px;
}


.container {
  width: 100%;
  margin: auto;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
 
}

.main-caption .image-caption {
  float: left;
  width: 40%;
  text-align: left;
}

hr {
  width: 90%;
  height: 3px;
  color: rgb(224, 218, 218);
  margin: 30px auto;
}

.main-caption .image-caption img {
  width: 100%;
  border-radius: 20px;
}

.main-caption .main-text {
  float: right;
  width: 55%;
  text-align: right;
  color: #ffffff;
}

.main-caption {
  font-size: 20px;
  padding-bottom: 50px;
  line-height: 26px;
  color: black;
}

.main-caption .main-text p {
  font-size: 15px;
  padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .main-caption .image-caption,
  .main-caption .main-text {
      float: none;
      width: 100%;
      text-align: center;
  }
}


/* section 3 */
.containerr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  background-color: #f0f0f0;
}

.box {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 10px;
  width: calc(45% - 20px);
  min-width: 300px;
  box-sizing: border-box;
  text-align: right;
}

.box h3 {
  margin-top: 0;
  color: #333;
}

.box p {
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .box {
      width: calc(90% - 20px);
  }
}

/* section 4 */
.container2 {
  width: 90%;
  margin: 30px auto;
  background-color: white;
  padding: 20px;
}

h1, h2 {
  color: #0b0b0b;
  text-align: right;
  margin: 30px;
}

p {
  line-height: 1.6;
  text-align: justify;
}

.container2 hr {
  color: rgb(233, 228, 228);
}

@media screen and (max-width: 768px) {
  .container2 {
      width: 95%;
  }
}

/* section 5 */
.container3 {
  width: 90%;
  margin: 20px auto;
  background-color: white;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
  color: black;
  text-align: right;
}

p {
  line-height: 1.6;
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .container3 {
      width: 95%;
  }
}

/* section 6 */
.container4 {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.containerrow {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 15px; 
  width: 90%; 
  max-width: 1400px;
}

.item {

  background-color: #ffffff;
  border-radius: 3%;
  border: 1px solid rgb(236, 236, 236);
  padding: 20px;
  box-shadow: 0 4px 8px rgba(128, 128, 128, 0.5);
  /* justify-content: center; */
}


@media screen and (max-width: 900px) {
  .containerrow {
      grid-template-columns: repeat(2, 1fr); 
  }
}


@media screen and (max-width: 600px) {
  .containerrow {
      grid-template-columns: repeat(1, 1fr); 
  }
}






