/* Phone */
@media screen and (max-width: 1280px) {
  header {
    background-color: #021928;
  }
  header img {
    margin: 5% 2% 5% 5%;
  }
  header h1 {
    display: inline-block;
    position: absolute;
    color: white;
    width: 4rem;
    font-size: 22px;
    margin: 4.9% 1% 5% 2%;
  }
  header nav {
    display: none;
  }
  header nav a {
    color: white;
    text-decoration: none;
    font-size: 24px;
  }
  header .hamburger-button {
    background-color: transparent;
    border: none;
    position: absolute;
    margin-top: 5%;
    right: 1rem;
  }
}
/* PC */
@media screen and (min-width: 1280px) {
  header {
    color: white;
    background-color: #021928;
  }
  header button {
    display: none;
  }
  header img {
    margin: 3% 0 0 3%;
  }
  header h1 {
    margin-left: 2%;
    display: inline;
    font-size: 35px;
  }
  header nav {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding: 0 10rem;
  }
  header a {
    margin: 1rem 0 2rem 0;
    font-size: 22px;
    font-weight: 700;
    color: white;
    text-decoration: none;
  }
  header a:hover {
    color: #8acfe5;
  }
}
/* Coder picture code for phone */
@media screen and (max-width: 1280px) {
  .coder-section__img {
    width: 100%;
    height: auto;
    display: block;
  }
  .coder-section__pc-img {
    display: none;
  }
}
/* Coder picture for PC */
@media screen and (min-width: 1280px) {
  .coder-section__img {
    display: none;
  }
  .coder-section__pc-img {
    max-width: 1280px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
/* Story container phone */
.story-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #021928;
  font-size: 22px;
  height: 30rem;
}
.story-container__button {
  width: 19.25rem;
  height: 4.125rem;
  font-size: 18px;
  margin-top: 2rem;
  background-color: #021928;
  border: solid 1px #8acfe5;
  color: #8acfe5;
}
.story-container__text {
  color: white;
  text-align: center;
  width: 90%;
}

/* Story container pc  */
@media screen and (min-width: 1280px) {
  .story-container__text {
    width: 40%;
  }
  .story-container__button {
    width: 19.25rem;
    height: 4.125rem;
  }
}
/* Play info container phone */
@media screen and (max-width: 1280px) {
  .play-info-container__button {
    border: none;
    background-color: #e3170a;
    color: white;
    width: 65%;
    height: 3rem;
    margin-right: 25%;
  }
  .play-info-container__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 300px;
  }
  .play-info-container__content-title {
    width: 90%;
  }
  .play-info-container__content a {
    text-decoration: none;
    color: white;
  }
  .play-info-container__content p {
    width: 90%;
  }
  .play-info-container__img {
    width: 100%;
  }
}
/* Play info container PC */
@media screen and (min-width: 1280px) {
  .play-info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    margin-bottom: 8rem;
  }
  .play-info-container__img-wrapper2 {
    grid-column: 2;
    grid-row: 2;
  }
  .play-info-container img {
    width: 100%;
  }
  .play-info-container__content-title {
    width: 70%;
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
  }
  .play-info-container p {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
  .play-info-container a {
    text-decoration: none;
    color: white;
  }
  .play-info-container__button {
    margin-left: 15%;
    width: 19.25rem;
    height: 4.125rem;
    background-color: #e3170a;
    border: none;
    color: white;
    font-size: 20px;
  }
}
/* Footer Styling */
.footer {
  color: white;
  background-color: #021928;
  height: 26rem;
  padding-top: 1rem;
  /* PC Styles */
}
.footer__info, .footer__nav-title, .footer__social-title {
  padding-left: 1rem;
}
.footer__nav-list, .footer__nav-social {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer a {
  color: white;
  text-decoration: none;
  padding-left: 1rem;
}
@media screen and (min-width: 1280px) {
  .footer {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .footer__info {
    margin: 0 15% 0 10%;
    width: 30%;
  }
  .footer__social {
    margin-bottom: 4%;
  }
  .footer__nav {
    margin-right: 5%;
  }
  .footer__nav-list-legal {
    margin-bottom: 1rem;
  }
}

.phone-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  font-size: 24px;
  font-weight: 700;
  color: white;
  position: fixed;
  z-index: 100;
  background-color: #021928;
  animation: opacityGrow 0.5s;
  animation-fill-mode: forwards;
}

.close-nav-btn {
  position: absolute;
  opacity: 0;
  top: 5%;
  right: 5%;
  background-color: transparent;
  border: none;
  transition: opacity 2s 0.2s;
}

.hidden-to-visible-transition {
  opacity: 1;
}

.opacity-transition {
  opacity: 0.5;
}

.full-screen-invicible {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 100%;
}

@keyframes opacityGrow {
  0% {
    opacity: 0;
    top: 10%;
    left: 10%;
    width: 80vw;
    height: 80vh;
  }
  100% {
    opacity: 1;
    top: 5%;
    left: 5%;
    width: 90vw;
    height: 90vh;
  }
}
.cutInHalf {
  clip-path: inset(0 50% 0 0);
}

.hidden {
  display: none;
}

.red {
  color: #ff0000;
}

.loader {
  border: 16px solid purple;
  border-top: 16px solid #021928;
  border-left: 16px solid #8acfe5;
  border-bottom: 16px solid #36769d;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.filterSection.active {
  display: grid;
}

.filled {
  background-color: #788797;
  color: white;
}

.filterSection {
  display: none;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  margin: 50px;
  box-shadow: #101827 0px 0px 4px 0.08px;
  user-select: none;
}
.filterSection #btnCloseFilter {
  background: 0px;
  padding: 0px;
  border: none;
}
.filterSection #btnCloseFilter:hover {
  color: red;
}
.filterSection .containerHead {
  display: flex;
  flex: none;
  justify-content: space-between;
  margin-bottom: 40px;
}
.filterSection .containerHead p {
  margin: 0px;
  padding: 0px;
}
.filterSection .filterContainer {
  display: flex;
  justify-content: space-between;
}
.filterSection .filterContainer .containerLeft label {
  cursor: pointer;
}
.filterSection .filterContainer .containerLeft #includeOnline {
  margin: 0px;
  cursor: pointer;
}
.filterSection .filterContainer .containerLeft #includeOnsite {
  margin: 0px;
  cursor: pointer;
}
.filterSection .filterContainer .containerMiddle {
  display: grid;
}
.filterSection .filterContainer .containerMiddle .starsContainer {
  display: flex;
  align-items: center;
}
.filterSection .filterContainer .containerMiddle .starsContainer i {
  color: red;
  cursor: pointer;
}
.filterSection .filterContainer .containerMiddle .starsContainer p {
  margin: 0;
  padding: 0px 20px;
}
.filterSection .filterContainer .containerMiddle .inputTitle {
  margin: 100px 0px 5px 0px;
}
.filterSection .filterContainer .containerMiddle .filterInput {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 5px;
  border: none;
  box-shadow: black 0px 0px 0px 0.6px;
  border-radius: 5px;
}
.filterSection .filterContainer .containerRight {
  max-width: 20%;
}
.filterSection .filterContainer .containerRight button {
  margin: 0 0.5rem 0.5rem 0;
  padding: 5px 10px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: #101827 0px 0px 1px 0.08px;
}
.filterSection .filterContainer .containerRight button:hover {
  background-color: #788797;
  color: white;
}

