@font-face {
    font-family: 'Helios';
    src: local('Helios Ultra Compressed'), url('HeliosUltraCompressedC.ttf');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helios', sans-serif;
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
}

.container {
    max-width: 100vw;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    background: white;
    padding: 5px 20px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;

}

.logo {
    height: 100%;
    object-fit: contain;
}

.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.first-section {
    padding: 40px 0 0;
    text-align: center;
    margin: 0 auto;
    background: url('./back.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main-title {
    padding: 0 20px;
    font-size: 50px;
    font-weight: bold;
    line-height: .9;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);

}

.description {
    font-size: .9rem;
    line-height: 1.5;
    margin-bottom: 0px;
    opacity: 0.95;
    font-weight: 300;
    font-family: 'Roboto';
    font-style: italic;
    padding: 0 30px;
}

.agent-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 310px;
    padding-bottom: 70px;
}

.agent-section::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('./1.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.agent-section::after {
    content: '';
    position: absolute;
    z-index: 0;
    bottom: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.0));
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.cta-button {
    z-index: 2;
    background: linear-gradient(to right, #fb4e4e, #650000);
    color: white;
    border: none;
    padding: 16px 50px;
    text-transform: uppercase;
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
    transition: all 0.3s ease;
    letter-spacing: 1px;
    width: 100%;
    max-width: 280px;
}

.cta-button:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.5);
}

.cta-button:active {
    transform: translateY(0);
}


.slider-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 30px 0;
    background: #e2e1e1;
}

.slider-track {
    display: inline-block;
    animation: scroll 110s linear infinite;
}

.slider-img {
    background: white;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
    height: 88px;
    width: 117px;
    margin-right: 30px;
    vertical-align: middle;
}

.slider-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.block-container {
    text-align: center;
    background: linear-gradient(to bottom, rgba(208, 208, 208, 0.3), rgba(255, 255, 255, 1)), url("./back.svg");
    background-repeat: repeat;
    background-size: contain;
    padding: 40px 0;
}

footer {
    width: 100%;
    /*height: 80px;*/
}

footer img {
    object-fit: contain;
    width: 100%;
}


.second-section {
    background: url("./back.svg");
    background-repeat: repeat;
    background-size: contain;
    padding: 25px 0 45px;
}

.second-subtitle {
    background: linear-gradient(to right, #fc5252, #6a0808);
    border-radius: 25px;
    padding: 7px 15px;
    margin: 0 12px 15px;
    font-family: "Roboto";
    text-transform: uppercase;
    font-size: 1rem;
}

.second-title {
    color: #072a4a;
    font-size: 50px;
    font-weight: bold;
    line-height: .9;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 30px 35px;
    text-align: center;
}

.quiz-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0 20px;
}

.quiz-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.quiz-question {
    text-transform: uppercase;
    margin-bottom: 7px;
    color: #0c0c0c;
    font-family: 'Roboto';
    font-weight: 500;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.slider-wrapper:hover .slider-track {
    animation-play-state: paused;
}


.select-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.custom-select {
    position: relative;
    background: #c5c5c5;
    border: none;
    border-radius: 25px;
    padding: 15px 50px 15px 20px;
    font-size: 16px;
    font-style: italic;
    color: #333;
    cursor: pointer;
    appearance: none;
    width: 100%;
    outline: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 18px;
    color: #333;
}

.custom-select:focus {
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.custom-select option {
    background: white;
    color: #333;
    padding: 10px;
    font-style: normal;
}

.third-section {

}

.third-top {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: url("./back.png");
    background-size: cover;
    background-position: top center;
    background-repeat: repeat;
}

.third-subtitle {
    color: white;
    text-transform: uppercase;
    font-size: 1rem;
    text-align: center;
    font-family: 'Roboto';
    margin: 0 auto;
}

.third-sub-bar {
    background: linear-gradient(to right, #4d55fa, #001665);
    margin: 25px 10px;
    height: 5px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.4);
}

.third-title {
    color: white;
    font-size: 50px;
    font-weight: bold;
    line-height: .9;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
}

.third-form {
    padding: 45px 0;
}

.form-container {
    margin: 0 auto;
    background: white;
    padding: 0 30px;
    border-radius: 15px;
}

.input-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 18px 20px;
    border: none;
    border-radius: 25px;
    background-color: #c5c5c5;
    font-size: 16px;
    font-style: italic;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

#first {
    display: block;
}

#second {
    display: none;
}

#third {
    display: none;
}

.form-input::placeholder {
    color: #333;
    font-style: italic;
}

.form-input:focus {
    background-color: #b8b8b8;
}

.form-input:not(:placeholder-shown) {
    font-style: normal;
}