@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;700&display=swap');

:root {
    --blue: #288e9e;
    --bluedark: #216477;
    --bluedarker: #081522;
    --karat24: #e5c886;
    --incaGold: #a47130;
    --honeyGold: #dbb672;
}

body {
    background-color: #8b8c8f;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    color: #eee;
}

header {
    position: absolute;
    width: 100%;
    font-weight: bold;
    font-size: large;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

header img {
    width: 200px;
}

header .logo {
    display: flex;
    left: 0;
    margin: 0px 100px;
}

header .menu {
    display: flex;
    position: absolute;
    right: 0;
    margin: 0px 100px;
}

header a {
    padding: 0px 30px;
    font-size: 1.1em;
    cursor: pointer;
    text-decoration: none;
    color: #eee;
}

header a:hover {
    color: var(--honeyGold);
}

.slider {
    background-image: url("/assets/images/black-100.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 -20px 10px -10px var(--bluedarker);
    /* background-image: radial-gradient( */
    /* #8B8B8B, #1E252E */
    /* ); */
    overflow-x: hidden;
    height: 100vh;
}

#dCanvas {
    width: 60%;
    height: 100vh;
    float: right;
}

.slick-initialized.slick-slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.slick-initialized.slick-slider .slick-slide {
    height: auto;
    padding: 0 10px;
}

.slick-initialized.slick-slider .slick-slide>div {
    height: 100%;
}

.slick-arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: none;
    color: hsl(var(--white));
    width: 56px;
    height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    background-color: var(--background-color);
    color: hsl(var(--body-color));
    border: 1px solid hsl(var(--secondary));
    font-size: 20px;
}

@media screen and (max-width: 1499px) {
    .slick-arrow {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }
}

@media screen and (max-width: 575px) {
    .slick-arrow {
        width: 44px;
        height: 44px;
    }
}

.slick-arrow:hover {
    border-color: hsl(var(--base));
    background-color: hsl(var(--base));
    color: hsl(var(--white));
}

.slick-next {
    right: 10px;
}

.slick-prev {
    left: 10px;
}

.banner-slider {
    margin-top: 20%;
    position: relative;
}

.banner-slider .slick-initialized.slick-slider {
    margin: 0 0;
}