.challenges-body {
  display: block;
}

.api-card-container {
  background-color: white;
  margin: 0 auto 0 auto;
  padding: 5%;
  max-width: 1400px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  justify-items: center;
}
@media screen and (min-width: 1600px) {
  .api-card-container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.api-card-container img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0px 0px;
}
.api-card-container__card {
  background-color: white;
  box-shadow: #b6bdb5 0px 5px 15px;
  border-radius: 10px;
  position: relative;
}
.api-card-container__card:hover {
  box-shadow: #021928 0px 5px 30px;
}
.api-card-container__card h3 {
  margin: 5%;
}
.api-card-container__card i {
  float: left;
  transform: translateX(18px);
}
.api-card-container__card small {
  display: flex;
  justify-content: flex-end;
  margin-right: 25px;
}
.api-card-container__card p {
  margin: 5% 0 0 5%;
  min-height: 40px;
}
.api-card-container__card button {
  display: flex;
  justify-self: end;
  align-items: center;
  justify-content: center;
  margin: 0 5% 5% 0;
  background-color: #e3170a;
  border: none;
  width: 11rem;
  height: 2.5rem;
  border-radius: 3px;
  color: white;
}
.api-card-container__card .img-container {
  position: relative;
}
.api-card-container__card .img-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px 10px 0px 0px;
}
.api-card-container__card .img-container .icon {
  position: absolute;
  color: #021928;
  top: 10px;
  right: 25px;
  font-size: 2.5rem;
  padding: 5px;
  z-index: 100;
}

