main {
  position: relative;
}

main .cover_mobile img {
  display: none;
}

main .index_cover img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

main .main_section {
  position: relative;
  margin: 5%;
}

main .main_section h1 {
  text-align: center;
  margin-bottom: 3%;
}

main .main_section .main_text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: rgba(255, 255, 255, 0.747);
  gap: 4%;
  padding: 2%;
  line-height: 1.5;
  border-radius: 1rem;
}

main .main_section .main_text .main_text_left h3,
.main_text .main_text_right h3 {
  text-align: center;
  padding-bottom: 3%;
}

main .main_section .main_text .main_text_left .p1 span,
.main_text .main_text_right .p4 span {
  color: #f82536;
}

main .main_section .main_text_left .circle,
.main_text_right .circle {
  color: white;
  background-color: #f82536;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 1%;
}

main .main_section .main_text_left .p2 a,
.main_text_right .p5 {
  text-align: justify;
}

main .main_section .main_text_left .p2 a,
.main_text_right .p5 a {
  color: #71b120;
  text-decoration: none;
}

main .main_section .main_text_left .p2 a:hover,
.main_text_right .p5 a:hover {
  color: #f82536;
}

main .main_section .main_text_left ul li,
.main_text_right ul li {
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

main .main_section .main_text_right .description {
  margin-top: 10px;
}

/* ..................................Media querry.................................. */

@media (max-width: 1024px) {
  main .index_cover img {
    margin-top: 20%;
    margin-bottom: 15%;
  }
}

@media (max-width: 900px) {
  main .index_cover {
    display: none;
  }

  main .cover_mobile img {
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: auto;
    position: absolute;
  }

  main .main_section {
    margin-top: 10%;
    margin-left: 3%;
    margin-right: 3%;
  }

  main .main_section .main_text {
    display: flex;
    flex-direction: column;
    padding: 6%;
  }

  main .main_section .main_text .main_text_right {
    margin-top: 8%;
    text-align: justify;
  }

  main .main_section .main_text .main_text_left .p1,
  .main_text .main_text_right .p4 {
    line-height: 1.3;
    margin-bottom: 4%;
  }

  main .main_section .main_text_left .circle,
  .main_text_right .circle {
    width: 120px;
    height: 120px;
  }
}
