#section0,
#section1,
#section2,
#section3 {
    background-size: cover;
    background-attachment: fixed;
}

header,
footer {
    position: fixed;
}

footer {
    bottom: 0;
}

.no-js {

}
.content_section {
    width: 100%;
    max-width: 1024px;
    display: flex;
}


.login,
.register {
    color: white;
    padding: 5px 20px;
    text-align: center;
    border: 1px solid white;
    border-radius: 4px;
    margin: 0 10px;
    text-decoration: none;
    cursor: pointer;
    transition: all .5s;
    width: 100px;
}

.login:hover,
.register:hover {
    background-color: white;
    color: black;
}


#section0 {
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

#section0 .content_section {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.text_section {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    font-family: 'Red Hat Display', sans-serif;
}

.text_section .h1 {
	font-size: 70px;
	color: black;
	font-weight: bold;
	background: lavender;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.text_section .h1 span {
    color: white;
}

.text_section .note {
    font-size: 30px;
    color: black;
    max-width: 85%;
    margin: 30px 0 20px;
    font-weight: 400;
}

.text_section .list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 0 16px;
}

.text_section .list li {
    color: white;
    font-size: 16px;
    padding: 10px;
    width: 50%;
    text-align: left;
    position: relative;
    list-style: none;
}


.text_section .list li::before{
    content: '';
    position: absolute;
    background-image: url(https://www.teknei.com/wp-content/uploads/2021/02/check-mark-white.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 13px;
    height: 9px;
    top: 40%;
    left: -5%;
}

.card_section {
    width: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.card_section .bg_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-shadow: 0 0 10px rgba(167, 167, 167, 0.7);
    border-radius: 15px;
    margin: 0 0 15px;
}

.card_section .bg_box:last-of-type {
    margin: 0;
    box-shadow: none;
    padding: 0;
    border-radius: 0px;
}

.card_section .btn {
    width: 100%;
    background-color: black;
    color: white;
    font-size: 14px;
    text-align: center;
    border-radius: 4px;
    padding: 8px 0;
    border: 1px solid white;
    cursor: pointer;
    outline: none;
    transition: all .4s;
}

.card_section .btn:active,
.card_section .btn:focus {
    outline: none;
    box-shadow: none;
}

.card_section .btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}