.title-btn-container {
  display: grid;
  justify-content: center;
  margin-top: 50px;
}
.title-btn-container h1 {
  color: black;
  user-select: none;
}
.title-btn-container #filter-btn.active {
  display: none;
}
.title-btn-container #filter-btn {
  padding: 15px;
  font-weight: bold;
  border-radius: 7px;
  max-width: fit-content;
  place-self: center;
  border-width: 1px;
  color: #6558f5;
  border-color: #6558f5;
  margin-bottom: 70px;
}
.title-btn-container #filter-btn:hover {
  background-color: #6558f5;
  color: white;
}

.book-page-one {
  position: fixed;
  display: grid;
  padding: 20px;
  top: 15%;
  left: 28%;
  width: 40vw;
  height: 60vh;
  background-color: white;
  box-shadow: #101827 0px 0px 3px 0.3px;
  border-radius: 10px;
  animation: slideIn 0.3s ease-out;
}
.book-page-one .container-top {
  display: grid;
}
.book-page-one .container-top p {
  margin: 0px;
}
.book-page-one .container-top p:last-of-type {
  align-content: end;
  padding-left: 2px;
}
.book-page-one .container-top input {
  max-width: fit-content;
  max-height: fit-content;
  padding: 5px 10px;
  border-width: 1.5px;
  border-radius: 5px;
  cursor: pointer;
}
.book-page-one .container-bottom {
  display: flex;
  justify-content: end;
  align-items: end;
}
.book-page-one .container-bottom #btn-home-page {
  padding: 10px;
  border: none;
  background-color: #6558f5;
  color: white;
  cursor: pointer;
  border-radius: 10px 0px 0px 10px;
}
.book-page-one .container-bottom #btn-home-page:hover {
  background-color: yellow;
  color: black;
}
.book-page-one .container-bottom #btn-close {
  padding: 17.3px 3px 17.3px 3px;
  border: none;
  background-color: #6558f5;
  color: red;
  cursor: pointer;
}
.book-page-one .container-bottom #btn-close:hover {
  background-color: red;
  color: white;
}
.book-page-one .container-bottom #btn-search-time {
  padding: 10px 10px 10px 4px;
  border: none;
  background-color: #6558f5;
  color: white;
  cursor: pointer;
  border-radius: 0px 10px 10px 0px;
}
.book-page-one .container-bottom #btn-search-time:hover {
  background-color: yellow;
  color: black;
}

