body,
html {
    padding: 0;
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    background: linear-gradient(120deg, #2b5876, #4e4376);
    background-size: cover;
    min-height: 100vh;
    color: #333
}

* {
    box-sizing: border-box
}

h1 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: .8rem
}

p {
    margin-bottom: 1.2rem;
    line-height: 1.6
}

a {
    color: #0092d0;
    text-decoration: none;
    transition: all .2s ease
}

a:hover {
    text-decoration: underline;
    color: #0080b8
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0
}

@keyframes gradientAnimation {
    0% {
        background-position: 0 50%
    }
    50% {
        background-position: 100% 50%
    }
    to {
        background-position: 0 50%
    }
}

:focus {
    outline: 2px solid #0092d0;
    outline-offset: 2px
}

.Header_wlogo__limeK {
    cursor: pointer;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    transition: transform .3s ease
}

.Header_wlogo__limeK:hover {
    transform: scale(1.05)
}

.Header_wlogo__limeK>img {
    width: 2.4rem;
    height: 1.1rem
}

.Header_wmenu__kt_9U {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem
}

.Header_nav__tNWGY {
    background: #fff;
    background-clip: padding-box;
    border-radius: .75rem;
    border: 1px solid rgba(23, 24, 26, .08);
    display: flex;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    overflow: hidden
}

.Header_nav__tNWGY>li {
    cursor: pointer;
    padding: .8rem 1.2rem;
    border-right: 1px solid rgba(23, 24, 26, .08);
    transition: all .25s ease
}

.Header_nav__tNWGY>li:hover {
    background-color: rgba(0, 0, 0, .02);
    transform: translateY(-2px);
    font-weight: 500;
    color: #000
}

.svgs_lists__laBTc {
    display: flex;
    justify-content: space-between;
    text-align: left;
    font-weight: 600;
    margin-bottom: .5rem
}

.svgs_lists__laBTc em {
    font-size: .8rem;
    font-weight: 400;
    color: rgb(29, 29, 29)
}

.Main_main__7rAfL {
    display: block;
    margin: 5rem auto 0
}

.Main_panel__bTH7H {
    position: absolute;
    left: 5rem;
    background: #fff;
    color: rgb(48, 48, 48);
    font-size: .9rem;
    line-height: 1.5rem;
    border-radius: .75rem;
    border: 1px solid rgba(23, 24, 26, .08);
    width: 18rem;
    height: auto;
    min-height: 33rem;
    text-align: center;
    padding: 1.5rem;
    z-index: 4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: transform .3s ease, box-shadow .3s ease
}

.Main_panel__bTH7H:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12)
}

.Main_info__Lv06j {
    position: absolute;
    left: 26rem;
    top: 6rem;
    font-family: Inter, Open Sans, sans-serif;
    color: #fff;
    display: block;
    margin: 4rem auto 0;
    width: 25rem
}

.Main_infoborder__VoTc1 {
    border-bottom: 4px solid rgb(223, 46, 46);
    width: 50%;
    margin-bottom: 2rem;
    border-radius: 2px
}

.Main_startbutton__IiCar {
    background-color: rgb(223, 46, 46);
    padding: 1rem 1.5rem;
    width: 10rem;
    text-align: center;
    cursor: pointer;
    border-radius: .5rem;
    font-weight: 600;
    transition: all .25s ease;
    box-shadow: 0 4px 12px rgba(223, 46, 46, .3)
}

.Main_startbutton__IiCar:hover {
    background-color: rgb(195, 35, 35);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(223, 46, 46, .4)
}

.Main_dbutton__hBbo2 {
    cursor: pointer;
    background-color: #0092d0;
    border-radius: .5rem;
    width: 70%;
    color: #fff;
    font-weight: 600;
    padding: .8rem 1.2rem;
    margin: .75rem auto;
    transition: all .25s ease;
    box-shadow: 0 4px 12px rgba(0, 146, 208, .2)
}

.Main_dbutton__hBbo2:hover {
    background-color: #0080b8;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 146, 208, .3)
}

@media only screen and (max-width:767px) {
    .Main_panel__bTH7H {
        position: relative;
        left: auto;
        margin: 0 auto;
        top: 11rem;
        width: 85%;
        max-width: 18rem
    }
    .Main_info__Lv06j {
        left: 4rem;
        top: 6rem;
        margin: 0 auto;
        width: 85%;
        max-width: 25rem;
        padding: 0 1rem
    }
}

.Modal_Modal__R1nRK {
    position: fixed;
    z-index: 200;
    border: none;
    border-radius: .75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    background-color: white;
    padding: 2.5rem;
    top: 15%;
    left: 30%;
    width: 35%;
    height: auto;
    transition: all .4s cubic-bezier(.165, .84, .44, 1)
}

.Modal_Modal__R1nRK img {
    display: block;
    margin: 1.5rem 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: .5rem
}

.Modal_Modal__R1nRK form {
    margin: 2.5rem auto 0
}

.Modal_Modal__R1nRK form input {
    display: block;
    width: 100%;
    height: 3.5rem;
    margin: 1rem 0;
    padding: .75rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    border: 1px solid #e2e8f0;
    border-radius: .5rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.Modal_Modal__R1nRK form input:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .1)
}

.Modal_Modal__R1nRK button {
    background-color: #0067b8;
    border: none;
    border-radius: .5rem;
    padding: .75rem 1.5rem;
    color: white;
    cursor: pointer;
    font-weight: 500;
    transition: all .2s ease;
    box-shadow: 0 2px 5px rgba(0, 103, 184, .2);
    margin-top: .5rem
}

.Modal_Modal__R1nRK button:hover {
    background-color: #005aa3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 103, 184, .3)
}

.Modal_Modal__R1nRK button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 103, 184, .2)
}

.Modal_ModalOpen__gsCQs {
    animation: Modal_openModal__kzax6 .5s cubic-bezier(.25, .46, .45, .94) forwards
}

.Modal_ModalClosed__CxKT6 {
    animation: Modal_closeModal__Xq1zm .5s cubic-bezier(.55, .085, .68, .53) forwards
}

.Modal_error__LX_dK {
    display: block;
    margin: .5rem 0 1rem;
    color: #e53e3e;
    font-size: .875rem;
    font-weight: 500
}

@keyframes Modal_openModal__kzax6 {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(.95)
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

@keyframes Modal_closeModal__Xq1zm {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
    to {
        opacity: 0;
        transform: translateY(-30px) scale(.95)
    }
}

@media (max-width:850px) {
    .Modal_Modal__R1nRK {
        width: 60%;
        left: 10%;
        padding: 2rem
    }
}

@media (max-width:450px) {
    .Modal_Modal__R1nRK {
        width: 90%;
        left: 5%;
        top: 10%;
        padding: 1.75rem
    }
    .Modal_Modal__R1nRK form input {
        height: 3rem;
        margin: .75rem 0
    }
}

.Backdrop_Backdrop__UjsgW {
    display: block;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    transition: all .3s ease-in-out;
    animation: Backdrop_fadeIn__TANDO .3s ease-out forwards
}

@keyframes Backdrop_fadeIn__TANDO {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.Backdrop_BackdropHiding__lIsqm {
    animation: Backdrop_fadeOut__JjQPj .3s ease-in forwards
}

@keyframes Backdrop_fadeOut__JjQPj {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

.page_vid__iU1QG {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0
}