.banner-slider .slick-item {
    height: 100%;
    width: 100%;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.banner-slider .slick-item img {
    width: 80%;
}

@media screen and (max-width: 775px) {
    .banner-slider .slick-item img {
        width: 60%;
    }
}

@media screen and (max-width: 575px) {
    .banner-slider {
        margin-top: 40%;
    }

    .banner-slider .slick-item img {
        width: 80%;
    }

    .banner-slider .slick-item {
        padding: 0;
    }
}

.banner-slider .slick-arrow {
    color: #eee;
    width: 56px;
    height: 56px;
    background-color: var(--blue);
    font-size: 18px;
}

@media screen and (max-width: 1399px) {
    .banner-slider .slick-arrow {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

@media screen and (max-width: 991px) {
    .banner-slider .slick-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

.banner-slider .slick-arrow:hover {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
}

.contentOne {
    /* display: none; */
    position: relative;
    /* height: 100%; */
    width: 40%;
    top: 25%;
    /* right : 5%; */
    left: 5%;
    padding: 50px;
    box-sizing: border-box;
    opacity: 0;
    transition: 0.5s;
    pointer-events: none;
}

.contentOne h1 {
    font-size: 2.5rem;
    margin: 0 0 20px 0;
    font-weight: bold;
}

.contentOne .des {
    opacity: 0.9;
    line-height: 1.2;
    font-size: 1.3em;
}

.contentOne .btn {
    padding: 30px 0px;
}

.contentOne button {
    cursor: pointer;
    padding: 20px 75px;
    border-radius: 16px;
    font-size: 1.3em;
    font-weight: bold;
    background-color: #288e9e;
    background-image:
        linear-gradient(to bottom, var(--incaGold), transparent 50% 90%, var(--incaGold)),
        linear-gradient(to bottom, var(--incaGold), var(--honeyGold));
    color: #eee;
    text-transform: uppercase;
    border: none;
    transition: 0.5s ease-in;
    border: 2px solid var(--bluedarker);
}

.contentOne button:hover {
    background-image:
        linear-gradient(to bottom, var(--honeyGold), transparent 50% 90%, var(--honeyGold)),
        linear-gradient(to bottom, var(--honeyGold), var(--incaGold));
}

.contentOneAction .contentOne {
    opacity: 1;
    pointer-events: unset;
}

.view-all-btn {
    width: 500px;
    cursor: pointer;
    padding: 25px 85px;
    margin: 20px 0px;
    border-radius: 16px;
    text-align: center;
    justify-self: center;
    font-size: 1.5em;
    font-weight: bold;
    background-color: #288e9e;
    background-image:
        linear-gradient(to bottom, #216477, transparent 50% 90%, #216477),
        linear-gradient(to bottom, #216477, #288e9e);
    color: #eee;
    text-transform: uppercase;
    border: none;
    transition: 0.5s ease-in;
}

@media (min-width:1920px) {

    header img {
        width: 400px;
    }

    header .logo {
        margin: 0px 200px;
    }

    header .menu {
        margin: 0px 200px;
    }

    header a {
        padding: 0px 50px;
        font-size: 1.8em;
    }

    .banner-slider {
        margin-top: 30%;
        position: relative;
    }

    .contentOne {
        top: 35%;
        padding: 70px;
    }

    .contentOne h1 {
        font-size: 5rem;
        margin: 0 0 40px 0;
    }

    .contentOne .des {
        font-size: 2em;
    }

    .contentOne .btn {
        padding: 60px 0px;
    }

    .contentOne button {
        padding: 35px 95px;
        font-size: 2.5em;
    }

}

@media (max-width: 1070px) {

    header img {
        width: 150px;
    }

    header .logo {
        margin: 0px 60px;
    }

    header .menu {
        margin: 0px 60px;
    }

    header a {
        padding: 0px 20px;
        font-size: 1em;
    }

    .contentOne {
        padding: 30px;
    }

    .contentOne h1 {
        font-size: 2rem;
    }

    .contentOne .des {
        line-height: 1.1;
        font-size: 1em;
    }

    .contentOne .btn {
        padding: 30px 0px;
    }

    .contentOne button {
        padding: 20px 65px;
        font-size: 1.1em;
    }
}

@media screen and (max-width: 768px) {

    header img {
        width: 140px;
    }

    header .menu {
        position: relative;
        margin-left: auto;
    }

    header a {
        padding: 5px 10px;
        font-size: 0.8em;
    }

    .slider {
        height: unset;
    }

    #dCanvas {
        width: 100%;
        height: 70vh;
    }

    .contentOne {
        position: relative;
        width: 90%;
        height: auto;
        opacity: 1 !important;
        text-align: center;
        padding: 10px 0 0 5%;
        top: unset;
        right: unset;
        left: unset;
        bottom: unset;
    }

    .contentOne h1 {
        font-size: 2rem;
    }

    .view-all-btn {
        width: 300px;
        font-size: 1.2em;
    }
}

@media screen and (max-width: 550px) {

    header img {
        width: 120px;
    }

    header .logo {
        margin: 0px 0px;
    }

    header .menu {
        margin: 0px 0px;
    }

    header a {
        padding: 5px 10px;
        font-size: 0.8em;
    }

    .slider {
        height: unset;
    }

    .view-all-btn {
        width: 200px;
        padding: 15px 45px;
        margin: 15px 0px;
        font-size: 1em;
    }

}

/** section 2*/

.carSlider {
    overflow: hidden;
    background-color: var(--bluedarker);
}

.contentCarSlider {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
    opacity: 1;
    transition: 0.5s;
    pointer-events: none;
    background-color: var(--bluedarker);
}

.contentCarSlider h2 {
    font-size: 3rem;
    margin: 0 0 20px 0;
    font-weight: bold;
}

.carSliderContainer {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
    background-color: var(--bluedarker);
}

.carSliderCard {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 920px;
}

.card-reverse {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 920px;
}

.carBackground {
    position: relative;
    width: 50%;
    border-radius: 16px;
    height: 375px;
    box-shadow: -15px 0 35px rgba(0, 0, 0, 0.1),
        0 -15px 35px rgba(0, 0, 0, 0.1),
        0 15px 35px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}

.carSlider .carBackground h2 {
    top: -60px;
    position: absolute;
    font-size: 5rem;
    text-transform: uppercase;
    line-height: 0.9;
    color: #fff;
    text-shadow:
        0 0 12px var(--honeyGold),
        0 0 12px var(--honeyGold),
        0 0 12px var(--honeyGold),
        0 0 12px var(--honeyGold),
        0 0 12px var(--honeyGold);
    opacity: 0.9;
    animation: blink 1.5s infinite;
}

.card-reverse .carBackground h2 {
    top: -60px;
    position: absolute;
    font-size: 5rem;
    text-transform: uppercase;
    line-height: 0.9;
    color: #fff;
    text-shadow:
        0 0 12px var(--honeyGold),
        0 0 12px var(--honeyGold),
        0 0 12px var(--honeyGold),
        0 0 12px var(--honeyGold),
        0 0 12px var(--honeyGold);
    opacity: 0.9;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% {
        opacity: 0.9;
    }

    50% {
        text-shadow:
            0 0 12px var(--incaGold),
            0 0 12px var(--incaGold),
            0 0 12px var(--incaGold),
            0 0 12px var(--incaGold),
            0 0 12px var(--incaGold);
    }

    100% {
        opacity: 0.9;
    }
}

.carSlider .carBackground img {
    position: absolute;
    width: 140%;
    right: -70px;
    bottom: -60px;
    transition: 0.5s;
}

.card-reverse .carBackground img {
    position: absolute;
    width: 140%;
    left: -60px;
    bottom: -100px;
    transition: 0.5s;
}

.kia-k5 {
    position: absolute;
    width: 200%;
    right: -180px;
    bottom: -50px;
    transition: 0.5s;
}

.info {
    width: 50%;
    /* background-color: var(--incaGold); */
    background-image:
        linear-gradient(to bottom, var(--incaGold), transparent 50% 90%, var(--incaGold)),
        linear-gradient(to bottom, var(--incaGold), var(--honeyGold));
    border-radius: 16px;
    z-index: 1;
    padding: 35px 40px;
    box-shadow: 15px 0 35px rgba(0, 0, 0, 0.1),
        0 -15px 35px rgba(0, 0, 0, 0.1),
        0 15px 35px rgba(0, 0, 0, 0.1);
}

.carName {
    padding: 0 0 10px 0;
}

.carName div {
    display: flex;
    align-items: center;
}

.carName div .big {
    text-transform: capitalize;
    margin-right: 10px;
    font-size: 2rem;
    font-weight: bolder;
    color: #eee;
    line-height: 1;
}

.carName div .new {
    background-color: var(--karat24);
    border: 2px solid var(--bluedarker);
    text-transform: uppercase;
    color: var(--bluedarker);
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 5px;
    transition: 0.5s;
}

.title {
    color: var(--bluedarker);
    font-weight: 600;
    font-size: 1.2em;
    text-transform: uppercase;
}

.text {
    color: #eee;
    font-size: 1.2em;
    font-weight: 600;
}

.buy-price {
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    color: var(--bluedarker);
    display: flex;
    align-items: flex-start;
}

.price span {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.price strong {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    align-self: center;
}

.price i {
    font-style: normal;
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 1px;
}

.details {
    padding: 20px 30px;
    border-radius: 16px;
    font-size: 1.2em;
    font-weight: bold;
    background-color: #288e9e;
    background-image:
        linear-gradient(to bottom, var(--bluedarker), transparent 50% 90%, var(--bluedarker)),
        linear-gradient(to bottom, var(--bluedarker), var(--bluedarker));
    color: #eee;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.5s;
}

.details:hover {
    transform: scale(1.05);
}

.buy {
    padding: 20px 30px;
    border-radius: 16px;
    font-size: 1.2em;
    font-weight: bold;
    background-color: #288e9e;
    background-image:
        linear-gradient(to bottom, var(--bluedarker), transparent 50% 90%, var(--bluedarker)),
        linear-gradient(to bottom, var(--bluedarker), var(--bluedarker));
    color: #eee;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.5s;
}

.buy:hover {
    transform: scale(1.05);
}

/* for big screens >1920px */

@media (min-width: 1920px) {

    .carSliderContainer {
        min-height: 60vh;
    }

    .contentCarSlider h2 {
        font-size: 4rem;
    }

    .carSliderCard {
        width: 1560px;
    }

    .card-reverse {
        width: 1560px;
    }


    .carBackground {
        height: 525px;
    }

    .hyundai-sonata {
        width: 130%;
        bottom: -150px;
    }

    .honda-crv {
        width: 130%;
        right: -70px;
        bottom: -100px;
    }

    .mercedes-benz {
        width: 140%;
    }

    .kia-k5 {
        right: -250px;
        bottom: -100px;
    }

    .kia-sorento {
        width: 130%;
        left: -60px;
        bottom: -150px;
    }

    .info {
        height: 475px;
        padding: 45px 50px;
    }

    .carName div .big {
        margin-right: 20px;
        font-size: 3rem;
        line-height: 1.2;
    }

    .carName div .new {
        padding: 5px 15px;
        border-radius: 6px;
        font-size: 1rem;
    }

    .title {
        font-size: 2em;
    }

    .text {
        font-size: 1.6em;
    }

    .buy-price {
        padding-top: 20px;
    }

    .price span {
        font-size: 3rem;
    }

    .price strong {
        font-size: 2rem;
    }

    .price i {
        font-size: 2rem;
    }

    .details {
        padding: 30px 45px;
        font-size: 1.5em;
        letter-spacing: 2px;
    }

    .details:hover {
        transform: scale(1.1);
    }

    .buy {
        padding: 30px 45px;
        font-size: 1.5em;
        letter-spacing: 2px;
    }

    .buy:hover {
        transform: scale(1.1);
    }
}

@media (max-width: 1070px) {
    .hyundai-sonata {
        width: 130%;
    }

    .honda-crv {
        width: 130%;
    }

    .mercedes-benz {
        width: 140%;
    }

    .kia-k5 {
        width: 190%;
    }

    .kia-sorento {
        width: 130%;
    }
}

@media (max-width: 1000px) {
    .carSliderCard {
        flex-direction: column;
        width: 80%;
        box-shadow: 0 0 35px 1px rgba(0, 0, 0, 0.2);
    }

    .carSliderCard>div {
        width: 80%;
        box-shadow: none;
    }

    .card-reverse {
        flex-direction: column-reverse;
        width: 80%;
        box-shadow: 0 0 35px 1px rgba(0, 0, 0, 0.2);
    }

    .card-reverse>div {
        width: 80%;
        box-shadow: none;
    }

    .contentCarSlider {
        padding: 20px;
    }

    .contentCarSlider h2 {
        font-size: 2rem;
    }

    .carBackground {
        height: 355px;
    }

    .hyundai {
        top: -40px;
        font-size: 4rem;
    }

    .hyundai-sonata {
        width: 100%;
        left: 0;
        bottom: 0;
    }

    .honda {
        top: -40px;
        left: 15px;
        font-size: 5rem;
    }

    .honda-crv {
        width: 100%;
        right: -10px;
        bottom: 0;
    }

    .mercedes {
        top: -40px;
        font-size: 4rem;
    }

    .mercedes-benz {
        width: 100%;
        left: 0;
        bottom: 20px;
    }

    .kia-k5 {
        width: 150%;
        right: -70px;
        bottom: 0;
    }

    .kia {
        top: -40px;
        font-size: 4rem;
    }

    .kia-sorento {
        width: 100%;
        left: 0;
        bottom: 0;
    }

    .carSlider .carBackground img {
        position: absolute;
        width: 120%;
        right: -70px;
        bottom: -60px;
        transition: 0.5s;
    }

    .card-reverse .carBackground img {
        position: absolute;
        width: 120%;
        left: -60px;
        bottom: -100px;
        transition: 0.5s;
    }
}

@media (max-width: 490px) {

    .carSliderContainer {
        padding: 10px;
    }

    .carSliderCard {
        width: 100%;
    }

    .card-reverse {
        width: 100%;
    }

    .hyundai {
        top: -30px;
        font-size: 3rem;
    }

    .honda {
        top: -30px;
        left: 15px;
        font-size: 3rem;
    }

    .mercedes {
        top: -30px;
        font-size: 3rem;
    }

    .kia {
        top: -30px;
        font-size: 3rem;
    }

    .carName div .big {
        font-size: 1.5rem;
    }

    .carName div .new {
        padding: 2px 6px;
        font-size: 0.9rem;
    }

    .title {
        font-size: 1rem;
    }

    .text {
        font-size: 1rem;
    }

    .price span {
        font-size: 1.5rem;
    }

    .price strong {
        font-size: 1rem;
    }

    .price i {
        font-size: 1rem;
    }

    .buy {
        padding: 15px 20px;
        font-size: 0.8rem;
    }

    .details {
        padding: 15px 20px;
        font-size: 0.8rem;
    }

    .info {
        padding: 20px;
    }

    .carSlider .carBackground h2 {
        top: -10px;
        font-size: 3rem;
    }

    .card-reverse .carBackground h2 {
        top: -10px;
        font-size: 3rem;
    }

    .carSlider .carBackground img {
        width: 140%;
        bottom: 0;
    }

    .card-reverse .carBackground img {
        width: 140%;
        bottom: 0;
    }
}

/* Cars page */

.cars {
    background-image: url("/assets/images/bg-hero-2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 -20px 10px -10px var(--bluedarker);
    overflow-x: hidden;
    min-height: 100vh;
}

/* login */
a {
    text-decoration: none;
    transition: ease all 0.5s;
    -webkit-transition: ease all 0.5s;
    -ms-transition: ease all 0.5s;
}

.input-block {
    margin: 0 0 15px 0;
}

.input-block .forgot-link {
    color: #000;
    text-decoration: underline;
    font-size: 1em;
    font-weight: bold;
}

.input-block label {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    font-weight: bold;
    color: #000;
}

@media (max-width: 1199.98px) {
    .input-block label {
        font-size: 1em;
    }
}

.input-block .optional {
    font-weight: 400;
    font-size: 12px;
    color: #201F1D;
}

.input-block .form-control {
    background: #F5F5F5;
    border: 1px solid #F4F4F4;
    box-shadow: none;
    border-radius: 5px;
    margin: 0;
    padding: 13px;
    font-size: 1em;
    font-weight: 600;
    color: #000;
}

@media (max-width: 767.98px) {
    .input-block .form-control {
        margin: 0 0 15px;
        padding: 10px;
    }
}

.input-block .form-control ::placeholder,
.input-block .form-control ::-webkit-input-placeholder,
.input-block .form-control :-ms-input-placeholder {
    color: #676767;
    font-size: 1em;
    font-weight: 600;
}

.input-block .form-control:focus {
    background: #ffffff;
}

.input-block .form-control .form-title {
    font-weight: 600;
    font-size: 16px;
    color: #201F1D;
    margin: 0 0 25px 0;
}

.input-block .search-btn .check-available {
    padding: 12px 20px;
}

.input-block textarea.form-control {
    height: auto;
}

.input-block .intl-tel-input,
.input-block .iti {
    width: 100%;
}

.input-block .note-toolbar {
    background: #ffffff;
}

.input-block .note-editable {
    background: #ffffff;
}

.input-block .note-resizebar {
    height: 0 !important;
}

.input-block .toggle-password {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 0;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, 50%);
}

.input-block .feather-eye-off {
    color: #201F1D;
}

.input-block .feather-eye {
    margin-right: 1px;
    color: #201F1D;
}

.custom_check {
    position: relative;
    padding-left: 30px;
}

.custom_check .checkmark {
    position: absolute;
    top: 5px;
    left: 0;
    height: 16px;
    width: 16px;
    border: 1px solid #828282;
    background-color: #ffffff;
    border-radius: 2px;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.custom_check .checkmark::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    position: absolute;
    display: none;
    left: 2px;
    top: 0;
    color: #fff;
    font-size: 0.6em;
}

.custom_check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.custom_check input:checked~.checkmark {
    background-color: #000;
}

.custom_check input:checked~.checkmark:after {
    display: block;
}

.custom_check span {
    color: #000;
    font-weight: 600;
}

.pass-group {
    position: relative;
}

.login-body {
    margin: auto;
}

.login-wrapper {
    width: 100%;
    vertical-align: middle;
    margin: 0;
    padding: 20% 0px 10%;
    background: var(--bluedarker);
    min-height: 100vh;
}

@media (max-width: 575.98px) {
    .login-wrapper {
        padding: 40% 0px 20%;
    }
}

.login-wrapper .loginbox {
    /* background-color: var(--blue); */
    background-image:
        linear-gradient(to bottom, var(--incaGold), transparent 50% 90%, var(--incaGold)),
        linear-gradient(to bottom, var(--incaGold), var(--honeyGold));
    color: #eee;
    display: flex;
    margin: auto;
    max-width: 635px;
    width: 100%;
    border-radius: 16px;
}

.login-wrapper .loginbox .login-left {
    align-items: center;
    background: linear-gradient(180deg, #8BC34A, #00bcd4);
    flex-direction: column;
    padding: 80px;
    width: 635px;
    display: flex;
    border-radius: 6px 0 0 6px;
}

.login-wrapper .loginbox .login-auth {
    padding: 20px;
    width: 635px;
}

@media (max-width: 320px) {
    .login-wrapper .loginbox .login-auth {
        width: 100%;
    }
}

.login-wrapper .loginbox .login-auth .login-auth-wrap {
    max-width: 100%;
    flex: 0 0 100%;
}

.login-wrapper .loginbox .login-auth .login-auth-wrap .sign-group span i {
    line-height: 1;
    margin-right: 6px;
}

.login-wrapper .loginbox .login-auth .login-auth-wrap .sign-group a {
    font-weight: bold;
    font-size: 1em;
    color: #000;
    text-decoration: underline;
    margin: 0 0 40px;
    padding: 0;
}

.login-wrapper .loginbox .login-auth .login-auth-wrap .input-block label {
    margin: 0 0 10px 0;
}

.login-wrapper .loginbox .login-auth .login-auth-wrap h1 {
    margin: 0 0 10px;
    font-size: 2em;
    font-weight: bolder;
}

.login-wrapper .loginbox .login-auth .forgotpass a {
    color: #828282;
}

.login-wrapper .loginbox .login-auth .forgotpass a:hover {
    color: #127384;
    text-decoration: underline;
}

.login-wrapper .loginbox .login-auth .dont-have {
    color: #eee;
    margin-top: 30px;
    font-size: 1em;
    font-weight: bold;
}

.login-wrapper .loginbox .login-auth .dont-have a {
    color: #000;
    text-decoration: underline;
}

.login-wrapper .loginbox .login-auth .social-login {
    text-align: center;
}

.login-wrapper .loginbox .login-auth .social-login span {
    color: #828282;
    margin-right: 8px;
    display: inline-flex;
}

.login-wrapper .loginbox .login-auth .social-login a {
    background: #F1F1F1;
    border: 1px solid #F1F1F1;
    box-shadow: inset 0 0 0 0 #ffffff;
    text-align: center;
    margin: 0 0 15px;
    padding: 10px 0;
    font-size: 16px;
    line-height: 20px;
    color: #28283C;
    border-radius: 4px;
}

.login-wrapper .loginbox .login-auth .social-login a:hover {
    background-color: #ffffff;
    border-color: #F1F1F1;
    color: #3F4254;
    box-shadow: inset 0 50px 0 0 #ffffff;
}

.login-wrapper .loginbox .login-auth .social-login a.facebook {
    background-color: #4b75bd;
}

.login-wrapper .loginbox .login-auth .social-login a.google {
    background-color: #fe5240;
}

.login-wrapper .loginbox .account-subtitle {
    color: #828282;
    margin: 0 0 30px;
}

.login-wrapper .loginbox .login-or {
    color: #828282;
    margin: 20px auto 20px;
    padding: 20px 0 20px;
    position: relative;
    max-width: 385px;
}

.login-wrapper .loginbox .or-line {
    background-color: #EDECF8;
    height: 1px;
    margin-bottom: 0;
    margin-top: 0;
    display: block;
}

@media (max-width: 575.98px) {
    .login-wrapper .loginbox .or-line {
        display: none;
    }
}

.login-wrapper .loginbox .span-or {
    background-color: #ffffff;
    display: block;
    left: 15%;
    position: absolute;
    text-align: center;
    top: 8px;
    width: 280px;
}

@media (max-width: 575.98px) {
    .login-wrapper .loginbox .span-or {
        left: 0;
    }
}

.login-wrapper .loginbox .span-or-log {
    background-color: #ffffff;
    color: #828282;
    display: block;
    left: 25%;
    position: absolute;
    text-align: center;
    top: 6px;
    width: 200px;
}

@media (max-width: 575.98px) {
    .login-wrapper .loginbox .span-or-log {
        left: 0;
    }
}

.login-wrapper .loginbox .lock-user {
    margin-bottom: 20px;
    text-align: center;
}

.login-wrapper .loginbox .lock-user img {
    margin-bottom: 15px;
    width: 100px;
}

.login-wrapper .loginbox .toggle-password,
.login-wrapper .loginbox .toggle-password-two {
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
    color: #828282;
    cursor: pointer;
}

.login-wrapper .loginbox .toggle-password.fa-eye,
.login-wrapper .loginbox .toggle-password-two.fa-eye {
    margin-right: 1px;
    font-weight: 500;
}

.btn-sign-in {
    padding: 20px 30px;
    border-radius: 16px;
    border: none;
    font-size: 1.2em;
    font-weight: bold;
    background-color: #288e9e;
    background-image:
        linear-gradient(to bottom, var(--bluedarker), transparent 50% 90%, var(--bluedarker)),
        linear-gradient(to bottom, var(--bluedarker), var(--bluedarker));
    color: #eee;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.5s;
}

@media (min-width: 1920px) {

    .input-block {
        margin: 0 0 25px 0;
    }

    .input-block .forgot-link {
        font-size: 1.4em;
    }

    .input-block label {
        font-size: 1.5em;
    }

    .input-block .form-control {
        padding: 15px;
        font-size: 1.5em;
    }

    .input-block .form-control ::placeholder,
    .input-block .form-control ::-webkit-input-placeholder,
    .input-block .form-control :-ms-input-placeholder {
        font-size: 1.5em;
    }

    .custom_check .checkmark {
        top: 10px;
        height: 24px;
        width: 24px;
    }

    .custom_check .checkmark::after {
        left: 0;
        top: 0;
        font-size: 0.8em;
    }

    .custom_check span {
        font-size: 1.2em
    }

    .login-wrapper .loginbox {
        max-width: 1235px;
    }

    .login-wrapper .loginbox .login-auth {
        padding: 100px;
        width: 1235px;
    }

    .login-wrapper .loginbox .login-auth .login-auth-wrap .sign-group a {
        font-size: 1.4em;
    }

    .login-wrapper .loginbox .login-auth .login-auth-wrap .input-block label {
        margin: 0 0 20px 0;
    }

    .login-wrapper .loginbox .login-auth .login-auth-wrap h1 {
        margin: 0 0 20px;
        font-size: 3em;
    }

    .login-wrapper .loginbox .login-auth .dont-have {
        font-size: 1.4em;
    }

    .btn-sign-in {
        padding: 25px 30px;
        font-size: 1.4em;
    }

}