.booking-step-two {
  position: fixed;
  display: grid;
  padding: 20px;
  top: 15%;
  left: 28%;
  width: 40vw;
  height: 60vh;
  background-color: white;
  box-shadow: #101827 0px 0px 3px 0.3px;
  border-radius: 10px;
  animation: slideRight 0.3s ease-in;
}
.booking-step-two .container-form {
  display: grid;
  min-width: fit-content;
  max-width: 50%;
}
.booking-step-two .container-form input {
  margin-bottom: 20px;
  padding: 5px;
  border-width: 1.5px;
  border-radius: 5px;
  cursor: text;
}
.booking-step-two .container-form select {
  margin-bottom: 20px;
  min-width: fit-content;
  max-width: 50%;
  padding: 5px;
  border-width: 1.5px;
  border-radius: 5px;
  cursor: pointer;
}
.booking-step-two div {
  display: flex;
  justify-content: end;
  align-items: end;
}
.booking-step-two div #btn-back {
  padding: 10px 5px 10px 10px;
  border: none;
  background-color: #6558f5;
  color: white;
  cursor: pointer;
  border-radius: 10px 0px 0px 10px;
}
.booking-step-two div #btn-back:hover {
  background-color: yellow;
  color: black;
}
.booking-step-two div #btn-close {
  padding: 17.3px 3px 17.3px 3px;
  border: none;
  background-color: #6558f5;
  color: red;
  cursor: pointer;
}
.booking-step-two div #btn-close:hover {
  background-color: red;
  color: white;
}
.booking-step-two div .submit-booking {
  padding: 10px 15px 10px 10px;
  border: none;
  background-color: #6558f5;
  color: white;
  cursor: pointer;
  border-radius: 0px 10px 10px 0px;
}
.booking-step-two div .submit-booking:hover {
  background-color: yellow;
  color: black;
}

.book-page-confirm {
  position: fixed;
  display: grid;
  justify-content: center;
  align-items: center;
  padding: 20px;
  top: 15%;
  left: 28%;
  width: 40vw;
  height: 60vh;
  background-color: white;
  box-shadow: #101827 0px 0px 3px 0.3px;
  border-radius: 10px;
  animation: fadeIn 0.3s ease-in;
}
.book-page-confirm a {
  color: #6558f5;
}

