
html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.my-container-cards {
  padding-bottom: 60px;
}

.my-inicio-es__title {
  font-size: 5rem;
  color: var(--orange-color);
  text-decoration: underline;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.my-card {
  transition: all 400ms ease;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.my-card:hover {
  transform: translateY(-3%);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4);

  .card-title {
    color: var(--orange-color);
  }
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-fullscreen .modal-dialog {
  max-width: 70%;
  max-height: 100%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .modal-fullscreen .modal-dialog {
    max-width: 90%;
    max-height: 100%;
    margin: 0 auto;
  }
}

.modal-fullscreen .modal-content {
  border: none;
  border-radius: 0;
  height: 100%;
  background: transparent;
}

.modal-fullscreen .modal-body {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.modal-fullscreen iframe {
  width: 100vw;
  height: 100vh;
  border: none;
}


.card-img-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -140%);
  width: 50px;
  height: 50px;
  z-index: 1;
  opacity: .8;
}

.card-img-top {
  position: relative;
  width: 100%;
  height: auto;
}

.my-estudios-h2 {
  font-size: 2rem;
}