.card_section .card {
    background: linear-gradient(0deg, #000000, #000000), rgba(255, 255, 255, 0.8);
    border: 0.5px solid #000000;
    box-shadow: inset 0px 0px 30px rgba(255, 255, 255, 0.1), inset 0px 1px 1px rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(50px);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 320px;
    height: 190px;
    padding: 14px 15px;
    font-family: 'OCR A Extended';
}

.card_section .card .card_header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card_section .card_header .logo {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 16px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
}

.card_section .card_header img {
    max-width: 30px;
    margin: 0 5px 0 0;
}

.card_section .card_header .balance {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 16px;
    color: #FFFFFF;
}

.card_section .card .card_number {
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 26px;
    width: 100%;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
    margin: 24px 0 0px;
}

.card_section .card .card_footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card_section .card .ex_date_box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.card_section .card .card_name {
    font-style: normal;
    font-weight: normal;
    font-size: 11px;
    line-height: 11px;
    color: #FFFFFF;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
}

.card_section .card .ex_date {
    font-style: normal;
    font-weight: normal;
    font-size: 19px;
    line-height: 20px;
    color: #FFFFFF;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
}

.card_section .card .cars_type_img {
    max-width: 72px;
}

.card_section .note {
    color: #707070;
    font-size: 13px;
    margin: 10px 0;
}

.range_box {
    width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.range_box .range {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.range_box .range .select {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #c3c3c3;
    transition: all .5s;
}

.range_box .range .select.active {
    background-color: black;
}

.range_box .range hr {
    height: 3px;
    width: 37%;
    background-color: #c3c3c3;
    border: none;
}

.slider-area {
    display: flex;
    align-items: center;
    width: 100%;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.slider-area .slider-title {
    font-size: 16px;
    font-weight: bold;
}

.slider-area-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.slider-area #skip-value-lower,
.slider-area #skip-value-upper {
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-area .noUi-target {
    flex: 1;
    position: relative;
    background: black;
    border-radius: 50px;
}

.slider-area .noUi-target.noUi-horizontal {
    height: 3px;
}

.slider-area .noUi-target .noUi-base,
.slider-area .noUi-target .noUi-connects {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.slider-area .noUi-target .noUi-connects {
    border-radius: 3px;
    overflow: hidden;
    z-index: 0;
}

.slider-area .noUi-target .noUi-connects .noUi-connect {
    height: 100%;
    width: 100%;
    transform-style: preserve-3d;
    transform-origin: 0 0;
    transform-style: flat;
    background-color: #c3c3c3;
}

.slider-area .noUi-target .noUi-origin {
    will-change: transform;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    height: 0;
    width: 100%;
}

.slider-area .noUi-target .noUi-origin .noUi-handle {
    border-radius: 50px;
    background: black;
    cursor: default;
    background-color: black;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    width: 12px;
    height: 12px;
    right: -10px;
    top: -4px;
}

.slider-area .noUi-target .noUi-origin .noUi-handle .noUi-touch-area {
    height: 100%;
    width: 100%;
    outline: none;
    border: none;
    box-shadow: none;
}

.slider-area .noUi-target .noUi-origin .noUi-handle .noUi-touch-area:active,
.slider-area .noUi-target .noUi-origin .noUi-handle .noUi-touch-area:focus,
.slider-area .noUi-target .noUi-origin .noUi-handle:active,
.slider-area .noUi-target .noUi-origin .noUi-handle:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.slider-area .noUi-target .noUi-origin .noUi-handle-upper:last-of-type {
    display: none;
}

.slider-area .noUi-draggable {
    cursor: ew-resize;
}


.range_box .text {
    color: black;
    width: 350px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 7px 0 0;
}

.range_box .text p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.range_box .text span {
    color: #707070;
}

.delivery {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.delivery div {
    display: flex;
}

.delivery .select {
    width: 60%;
    border-radius: 4px;
    background-color: white;
    color: black;
    font-size: 14px;
    border: 1px solid black;
    outline: none;
    padding: 5px;
    -webkit-appearance: none;
    background-image: url("/static/img/arrow-down-black.png");
    background-position: 93% 50%;
    background-repeat: no-repeat;
    background-size: 10px;
}

.delivery .note {
    margin: 0;
    font-size: 15px;
}

.delivery .method_select {
    color: #707070;
    margin: 0 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
}

.delivery .method_select.active {
    color: black;
}

.bg_box .email_input {
    background-color: transparent;
    border: 1px solid black;
    border-radius: 4px;
    height: 30px;
    width: 60%;
    font-size: 15px;
    padding: 0 10px;
}

.bg_box .email_input:active,
.bg_box .email_input:focus {
    outline: none;
}

#section2 {
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

#section2 img {
    max-width: 20%;
}


.section3 {
    background: white;
    color: black;
    font-family: 'Red Hat Display', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section3 .content_section {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section3 .row {
    width: 900px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 0;
}

.section3 .note_box {
    width: 28%;
}

.section3 .note {
    font-size: 30px;
    font-weight: 600;
}

.section3 .text_box {
    font-size: 18px;
    font-weight: 400;
    color: #919191;
    width: 50%;
}

.section3 .fp-scrollable {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media all and (max-width:1024px) {
    .content_section {
        max-width: 800px;
    }

    .text_section .h1 {
        font-size: 50px;
    }

    .text_section .note {
    	color: white;
        font-size: 21px;
        margin: 20px 0 10px;
    }

    .text_section .list li {
        font-size: 14px;
        padding: 7px;
    }

    .card_section .card_header .logo,
    .card_section .card_header .balance {
        font-size: 13px;
        line-height: 13px;
    }

    .card_section .card_header img {
        max-width: 27px;
        margin: 0 3px 0 0;
    }

    .card_section .card .card_number {
        font-size: 21px;
        line-height: 21px;
        margin: 14px 0 0px;
    }

    .card_section .card .ex_date {
        font-size: 16px;
        line-height: 19px;
    }

    .card_section .card .card_name {
        font-size: 8px;
        line-height: 8px;
    }

    .card_section .card .cars_type_img {
        max-width: 60px;
    }

    .card_section .card {
        width: 280px;
        height: 170px;
    }

    .card_section {
        width: 325px;
    }

    .range_box .text {
        width: 300px;
    }

    .range_box {
        width: 100%;
    }

    .card_section .bg_box {
        padding: 15px;
    }

}

@media all and (max-width:800px) {
    header .menu {
        display: none;
    }

    #section0 .content_section {
        flex-direction: column;
    }

    .fp-auto-height.fp-section,
    .fp-auto-height .fp-slide,
    .fp-auto-height .fp-tableCell {
        height: auto !important;
    }

    #section0 .content_section {
        justify-content: flex-start;
    }

    .text_section {
        width: 100%;
        justify-content: center;
        align-items: center;
        display: none;
    }

    .text_section .h1 {
        font-size: 40px;
    }

    .text_section .note {
        font-size: 16px;
        max-width: 100%;
    }

    .text_section .list {
        flex-direction: column;
    }

    .text_section .list li {
        width: 100%;
    }

    .text_section .list li::before {
        left: -10%;
    }

    .card_section .bg_box:first-of-type {
        margin: 30px 0 15px;
    }

    #section2 img {
        max-width: 40%;
    }


    .section3 .row {
        width: 80%;
        padding: 20px 0;
    }

    .section3 .fp-scrollable {
        height: auto !important;
    }

    .section3 .note_box {
        width: 36%;
    }

    slider-area .noUi-target .noUi-origin .noUi-handle {
        top: -5px;
    }
}

@media all and (max-width:600px) {
    .content_section {
        max-width: 80%;
        margin: 0 auto;
    }

    .text_section .h1,
    .text_section .note {
        text-align: center;
    }

    .text_section .note {
        max-width: 300px;
    }

    .card_section .bg_box:first-of-type {
        margin: 0px 0 15px;
    }

    .card_section .bg_box {
        padding: 10px 15px;
    }

    #section2 img {
        max-width: 50%;
    }

    .section3 .row {
        flex-direction: column;
        width: 100%;
        align-items: center;
        padding: 10px 0;
    }

    .section3 .note {
        text-align: center;
        margin: 0 0 20px;
    }

    .section3 .note_box {
        width: 100%;
    }

    .text_section {
        display: none;
    }

    .section3 .text_box {
        width: 100%;
    }

    .section3 {
        align-items: center;
        padding: 52px 0 108px;
    }

}

@media all and (max-width:340px) {

    .card_section,
    .section3 .row {
        width: 96%;
    }

    .content_section {
        max-width: 100%;
    }

    .card_section .card_header .logo,
    .card_section .card_header .balance {
        font-size: 11px;
        line-height: 11px;
    }

    .card_section .card_header img {
        max-width: 22px;
    }

    .card_section .card .card_number {
        font-size: 18px;
        line-height: 18px;
        margin: 14px 0 0px;
    }

    .card_section .card {
        width: 249px;
        height: 152px;
    }

    .card_section .card .cars_type_img {
        max-width: 53px;
    }

    .card_section .card .card_name {
        font-size: 7px;
        line-height: 7px;
    }

    .card_section .card .ex_date {
        font-size: 14px;
        line-height: 17px;
    }

    .range_box .text {
        font-size: 13px;
    }

    .delivery .note {
        font-size: 13px;
    }

    .card_section .note {
        font-size: 12px;
        margin: 7px 0;
    }

    .bg_box .email_input {
        height: 28px;
        font-size: 13px;
    }

    .delivery .select {
        font-size: 13px;
    }

    .card_section .bg_box {
        padding: 7px 15px;
        margin: 0 0 9px;
    }

    .card_section .bg_box:first-of-type {
        margin: 0 0 9px;
    }

}

@media all and (max-height:560px) {

    .card_section .card_header .logo,
    .card_section .card_header .balance {
        font-size: 11px;
        line-height: 11px;
    }

    .card_section .card_header img {
        max-width: 22px;
    }

    .card_section .card .card_number {
        font-size: 18px;
        line-height: 18px;
        margin: 14px 0 0px;
    }

    .card_section .card {
        width: 249px;
        height: 152px;
    }

    .card_section .card .cars_type_img {
        max-width: 53px;
    }

    .card_section .card .card_name {
        font-size: 7px;
        line-height: 7px;
    }

    .card_section .card .ex_date {
        font-size: 14px;
        line-height: 17px;
    }

    .range_box .text {
        font-size: 13px;
    }

    .delivery .note {
        font-size: 13px;
    }

    .card_section .note {
        font-size: 12px;
        margin: 7px 0;
    }

    .bg_box .email_input {
        height: 28px;
        font-size: 13px;
    }

    .delivery .select {
        font-size: 13px;
    }

    .card_section .bg_box {
        padding: 7px 15px;
        margin: 0 0 5px;
    }

    .card_section .bg_box:first-of-type {
        margin: 5px 0;
    }

    .letters {
          border-right: 2px solid white;
          font-size: 38px;
          width: 55%;
          white-space: nowrap;
          overflow: hidden;
          animation: typing 2s steps(22), blink .5s step-end infinite alternate;
        }

        @keyframes typing {
          from {
            width: 0;
          }
        }

        @keyframes blink {
          50% {
            border-color: transparent;
          }
    }

    footer h1 {
        font-size: 15px;
    }

    footer p {
        margin: 0px 0 0;
        font-size: 11px;
    }

    footer {
        bottom: 0;
        flex-direction: row;
        padding: 7px;
    }

    .section3 .text_box {
        font-size: 15px;
        color: black;
    }

    .section3 .note {
        font-size: 30px;
        margin: 0 0 10px;
    }

    .section3 {
        padding: 0;
    }

}
