@charset "UTF-8";
@media screen and (min-width: 640px) {
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
  }
  .test_letter {
    margin-top: 4vw;
    border-radius: 2vw;
    display: block;
  }
  label {
    line-height: 25px;
    font-size: 15px;
    width: 100%;
    display: block;
    margin: 0 auto;
    text-align: left;
  }
  label .must {
    color: white;
    background-color: #ff8400;
    padding: 0px 3px;
    font-size: 13px;
  }
  label .cummon {
    width: 100%;
    height: 30px;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
    background-color: white;
    -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
            box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: 4px solid white;
    border-radius: 5px;
  }
  label .text_area {
    width: 100%;
    display: block;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
    height: 40vh;
    border: 4px solid #028275;
    -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
            box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 5px;
  }
  label .drop {
    height: 25px;
    display: block;
    width: 30%;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  .submit {
    display: block;
    cursor: pointer;
    width: 40%;
    font-size: 16px;
    margin: 0 auto;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
    color: #17b7ba;
    border-radius: 30px;
    margin-top: 2vw;
    padding: 15px 0;
    background-color: white;
    border: 2px solid white;
  }
  .slide-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  .slide {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin: 30px 0;
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    -webkit-animation: slideIn 0.8s ease-out forwards;
            animation: slideIn 0.8s ease-out forwards;
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  @-webkit-keyframes slideIn {
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @keyframes slideIn {
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  .slide:nth-child(even) {
    background-color: white;
  }
  h1 {
    color: #2d3436;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  }
  h2 {
    color: #2d3436;
    font-size: 1.8em;
    margin-bottom: 25px;
    border-left: 5px solid #00b894;
    padding-left: 20px;
  }
  h3 {
    color: #17b7ba;
    font-size: 1.4em;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .level-badge {
    background: linear-gradient(45deg, #79fdc2, #06a560);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    margin-right: 15px;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  .level-badge.intermediate {
    background: linear-gradient(45deg, #00cec9, #55efc4);
  }
  .level-badge.advanced {
    background: linear-gradient(45deg, #00cec9, #55efc4);
  }
  .question-box {
    background: #f8fffe;
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .question-box p {
    font-size: 1.4vw;
  }
  .question-box:hover {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  .options {
    margin: 15px 0;
  }
  .option {
    padding: 8px 15px;
    margin: 5px 0;
    background: #f7f7f7;
    padding: 1vw 0;
    padding-left: 1vw;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .option:hover {
    background: #fdcb6e;
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  .accordion-toggle {
    background: linear-gradient(45deg, #00b894, #55efc4);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.5vw;
    margin: 15px 0 10px 0;
    width: 100%;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-weight: bold;
  }
  .accordion-toggle:hover {
    background: linear-gradient(45deg, #00a085, #4dd0a1);
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  .accordion-toggle::after {
    content: '▼';
    font-size: 0.8em;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .accordion-toggle.active::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease;
    transition: max-height 0.3s ease;
    background: #d1f2eb;
    border-radius: 0 0 8px 8px;
  }
  .accordion-content.active {
    max-height: 500px;
  }
  .accordion-inner {
    padding: 15px;
  }
  .correct-answer {
    background: linear-gradient(45deg, #00b894, #55efc4);
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 1.5vw;
  }
  .explanation {
    background: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-radius: 8px;
  }
  .results-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
  }
  .result-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .result-card:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  .result-score {
    font-size: 1.5em;
    font-weight: bold;
    color: #2c3e50;
  }
  .result-level {
    font-size: 1.2em;
    margin: 10px 0;
    padding: 8px 15px;
    border-radius: 20px;
    color: white;
  }
  .beginner {
    background: linear-gradient(45deg, #fd79a8, #fdcb6e);
  }
  .intermediate {
    background: linear-gradient(45deg, #00cec9, #55efc4);
  }
  .advanced {
    background: linear-gradient(45deg, #74b9ff, #0984e3);
  }
  .expert {
    background: linear-gradient(45deg, #a29bfe, #6c5ce7);
  }
  .cta-section {
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    background-color: #17b7ba;
  }
  .cta-button {
    background: linear-gradient(45deg, #fd79a8, #fdcb6e);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1em;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
  }
  .cta-button:hover {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
    -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
  .navigation {
    position: fixed;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 1000;
  }
  .nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 10px 0;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .nav-dot.active {
    background: white;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  .stats-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin: 30px 0;
    text-align: center;
  }
  .stat-item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 20px;
  }
  .stat-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #17b7ba;
  }
  .stat-label {
    color: #636e72;
    margin-top: 10px;
  }
}

@media screen and (min-width: 640px) and (max-width: 768px) {
  .slide {
    padding: 20px;
    margin: 15px 0;
  }
  h1 {
    font-size: 2em;
  }
  .navigation {
    display: none;
  }
  .accordion-toggle {
    font-size: 0.9em;
    padding: 10px 15px;
  }
}

@media screen and (max-width: 640px) {
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
  }
  label {
    line-height: 25px;
    font-size: 15px;
    width: 90%;
    display: block;
    margin: 0 auto;
    text-align: left;
  }
  label .must {
    color: white;
    background-color: #ff8400;
    padding: 0px 3px;
    font-size: 13px;
  }
  label .cummon {
    width: 100%;
    height: 30px;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
    background-color: white;
    -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
            box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: 4px solid white;
    border-radius: 5px;
  }
  label .text_area {
    width: 100%;
    display: block;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
    height: 40vh;
    border: 4px solid #028275;
    -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
            box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 5px;
  }
  label .drop {
    height: 25px;
    display: block;
    width: 30%;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  .submit {
    display: block;
    cursor: pointer;
    width: 80%;
    font-size: 16px;
    margin: 0 auto;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
    color: #17b7ba;
    border-radius: 30px;
    margin-top: 2vw;
    padding: 15px 0;
    background-color: white;
    border: 2px solid white;
  }
  .slide-container {
    margin: 0 auto;
    width: 98%;
  }
  .slide {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    -webkit-animation: slideIn 0.8s ease-out forwards;
            animation: slideIn 0.8s ease-out forwards;
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  @-webkit-keyframes slideIn {
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @keyframes slideIn {
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  .slide:nth-child(even) {
    background-color: white;
  }
  h1 {
    color: #2d3436;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  }
  h2 {
    color: #2d3436;
    font-size: 1.5em;
    margin-bottom: 1em;
  }
  h3 {
    color: #17b7ba;
    font-size: 1.2em;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .level-badge {
    background: linear-gradient(45deg, #79fdc2, #06a560);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    margin-right: 15px;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  .level-badge.intermediate {
    background: linear-gradient(45deg, #00cec9, #55efc4);
  }
  .level-badge.advanced {
    background: linear-gradient(45deg, #00cec9, #55efc4);
  }
  input {
    display: inline-block;
  }
  .question-box {
    background: #f8fffe;
    border-radius: 10px;
    padding: .5em;
    margin: 20px 0;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .question-box p {
    font-size: 1em;
  }
  .question-box:hover {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  .options {
    margin: 15px 0;
  }
  .option {
    padding: 8px 15px;
    margin: 5px 0;
    background: #f7f7f7;
    padding: 1vw 0;
    padding-left: 1vw;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .option:hover {
    background: #fdcb6e;
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  .accordion-toggle {
    background: linear-gradient(45deg, #00b894, #55efc4);
    color: white;
    border: none;
    padding: 20px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2em;
    margin: 15px 0 10px 0;
    width: 100%;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-weight: bold;
  }
  .accordion-toggle:hover {
    background: linear-gradient(45deg, #00a085, #4dd0a1);
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  .accordion-toggle::after {
    content: '▼';
    font-size: 0.8em;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .accordion-toggle.active::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease;
    transition: max-height 0.3s ease;
    background: #d1f2eb;
    border-radius: 0 0 8px 8px;
  }
  .accordion-content.active {
    max-height: 500px;
  }
  .accordion-inner {
    padding: 15px;
  }
  .correct-answer {
    background: linear-gradient(45deg, #00b894, #55efc4);
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 1em;
  }
  .explanation {
    background: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-radius: 8px;
  }
  .results-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
  }
  .result-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .result-card:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  .result-score {
    font-size: 1.5em;
    font-weight: bold;
    color: #2c3e50;
  }
  .result-level {
    font-size: 1.2em;
    margin: 10px 0;
    padding: 8px 15px;
    border-radius: 20px;
    color: white;
  }
  .beginner {
    background: linear-gradient(45deg, #fd79a8, #fdcb6e);
  }
  .intermediate {
    background: linear-gradient(45deg, #00cec9, #55efc4);
  }
  .advanced {
    background: linear-gradient(45deg, #74b9ff, #0984e3);
  }
  .expert {
    background: linear-gradient(45deg, #a29bfe, #6c5ce7);
  }
  .cta-section {
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background-color: #17b7ba;
    margin: 0 auto;
  }
  .cta-section h2 {
    border-left: 0;
    text-align: center;
  }
  .cta-section p {
    text-align: left;
  }
  .cta-ssection {
    color: white;
    text-align: center;
    padding: 20px 10px;
    border-radius: 15px;
    background-color: #17b7ba;
  }
  .cta-ssection h2 {
    border-left: 0;
    text-align: left;
    font-size: 1em;
    text-align: center;
  }
  .cta-ssection .tep {
    text-align: left;
    display: none;
  }
  .cta-button {
    background: linear-gradient(45deg, #fd79a8, #fdcb6e);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1em;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
  }
  .cta-button:hover {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
    -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
  .navigation {
    position: fixed;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 1000;
  }
  .nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 10px 0;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .nav-dot.active {
    background: white;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  .stats-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin: 30px 0;
    text-align: center;
  }
  .stat-item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 20px;
  }
  .stat-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #17b7ba;
  }
  .stat-label {
    color: #636e72;
    margin-top: 10px;
  }
}

@media screen and (max-width: 640px) and (max-width: 768px) {
  .slide {
    padding: 20px;
    margin: 15px 0;
  }
  h1 {
    font-size: 2em;
  }
  .navigation {
    display: none;
  }
  .accordion-toggle {
    font-size: 0.9em;
    padding: 10px 15px;
  }
}
/*# sourceMappingURL=white.css.map */