/* [project]/src/components/homeSection_1/section_1.scss.css [app-client] (css) */
.home_section_1 {
  justify-content: center;
  align-items: center;
  max-width: 1366px;
  min-height: 75vh;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.home_section_1 #background_image {
  z-index: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.home_section_1 h1 {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  font-size: 40px;
  font-weight: 600;
  position: relative;
}

.home_section_1 h1:first-child {
  background: linear-gradient(to right, #ff8a00, #e52e71, #1e90ff);
  color: #0000;
  text-transform: uppercase;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: bolder;
}

.home_section_1 h1 svg {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.home_section_1 .cent {
  justify-content: center;
  margin-top: 40px;
  display: flex;
}

.home_section_1 .cent a {
  color: #fff;
  background-color: #ff8a00;
  border-radius: 18px;
  padding: 15px 30px;
  transition: all .2s;
  position: relative;
}

.home_section_1 .cent a:hover {
  background-color: #e67f0b;
}

@media screen and (width <= 500px) {
  .home_section_1 h1 {
    width: 343px;
    font-size: 25px;
  }
}


/* [project]/src/components/tests/tests.scss.css [app-client] (css) */
.tests-container {
  background-color: #f8f9f4;
}

.tests-container .tests-container-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 70px 100px;
}

.tests-container .tests-container-inner h1 {
  justify-content: space-between;
  font-weight: 500;
  display: flex;
}

.tests-container .tests-container-inner h1 a {
  color: #000;
  align-items: center;
  font-size: 16px;
  display: flex;
}

.tests-container .tests-container-inner h1 a:hover svg {
  transform: translateX(5px);
}

.tests-container .tests-container-inner h1 a svg {
  transition: all .2s;
  width: 20px !important;
}

.tests-container .tests-container-inner .tests-content {
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 20px;
  display: grid;
}

.tests-container .tests-container-inner .tests-content .test-card {
  background-color: #fff;
  border-radius: 15px;
  width: 100%;
  max-width: 280.25px;
  height: 300px;
  transition: all .2s;
  box-shadow: 0 2px 8px #0000001a;
}

.tests-container .tests-container-inner .tests-content .test-card:first-child .card-number, .tests-container .tests-container-inner .tests-content .test-card:first-child button {
  background-color: #fd8b00;
}

.tests-container .tests-container-inner .tests-content .test-card:nth-child(2) .card-number, .tests-container .tests-container-inner .tests-content .test-card:nth-child(2) button {
  background-color: #ffcd00;
}

.tests-container .tests-container-inner .tests-content .test-card:nth-child(3) .card-number, .tests-container .tests-container-inner .tests-content .test-card:nth-child(3) button {
  background-color: #ff3b2f;
}

.tests-container .tests-container-inner .tests-content .test-card:nth-child(4) .card-number, .tests-container .tests-container-inner .tests-content .test-card:nth-child(4) button {
  background-color: #fa2f57;
}

.tests-container .tests-container-inner .tests-content .test-card:nth-child(5) .card-number, .tests-container .tests-container-inner .tests-content .test-card:nth-child(5) button {
  background-color: #33acce;
}

.tests-container .tests-container-inner .tests-content .test-card:nth-child(6) .card-number, .tests-container .tests-container-inner .tests-content .test-card:nth-child(6) button {
  background-color: #37aaec;
}

.tests-container .tests-container-inner .tests-content .test-card:hover {
  box-shadow: 0 2px 8px #0000;
}

.tests-container .tests-container-inner .tests-content .test-card:hover .card-bottom button span:first-child {
  opacity: 0;
  transform: translateX(20px);
}

.tests-container .tests-container-inner .tests-content .test-card:hover .card-bottom button span:last-child {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.tests-container .tests-container-inner .tests-content .test-card .card-top {
  flex-direction: column;
  justify-content: space-between;
  height: 70%;
  display: flex;
}

.tests-container .tests-container-inner .tests-content .test-card .card-top .card-top-top {
  justify-content: space-between;
  align-items: flex-start;
  padding: 22px 25px 0;
  display: flex;
}

.tests-container .tests-container-inner .tests-content .test-card .card-top .card-top-top .card-number {
  color: #fff;
  border-radius: 17px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 36px;
  font-weight: 600;
  transition: transform .2s;
  display: flex;
  transform: rotate(0);
}

.tests-container .tests-container-inner .tests-content .test-card .card-top .card-top-top .card-number.rotate-left {
  transform: rotate(-15deg);
}

.tests-container .tests-container-inner .tests-content .test-card .card-top .card-top-top .card-number.rotate-right {
  transform: rotate(15deg);
}

.tests-container .tests-container-inner .tests-content .test-card .card-top .card-top-top .new {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  opacity: 0;
  background-color: #ff0000be;
  border-radius: 14px;
  padding: 2px 10px;
  font-size: 11px;
  animation: 1s infinite alternate new;
}

.tests-container .tests-container-inner .tests-content .test-card .card-top .card-top-top .new.active {
  opacity: 1;
}

@keyframes new {
  100% {
    background-color: #f008;
  }
}

.tests-container .tests-container-inner .tests-content .test-card .card-top .card-top-bottom {
  color: #000;
  white-space: nowrap;
  text-overflow: ellipsis;
  border-bottom: 1px solid #e5e7eb;
  padding: 0 20px 10px;
  font-size: 22px;
  font-weight: 500;
  overflow: hidden;
}

.tests-container .tests-container-inner .tests-content .test-card .card-bottom {
  color: #5b5b5b;
  justify-content: center;
  align-items: center;
  height: 30%;
  padding: 0 25px;
  font-weight: 400;
  display: flex;
}

.tests-container .tests-container-inner .tests-content .test-card .card-bottom button {
  cursor: pointer;
  color: #fff;
  border: none;
  border-radius: 15px;
  padding: 15px 25px;
  font-size: 15px;
  position: relative;
  overflow: hidden;
}

.tests-container .tests-container-inner .tests-content .test-card .card-bottom button span {
  display: block;
}

.tests-container .tests-container-inner .tests-content .test-card .card-bottom button span:first-child {
  transition: transform .3s;
  position: relative;
}

.tests-container .tests-container-inner .tests-content .test-card .card-bottom button span:last-child {
  opacity: 0;
  text-align: center;
  width: 100%;
  transition: opacity .3s, transform .3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-60%, -50%);
}

.tests-container .tests-container-inner .tests-content .test-card .card-bottom button:hover {
  opacity: .9;
}

@media screen and (width <= 500px) {
  .tests-container .tests-container-inner {
    padding: 70px 20px;
  }

  .tests-container .tests-container-inner h1 {
    align-items: center;
    font-size: 20px;
    display: flex;
  }

  .tests-container .tests-container-inner h1 a {
    font-size: 15px;
  }

  .tests-container .tests-container-inner .tests-content {
    grid-template-columns: repeat(1, 1fr);
  }

  .tests-container .tests-container-inner .tests-content .test-card {
    max-width: unset;
  }
}


/* [project]/src/components/homeTestsComp/layout.scss.css [app-client] (css) */
@keyframes shimmer {
  0% {
    background-position: -468px 0;
  }

  100% {
    background-position: 468px 0;
  }
}

.skeleton, .skeleton-link, .skeleton-tests .skeleton-footer .skeleton-line, .skeleton-tests .skeleton-text .skeleton-line, .skeleton-tests .skeleton-image {
  background: linear-gradient(to right, #f0f0f0 8%, #e0e0e0 18%, #f0f0f0 33%) 0 0 / 800px 104px;
  border-radius: 4px;
  animation: 1.5s linear infinite shimmer;
}

.skeleton-tests {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  display: grid;
}

.skeleton-tests .skeleton-test-card {
  background: #fff;
  border-radius: 8px;
  height: 300px;
  overflow: hidden;
  box-shadow: 0 2px 8px #0000001a;
}

.skeleton-tests .skeleton-image {
  width: 100%;
  height: 150px;
}

.skeleton-tests .skeleton-text {
  padding: 15px;
}

.skeleton-tests .skeleton-text .skeleton-line {
  height: 12px;
  margin-bottom: 8px;
}

.skeleton-tests .skeleton-text .skeleton-line:first-child {
  width: 80%;
}

.skeleton-tests .skeleton-text .skeleton-line:last-child {
  width: 60%;
}

.skeleton-tests .skeleton-footer {
  padding: 0 15px 15px;
}

.skeleton-tests .skeleton-footer .skeleton-line {
  width: 40%;
  height: 12px;
}

.skeleton-link {
  vertical-align: middle;
  align-items: center;
  gap: 4px;
  width: 150px;
  height: 24px;
  display: inline-flex;
}

.skeleton-link svg, .skeleton-link span {
  visibility: hidden;
}

@media screen and (width <= 500px) {
  .skeleton, .skeleton-tests .skeleton-image, .skeleton-tests .skeleton-text .skeleton-line, .skeleton-tests .skeleton-footer .skeleton-line, .skeleton-link {
    grid-template-columns: repeat(1, minmax(250px, 1fr));
  }
}


/* [project]/src/components/modal/modal.scss.css [app-client] (css) */
.modal-overlay {
  z-index: 1000;
  backdrop-filter: blur(4px);
  background: #0009;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  animation: .3s fadeIn;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.modal-overlay .modal-content {
  background: #fff;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  padding: 30px;
  animation: .4s slideUp;
  position: relative;
  box-shadow: 0 10px 30px #0003;
}

.modal-overlay .modal-content .modal-close-btn {
  cursor: pointer;
  background: #f0f0f0;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 14px;
  transition: all .3s;
  display: flex;
  position: absolute;
  top: 15px;
  right: 15px;
}

.modal-overlay .modal-content .modal-close-btn:hover {
  background: #e0e0e0;
  transform: rotate(90deg);
}

.modal-overlay .modal-content .modal-body .test-confirmation-modal {
  text-align: center;
}

.modal-overlay .modal-content .modal-body .test-confirmation-modal h2 {
  color: #333;
  margin-bottom: 15px;
  font-size: 24px;
}

.modal-overlay .modal-content .modal-body .test-confirmation-modal p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.modal-overlay .modal-content .modal-body .test-confirmation-modal .test-details {
  text-align: left;
  background: #f9f9f9;
  border-radius: 12px;
  margin-bottom: 25px;
  padding: 15px;
}

.modal-overlay .modal-content .modal-body .test-confirmation-modal .test-details p {
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 15px;
  display: flex;
}

.modal-overlay .modal-content .modal-body .test-confirmation-modal .test-details p:last-child {
  margin-bottom: 0;
}

.modal-overlay .modal-content .modal-body .test-confirmation-modal .test-details p span {
  color: #444;
  font-weight: 600;
}

.modal-overlay .modal-content .modal-body .test-confirmation-modal .modal-actions {
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  display: grid;
}

.modal-overlay .modal-content .modal-body .test-confirmation-modal .modal-actions button {
  cursor: pointer;
  border-radius: 10px;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all .3s;
}

.modal-overlay .modal-content .modal-body .test-confirmation-modal .modal-actions button.cancel-button {
  color: #666;
  background: #f5f5f5;
  border: 1px solid #ddd;
}

.modal-overlay .modal-content .modal-body .test-confirmation-modal .modal-actions button.cancel-button:hover {
  background: #eee;
}

.modal-overlay .modal-content .modal-body .test-confirmation-modal .modal-actions button.start-button {
  color: #fff;
  background: #007bff;
  border: none;
}

.modal-overlay .modal-content .modal-body .test-confirmation-modal .modal-actions button.start-button:hover {
  opacity: .9;
  background: #0056b3;
}

.modal-overlay .modal-content .modal-body .test-confirmation-modal .modal-actions button.start-button:disabled {
  cursor: not-allowed;
  background: #ccc;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*# sourceMappingURL=src_components_21127285._.css.map*/