@import url('../css2');


* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #000;
}

.iti {
    width: 100%;
}

.start-page__content {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 28px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    max-width: 330px;
    width: 100%;
    margin-bottom: 36px;
    height: 65px;
    flex-shrink: 0;
}

.heading-primary {
    font-size: 36px;
    font-weight: 700;
    line-height: 41.4px;
    text-align: center;
    max-width: 996px;
    margin: 0 auto;
}

.main-content__box {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 110px;
    justify-content: center;
    max-width: 1026px;
    margin: 54px auto;
}

.main-content__info {
    max-width: 452px;
}

.heading-secondary {
    font-size: 24px;
    font-weight: 700;
    line-height: 27.6px;
    margin-bottom: 16px;
}

.text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 32px;
}

.text strong {
    font-size: 20px;
    font-weight: 700;
    line-height: 20.7px;
    margin-bottom: 32px;
}

.btn-primary {
    font-size: 16px;
    font-weight: 700;
    line-height: 19.36px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    padding: 8px;
    background: #005fae;
    border-radius: 14px;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all .2s linear;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 200px;
}

@media (hover: hover) {
    .btn-primary:hover  {
        scale: 1.03;
    }
}

@media (hover: none) {
    .btn-primary:active  {
        scale: 1.03;
    }
}

.swiper-container {
    margin: 0 auto;
    max-width: 996px;
    overflow-x: hidden;
    position: relative;
    padding-top: 36px;
    padding-bottom: 60px;
}

.swiper-slide{
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-wrapper {
    align-items: center;
}

.swiper-slide img {
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.8);
  }  

.custom-button-prev, 
.custom-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    cursor: pointer;
}

.custom-button-prev {
    left: 77px;
}

.custom-button-next {
    right: 77px;
}

img, video {
    max-width: 100%;
}

.main-content__video {
    max-width: 500px;
    position: relative;
}

.main-content__video video {
    width: 100%;
    height: 100%;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    border: none;
    background: none;
}

.quiz-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    box-shadow: 2px 2px 16px 0px #0000004D;
    z-index: 99999;
    padding: 32px;
    max-width: 795px;
    width: calc(100% - 30px);
    display: none;
}

.quiz-question {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    color: #000;
    /* margin: 0 auto; */
    margin-bottom: 16px;
    max-width: 545px;
}

.quiz-info {
    display: flex;
    gap: 52px;
    margin: 40px 0px;
    align-items: flex-start;
}

.quiz-options {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option {
    padding: 8px;
    border: 1px solid #E6E6E6;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.quiz-option p {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    color: #000;
    padding: 4px;
}

.quiz-option input[type="radio"] {
    display: none; 
  }
  
  .quiz-option input[type="radio"] {
    display: none; 
}

.custom-radio {
    width: 14px;
    min-width: 14px;
    height: 14px;
    border: 1px solid #DCDFE6;
    background-color: #fff;
    display: inline-block;
    position: relative;
    border-radius: 2px;
    transition: background-color 0.2s, border-color 0.2s;
}

.quiz-option input[type="radio"]:checked + .custom-radio {
    background-color: #005fae; 
    border-color: #005fae;
}

.quiz-option input[type="radio"]:checked + .custom-radio::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-image: url('../index/check.svg'); 
    background-size: cover;
    background-position: center;
}

.quiz-btns {
    display: flex;
    gap: 44px;
    justify-content: center;
}

.quiz-btn {
    padding: 12px 8px 12px 36px;
    background: #CF971C;
    border-radius: 40px;
    border: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.quiz-btn.prev-btn {
    padding: 12px 36px 12px 8px;
}

.quiz-btn:disabled {
    background: #BDBDBD;
    cursor: auto;
}

.quiz-progress {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    margin: 0 auto;
    width: 100%;
}

.close-btn {
    padding: 0px;
    border: 0px;
    background: none;
    position: absolute;
    top: 8px;
    right: 8px;
    cursor: pointer;
}

body.no-scroll {
    overflow: hidden;
}

.quiz-question-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.contact-popup {
    max-width: 820px;
    width: calc(100% - 30px);
    background: #fff;
    box-shadow: 2px 2px 16px 0px #0000004D;
    border-radius: 4px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    align-items: center;
    display: none;
}

.contact-info {
    color: #4C4C4C;
    width: 55%;
    padding: 160px 60px 175px 60px;
}

.contact-info img {
    margin-bottom: 16px;
}

.contact-heading {
    font-size: 20px;
    font-weight: 700;
    line-height: 24.2px;
    margin-bottom: 8px;
    color: #000;
}

.contact-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    color: #000;
}

.contact-form-box {
    width: 45%;
    padding: 121px 40px;
    color: #000000;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-input {
    background: #EDEDED;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    padding: 12px 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
    color: #000000;
    width: 100%;
}

.contact-input::placeholder {
    color: #000000;
}

.checkbox-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

.checkbox-group p {
    font-size: 12px;
    font-weight: 500;
    line-height: 14.52px;
}

.contact-btn {
    font-size: 16px;
    font-weight: 600;
    line-height: 23.12px;
    text-align: center;
    width: 100%;
    padding: 12px;
    box-shadow: 0px 4px 4px 0px #00000040;
    cursor: pointer;
    border: none;
    background: #005fae;
    color: #fff;
    border-radius: 8px;
    text-transform: uppercase;
    margin-top: 20px;
    transition: all .2s linear;
}

@media (hover: hover) {
    .contact-btn:hover  {
        scale: 1.03;
    }
}

@media (hover: none) {
    .contact-btn:active  {
        scale: 1.03;
    }
}

.contact-form-box {
    /* box-shadow: 0px 4px 4px 0px #00000040; */
    border-left: 1px solid #E1E1E1;
}

.quiz-progress {
    display: flex;
    align-items: center;
    gap: 16px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); 
    z-index: 999;
    display: none; 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    -moz-backdrop-filter: blur(20px);
}

.quiz-progress img:last-child {
    /* width: 150px;
    height: auto; */
}

@media(max-width: 992px) {
    .logo {
        margin: 0 auto 20px;
    }

    .main-content__box {
        flex-direction: column;
    }

    .main-content__video {
        max-width: 464px;
        width: 100%;
        height: auto;
    }

    .custom-button-next {
        right: 0px;
    }

    .custom-button-prev {
        left: 0px;
    }
}

@media(max-width: 767px) {
    .quiz-info {
        flex-direction: column;
        align-items: center;
    }

    .quiz-popup {
        max-height: 100vh;
        overflow-y: auto;
        padding: 20px;
    }

    .swiper-slide img {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    }

    .contact-popup {
        flex-direction: column;
        max-height: 100vh;
        overflow-y: auto;
    }

    .contact-info,
    .contact-form-box {
        width: 100%;
        padding: 40px;
    }

    .contact-form-box {
        border-top: 1px solid #E1E1E1;
    }

    .quiz-progress {
        flex-direction: column;
    }

    .start-page__content {
        text-align: center;
    }

    .btn-primary {
        margin: 0 auto;
    }

    .quiz-popup {
        padding-top: 64px;
    }

    .close-btn {
        top: 32px;
    }
}

input[type='checkbox'] {
    accent-color: #005fae; 
}

.slide__img {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    display: block;
}




@media (max-width: 375px) {
    .btn-primary svg {
        display: none;
    }

    .btn-primary {
        line-height: 1.3;
    }
}


.quiz__line {
    min-height: 30px;
}