.service_col_section {
  /* display: flex
; */
  display: grid;
  grid-template-columns: 45% auto;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 30px auto 0 auto;
  gap: 40px;
}

/* ////////////////////////////// */
/* About Img section  */

.service_col_img_section img {
  width: 100%;
  height: 500px;
  object-fit: contain;
}

/* ////////////////////////////// */
/* About text section */
.service_col_text_section {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 25px;
}

.service_col_text_section h2 {
  font-size: 24px;
  color: var(--color-pink);
  letter-spacing: 2px;
  font-family: var(--Gabarito-font);
  font-weight: 500;
}

.service_col_text_section h3 {
  font-size: 50px;
  color: var(--color-black);
  font-weight: 700;
  font-family: var(--Faustina-font);
}

.service_col_text_section h4 {
  font-size: 27px;
  color: var(--color-black);
  font-weight: 700;
  font-family: var(--Fredoka-font);
}

.service_col_text_section p {
  font-size: 21px;
  color: var(--color-black);
  font-weight: 400;
  font-family: var(--Fredoka-font);
}

.service_col_btn {
  background-color: var(--color-blue);
  color: white;
  padding: 12px 25px;
  border: none;
  font-weight: 400;
  font-size: 20px;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 1px;
  font-family: var(--Fredoka-font);
}

/* //////////////////////////// */
/*   for Table or Ipad */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .service_col_section {
    /* flex-direction: column; */
    grid-template-columns: 100%;
    gap: 20px;
    width: 70%;
  }

  .service_col_text_section {
    align-items: left;
  }

  .service_col_img_section img {
    width: 100%;
    height: 400px;
  }
}
/* /////////////////////// */
/* Responsive Desgin  */

@media (max-width: 768px) {
  .service_col_section {
    /* flex-direction: column; */
    grid-template-columns: 100%;
    gap: 20px;
    width: 90%;
  }

  .service_col_text_section {
    align-items: center;
  }

  .service_col_img_section img {
    width: 100%;
    height: 280px;
  }
}