@keyframes slideIn {
  0% {
    scale: 0;
    opacity: 0;
  }
  80% {
    scale: 1.1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideRight {
  0% {
    scale: 1;
  }
  80% {
    scale: 1.1;
    background-color: chartreuse;
  }
  100% {
    scale: 1;
  }
}
@keyframes fadeIn {
  0% {
    scale: 1;
  }
  80% {
    scale: 1.1;
    background-color: chartreuse;
  }
  100% {
    scale: 1;
  }
}
#contact-page-body {
  padding: 0px;
  margin: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(to top, white 50%, blue 50%);
}

.mainSection {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  box-shadow: #101827 0px 0px 4px 0.08px;
}
.mainSection .container-right {
  background: conic-gradient(at top right, lightcyan, lightblue);
  height: 70vh;
  width: 40vw;
  border-radius: 0px 30px 30px 0px;
}
.mainSection .container-right .input-forms {
  display: grid;
  padding: 20px 50px 0px 50px;
  gap: 20px;
}
.mainSection .container-right .input-forms .name-form {
  position: relative;
}
.mainSection .container-right .input-forms .name-form .label-input-name {
  position: absolute;
  top: 45%;
  left: 10px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.3s;
  padding: 0px 5px;
}
.mainSection .container-right .input-forms .name-form .input-name {
  padding: 10px;
  border-radius: 10px;
  border-width: 2px;
  border: solid black;
  outline: none;
  min-width: 90%;
}
.mainSection .container-right .input-forms .name-form .input-name:not(:placeholder-shown) + .label-input-name {
  top: 0;
  left: 15px;
  font-size: 0.8em;
  background: linear-gradient(to top, white 50%, #bce3ed 50%);
}
.mainSection .container-right .input-forms .name-form .input-name:focus ~ .label-input-name {
  top: 0;
  left: 15px;
  background: linear-gradient(to top, white 50%, #bce3ed 50%);
}
.mainSection .container-right .input-forms .email-form {
  position: relative;
}
.mainSection .container-right .input-forms .email-form .label-email {
  position: absolute;
  top: 45%;
  left: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.3s;
  padding: 0px 5px;
}
.mainSection .container-right .input-forms .email-form .input-email {
  padding: 10px;
  border-radius: 10px;
  min-width: 90%;
  outline: none;
  border-width: 2px;
  border: solid black;
}
.mainSection .container-right .input-forms .email-form .input-email:focus ~ .label-email {
  top: 0;
  left: 15px;
  background: linear-gradient(to top, white 50%, #bce3ed 50%);
}
.mainSection .container-right .input-forms .email-form .input-email:not(:placeholder-shown) + .label-email {
  top: 0;
  left: 15;
  font-size: 0.8em;
  background: linear-gradient(to top, white 50%, #bce3ed 50%);
}
.mainSection .container-right .input-forms .number-form {
  position: relative;
}
.mainSection .container-right .input-forms .number-form .label-number {
  position: absolute;
  top: 45%;
  left: 15px;
  pointer-events: none;
  transform: translateY(-45%);
  transition: 0.3s;
  padding: 0px 5px;
}
.mainSection .container-right .input-forms .number-form .input-number {
  padding: 10px;
  min-width: 90%;
  border-width: 2px;
  border: solid black;
  outline: none;
  border-radius: 10px;
}
.mainSection .container-right .input-forms .number-form .input-number:focus ~ .label-number {
  top: 0;
  left: 15px;
  background: linear-gradient(to top, white 50%, #bce3ed 50%);
}
.mainSection .container-right .input-forms .number-form .input-number:not(:placeholder-shown) + .label-number {
  top: 0;
  left: 15px;
  font-size: 0.8em;
  background: linear-gradient(to top, white 50%, #bce3ed 50%);
}
.mainSection .container-right .input-forms .message-form {
  display: grid;
  padding-right: 15px;
}
.mainSection .container-right .input-forms .message-form .input-message {
  max-width: 94%;
  min-height: 100px;
  border-radius: 5px;
  border-width: 2px;
  border: solid black;
  padding: 10px;
}
.mainSection .container-right .input-forms .submit-btn {
  max-width: fit-content;
  place-self: center;
  padding: 10px 50px;
  border: none;
  border-radius: 10px;
  background-color: azure;
  box-shadow: #101827 0px 0px 4px 0.08px;
}
.mainSection .container-right .input-forms .submit-btn:hover {
  background-color: blueviolet;
  color: white;
}
.mainSection .container-right .input-forms .lorem {
  display: flex;
  justify-content: space-between;
}
.mainSection .container-right .input-forms .lorem div {
  display: flex;
}
.mainSection .container-right .input-forms .lorem div p {
  margin: 0px;
  padding-left: 5px;
  cursor: pointer;
}
.mainSection .container-left {
  display: flex;
  justify-content: center;
  background-color: blueviolet;
  height: 70vh;
  width: 25vw;
  border-radius: 30px 0px 0px 30px;
  overflow: hidden;
}
.mainSection .container-left .phone-img {
  border-radius: 0px;
  animation: hanging 3s infinite ease-in-out;
  transform-origin: top center;
}

@keyframes hanging {
  0% {
    transform: translateY(-100px) rotate(0deg);
  }
  50% {
    transform: translateY(-100px) rotate(10deg);
  }
  100% {
    transform: translateY(-100px) rotate(0deg);
  }
}
/* Phone and PC */
html {
  font-family: roboto, sans-serif;
  font-size: 16px;
}

html,
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  background-color: white;
}

.indexBody {
  background-color: #021928;
}

button {
  font-family: roboto, sans-serif;
}

button:hover {
  cursor: pointer;
}

.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  transition: opacity 0.5s;
}

.main-challenges-title {
  text-align: center;
  font-weight: 400;
  font-size: 26px;
}

/* Button Wrapper Phone */
@media screen and (max-width: 1280px) {
  .button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .button-wrapper__online {
    display: none;
  }
  .button-wrapper__onsite {
    margin-top: 2rem;
    margin-bottom: 2rem;
    border: none;
    background-color: #8acfe5;
    width: 19.25rem;
    height: 4.125rem;
    font-size: 22px;
    font-weight: 700;
  }
  .button-wrapper__anchor {
    color: #36769d;
    margin-bottom: 2rem;
  }
  .button-wrapper__anchor:visited {
    color: #36769d;
  }
}
/* Button Wrapper PC */
@media screen and (min-width: 1280px) {
  html {
    background-color: #021928;
  }
  .button-wrapper {
    display: flex;
    justify-content: center;
  }
  .button-wrapper__online {
    border: none;
    background-color: #e3170a;
    display: inline;
    width: 19.25rem;
    height: 4.125rem;
    font-size: 22px;
    font-weight: 700;
    color: white;
  }
  .button-wrapper__onsite {
    border: none;
    background-color: #8acfe5;
    width: 19.25rem;
    height: 4.125rem;
    margin-left: 1rem;
    font-size: 22px;
    font-weight: 700;
  }
  .button-wrapper__first {
    transform: translateY(-30px);
  }
  .button-wrapper__second {
    margin-bottom: 4rem;
  }
  .button-wrapper a {
    display: none;
  }
}
/* Quote Section Universal */
.quote-container p {
  font-style: italic;
  margin-bottom: 5px;
}

/* Quote Section Phone */
@media screen and (max-width: 1280px) {
  .quote-container {
    margin-top: 4rem;
  }
  .quote-container__quote img {
    float: left;
    margin-right: 5%;
    margin-left: 3%;
  }
  .quote-container__quote--featured {
    display: none;
  }
  .quote-container p {
    font-size: 18px;
  }
  .quote-container small {
    font-size: 16px;
  }
}
@media screen and (max-width: 1280px) and (max-width: 392px) {
  .quote-container small {
    margin-left: 25%;
  }
}
/* Quote Section PC */
@media screen and (min-width: 1280px) {
  .quote-container {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .quote-container__quote {
    width: 35%;
  }
  .quote-container__quote img {
    width: 96px;
    margin-right: 5%;
    float: left;
  }
  .quote-container p {
    margin-top: 0;
    font-size: 18px;
  }
}
/* Card-container phone */
@media screen and (max-width: 1280px) {
  .main-challenges-title {
    margin-bottom: 4rem;
    margin-top: 4rem;
  }
  .card-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    overflow-x: auto;
  }
  .card-container__card {
    box-shadow: #b6bdb5 0px 5px 15px;
    flex: 0 0 300px;
    border-radius: 1rem;
    margin: 0 1rem 5% 1rem;
  }
  .card-container h3 {
    font-weight: 400;
    margin-left: 5%;
    margin-bottom: 0;
  }
  .card-container__star-container {
    margin-top: 0.3rem;
    margin-left: 5%;
  }
  .card-container p {
    margin: 5%;
  }
  .card-container__button {
    background-color: #e3170a;
    border: none;
    width: 11rem;
    height: 2.5rem;
    margin: 0 auto 5% 45%;
    border-radius: 3px;
    color: white;
  }
  .card-container small {
    margin-left: 0.5rem;
  }
}
/* Card Container PC */
@media screen and (min-width: 1280px) {
  .main-challenges-title {
    font-size: 30px;
    margin-bottom: 4rem;
  }
  .card-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
  }
  .card-container__img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    width: 364px;
    height: 219px;
  }
  .card-container__card {
    box-shadow: #b6bdb5 0px 5px 15px;
    flex: 0 0 300px;
    border-radius: 1rem;
    margin: 0 1rem 5% 1rem;
    position: relative;
  }
  .card-container__card:hover {
    box-shadow: #021928 0px 5px 30px;
  }
  .card-container__button {
    background-color: #e3170a;
    border: none;
    width: 11rem;
    height: 2.5rem;
    margin: 0 auto 5% 45%;
    border-radius: 3px;
    color: white;
  }
  .card-container h3 {
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 20px;
    margin-left: 5%;
  }
  .card-container__star-container {
    display: flex;
    align-items: center;
    margin-top: 0.3rem;
    margin-left: 1rem;
    justify-content: space-between;
  }
  .card-container small {
    margin-left: auto;
    margin-right: 5px;
  }
  .card-container p {
    margin: 5%;
  }
}
.api-card-container__card {
  animation: fadeInCards 0.3s ease-in;
}

@keyframes fadeInCards {
  0% {
    opacity: 0;
    scale: 0.7;
  }
  60% {
    scale: 1.01;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}

/*# sourceMappingURL=main.css.map */
