/* start hero section  */
.hero {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  background-image: linear-gradient(135deg, #fbdc9e7d, #1f1f1fb2),
    url("../images/hero_img.jpg");
  background-position: center;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 40px;
}
.hero .hero_text-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.hero .hero_text-container h1 {
  color: var(--primary-dark-color);
  margin-bottom: 0px;
}
.hero .hero_text-container p {
  text-align: center;
  line-height: 2rem;
  padding: 0 130px;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .hero .hero_text-container p {
    padding: 0 50px;
  }
}
@media only screen and (max-width: 414px) {
  .hero .hero_text-container p {
    padding: 0 20px;
  }
}
.hero .hero_text-container a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation-name: bounce;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  border-color: #fff;
}
.hero .hero_text-container a img {
  filter: invert(1);
}
@media only screen and (max-width: 768px) {
  .hero .hero_text-container a {
    border-color: #fff;
  }
  .hero .hero_text-container a img {
    filter: invert(1);
  }
}
@keyframes bounce {
  0% {
    transform: translateY(-10px);
  }
  25% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(-10px);
  }
  75% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
/* end hero section  */
/* start about section  */
.about {
  padding: 120px 0;
  /* background-color: var(--secondary-color); */
  background: linear-gradient(
    -310deg,
    var(--primary-color) 0%,
    var(--primary-dark-color) 20%
  );
}
.about .about_content {
  color: var(--secondary-color);
  text-align: center;
}
.about .about_content p {
  line-height: 2rem;
}
.about .about_content p:not(:last-child) {
  margin-bottom: 20px;
}
/* end about section  */
/* start services  */
.services {
  padding: 80px 0;
  background-color: #f3f3f3;
}
.services .services_content .services_content-word {
  padding: 0px 180px 40px;
  text-align: center;
  line-height: 2rem;
  color: var(--main-text-color);
  @media only screen and (max-width: 991px) {
    padding: 20px 120px;
  }

  @media only screen and (max-width: 664px) {
    padding: 20px 50px;
  }

  @media only screen and (max-width: 414px) {
    padding: 20px 20px;
  }
}
.services .services_content .services_content-cards {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  gap: 15px;
  flex-wrap: wrap;
}
.services .services_content-cards .services_card-wrapper {
  /* background: linear-gradient(
    135deg,
    var(--primary-light-color),
    var(--primary-dark-color) 70%
  ); */
  border: 1px solid #ddd;
  border-radius: 5px;
  /* padding: 1rem; */
  width: 350px;
  transition: 0.3s ease;
}
/* .services .services_content-cards .services_card-wrapper:hover {
  background: linear-gradient(
    135deg,
    var(--primary-light-color),
    var(--primary-dark-color) 20%
  );
} */
.services .services_card-wrapper .services_card {
  width: 100%;
  background-color: #f3f3f3;
  /* border:1px solid var(--third-gray-shadow); */
  color: var(--main-text-color);
  border-radius: 5px;
  /* padding: 1rem; */
  height: 100%;
  overflow: hidden;
}
.services .services_card-wrapper .services_card .img_title_wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.services .services_card-wrapper .services_card .img_title_wrapper > * {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.services .services_card-wrapper .services_card .img_title_wrapper > img {
  object-fit: cover;
  width: 100%;
  z-index: 1;
  transition: 0.3s;
}
.services .services_card-wrapper .services_card:hover .img_title_wrapper > img {
  transform: translate(-50%, -50%) scale(1.05, 1.05);
}

.services .services_card-wrapper .services_card .img_title_wrapper .overlay {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#1f1f1fa1, #00000050);
  z-index: 2;
}
.services .services_card-wrapper .services_card .img_title_wrapper > h3 {
  z-index: 3;
  color: #fff;
}
.services .services_card-wrapper .services_card > img,
.services .services_card-wrapper .services_card h3 {
  margin: auto;
  text-align: center;
  display: block;
  margin-bottom: 10px;
  max-width: 100%;
}
.services .services_card-wrapper .services_card ul {
  padding: 1rem;
}
.services .services_card-wrapper .services_card ul li {
  margin-bottom: 8px;
  line-height: 1.3rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.services .services_card-wrapper .services_card ul li img {
  margin-top: 4px;
}
@keyframes changeBackground {
  0% {
    background: linear-gradient(
      140deg,
      var(--primary-light-color),
      var(--primary-dark-color)
    );
  }
  20% {
    background: linear-gradient(
      160deg,
      var(--primary-light-color),
      var(--primary-dark-color)
    );
  }
  40% {
    background: linear-gradient(
      200deg,
      var(--primary-light-color),
      var(--primary-dark-color)
    );
  }
  60% {
    background: linear-gradient(
      220deg,
      var(--primary-light-color),
      var(--primary-dark-color)
    );
  }
  80% {
    background: linear-gradient(
      240deg,
      var(--primary-light-color),
      var(--primary-dark-color)
    );
  }
  100% {
    background: linear-gradient(
      260deg,
      var(--primary-light-color),
      var(--primary-dark-color)
    );
  }
}
/* end services  */

/* start services fields  */
.services-fields {
  padding: 120px 0;
}
.services-fields .services-fields_content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.services-fields .services-fields_content .services_fields_card {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  width: 200px;
  height: 200px;
  z-index: 1;
}
.services-fields .services-fields_content .services_fields_card > * {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.services-fields .services-fields_content .services_fields_card img {
  object-fit: cover;
  transition: 0.3s ease;
  z-index: 1;
}
.services-fields .services-fields_content .services_fields_card:hover img {
  transform: translate(-50%, -50%) scale(1.05, 1.05);
}

.services-fields .services-fields_content .services_fields_card .card_overlay {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#1f1f1fa1, #00000050);
  z-index: 2;
}
.services-fields .services-fields_content .services_fields_card h6 {
  z-index: 3;
  color: var(--primary-light-color);
  font-size: 1rem;
  text-align: center;
}
/* end services fields  */
/* start specialities  */
/* end specialities  */
.spectialties {
  padding: 100px 0;
  background: linear-gradient(to right, #00000094, #0000006e),
    url("../images/bg_1.jpg");
  background-attachment: fixed;
  background-position: bottom;
  background-size: cover;
}
.spectialties .spectialties_cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.spectialties .spectialties_cards .spectialties_card {
  border: 1px solid #fff;
  background: #f1f1f110;
  backdrop-filter: blur(10px);
  display: flex;
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 290px;
  width: 290px;
}
.spectialties .spectialties_cards .spectialties_card .img-wrapper {
  background-color: #fff;
  width: 80px;
  min-width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

/* start partener and  contributos  */
.contributors,
.parteners {
  padding: 120px 0;
}
.contributors .contributors_content,
.parteners .parteners_content {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}
.contributors .contributors_content .img-holder,
.parteners .parteners_content .img-holder {
  width: 400px;
  border: 1px solid #999;
  transition: 0.3s ease;
}
.contributors .contributors_content .img-holder img,
.parteners .parteners_content .img-holder img {
  width: 100%;
}
.contributors {
  background-color: #f3f3f3;
}
.contributors .contributors_content .img-holder {
  background-color: #fff;
}
/* end parteners and contributores */
/* start contact */
.contact {
  padding: 120px 0;
  background: linear-gradient(
    90deg,
    var(--primary-light-color),
    var(--primary-dark-color) 40%
  );
}
.contact .contact_content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.contact .contact_content .contact_map {
  flex: 1;
}
.contact .contact_content .contact_map iframe {
  width: 100%;
  height: 400px;
  min-width: 290px;
}
.contact .contact_content .contact_info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  min-width: 300px;
}
.contact .contact_content .contact_info div img {
  margin-bottom: 10px;
}
.contact .contact_content .contact_info div p {
  color: #fff;
}
/* end contact  */
/* start footer  */
footer {
  background-color: #111;
  padding: 120px 0 60px;
}
footer .footer_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
footer .footer_content .footer_socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
footer .footer_content .footer_socials a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: 0.3s ease;
}
footer .footer_content .footer_socials a:hover {
  background-color: #0072b1;
  transform: translateY(-5px);
}

/* end footer  */
.copyright {
  background-color: #000;
  color: white;
  padding: 20px 0;
  text-align: center;
}
