@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');


:root {
    --main-color: #ed1c24;
}



html {}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Plus Jakarta Sans", sans-serif;
}

header {
    overflow: inherit;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    width: 200px;
}

.header-logo img {
    max-width: 100%;
}


.header-menu {
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: right;
    flex-wrap: wrap;
    /* Allow wrapping */
    margin: 0 30px;
}

.header-menu ul {
    display: flex;
    align-items: center;
    /* gap: 30px; */
    margin: 0;
}

.header-menu ul li {}

.header-menu ul li a {
    color: #fff;
    font-weight: 600;
    height: 97px;
    display: block;
    border-bottom: 3px solid transparent;
    padding: 0 20px;
    display: flex;
    align-items: center;
    transition: 0.3s;
    max-width: 500px;
    font-size: 14px;

}

.header-menu ul li a:hover {
    border-bottom: 3px solid var(--main-color);
}

.header-menu ul li.active a {
    color: #ED1C24 !important;
}

@media (max-width: 768px) {
    .header-menu {
        justify-content: center;
    }

    .header-menu ul li a {
        max-width: none;
        padding: 0 10px;
    }

    .header-lower {
        height: auto;
        padding: 10px 0;
    }
}

.header-lower {
    background: #161719;
    height: 100px;
    display: flex;
    align-items: center;
    overflow: inherit;
}

.cta-wrapper {}

.cta-wrapper ul {}

.cta-wrapper ul li.head-login {}

.cta-wrapper ul li.head-login .btn-1 {
    background: transparent;
}

.cta-wrapper ul li.head-login .btn-1:hover {
    color: var(--main-color)
}

.cta-wrapper ul {
    display: flex;
}

.btn-1 {
    background: var(--main-color);
    color: #fff;
    display: flex;
    height: 42px;
    width: 150px;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    gap: 10px;
}

.btn-1 i {}

.btn-1:hover {
    color: #fff;
}


.home-wrapper {
    background-image: url(../img/bg.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    height: 90VH;
}

.home-overlay {
    background-size: 200px;
    background-position: center center;
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    bottom: 0;
    background: #000000a3;
    display: block;
    right: 0;
    /*
* Created with https: //www.css-gradient.com
* Gradient link: https://www.css-gradient.com/?c1=bc0429&c2=e2839d&gt=l&gd=dtl
*/
    background: #BC0429;
    background: linear-gradient(135deg, #BC0429, #E2839D);
    opacity: 0.8;
}

.home-box {
    position: relative;
    z-index: 1;
    background: #ffffffe6;
    padding: 30px;
    border-radius: 30px;
    width: 100%;
    height: 100%;
    max-width: 1000px;
}

.home-inner {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.home-box .home-main-info h1 {
    font-size: 30px;
    margin: 0 0 -7px;
    color: var(--main-color);
}

.home-box .home-main-info h2 {
    font-size: 16px;
    margin: 0;
}

.hone-main-btn {}

.hone-main-btn {}

.btn-lg {
    display: block;
    background: #ed1c24;
    color: #fff;
    width: 170px;
    /* margin: auto; */
    border-radius: 10px;
    /* margin: 20px auto; */
    font-size: 20px;
    font-weight: 600;
    padding: 0;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-other-info {}

.home-other-info h3 {}

.home-other-info p {}

.icon-box-wrapper {
    background: rgb(188, 4, 41);
    background: rgb(188, 4, 41);
    background: linear-gradient(90deg, #ED1C24 0%, rgba(135, 16, 21, 1) 100%);
    padding: 20px 0;
}

.icon-box-wrapper ul {
    display: flex;
    justify-content: center;
    /* gap: 20px; */
}

.icon-box-wrapper ul li {
    /* flex: 0 0 20%; */
    border-right: 1px solid #fff;
    padding-right: 40px;
    margin-right: 40px;
}

.icon-box-wrapper ul li .icon-box {
    /* background: #ffcacc; */
    border-radius: 15px;
    padding: 0 10px;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: end;
    gap: 10px;
    align-items: center;
}

.icon-box-wrapper ul li .ib-img {
    margin-bottom: 0;
}

.icon-box-wrapper ul li .ib-img svg {
    width: 50px;
    height: 50px;
    fill: #fff;
}

.icon-box-wrapper ul li .ib-img svg * {}


.ib-info h2 {
    font-size: 20px;
    margin: 0;
    line-height: 17px;
    color: #fff;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 5px;
}

.ib-info h3 {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.home-col-1 {}

.home-main-info {
    margin-bottom: 30px;
}


.timer {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.timer span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 4px
}

.timer .counter {
    display: flex;
    gap: 0;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    flex-direction: row;
    align-items: end;
    gap: 10px;
}

.header-upper {
    background: #871015;
    height: 50px;
    display: flex;
    align-items: center;
}

.hu-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.s-icons {}

.s-icons ul {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
    line-height: 17px;
}

.s-icons ul li {}

.s-icons ul li a {}

.s-icons ul li a svg {
    height: 20px;
}

.s-icons ul li a:hover svg {
    fill: var(--main-color);
}

.s-icons ul li a:hover svg * {
    fill: var(--main-color);
}

.header-buttons {}

.header-buttons ul {}

.header-buttons ul a {
    color: #fff;
    display: flex;
    gap: 15px;
    align-items: center;
    border: 2px solid #fff;
    padding: 5px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.header-buttons ul a svg {}


.home-page {}

.home-banner-section {
    padding-top: 0;
    padding-bottom: 0;
}

.home-banner-wrapper {}

.home-banner-wrapper ul {
    margin: 0 !important;
    padding: 0;
}

.home-banner-wrapper ul li {}

.banner-box {
    position: relative;
}

.banner-img {}

.banner-img img {
    height: 500px;
    width: 100%;
    object-fit: cover;
}

.banner-box-secondary {
    background-image: url('/assets/img/Banner-1.JPG');
    height: 500px;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
}

.img-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    visibility: hidden;
    /* Group 44 */
    background: rgb(188, 4, 41);
    background: linear-gradient(90deg, rgba(188, 4, 41, 0.9) 0%, rgba(226, 131, 157, 0.5) 100%);
}

.banner-info {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.883), rgba(255, 255, 255, 0));
    width: 100%;
    height: 100%;

}

.banner-info h2 {
    color: black;
    font-size: 65px;
    line-height: 60px;
}

.banner-info h3 {
    color: black;
    font-weight: 500;
    margin-bottom: 10px;
    max-width: 100%;
    line-height: 45px;
}

.banner-info .red-span {
    color: var(--main-color);
    font-weight: 800;

}

.banner-info p {
    color: black;
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px;
}

.banner-info-text {
    max-width: 800px;
}
.banner-info-text .main-title{
    color: black;
    font-size: 50px;
    line-height: 45px;
}

.banner-info .btn-lg {
    font-size: 24px;
    padding: 30px 40px;
    width: fit-content;
    margin-top: 30px;
    margin: 15px auto 0;
}

.icon-box-section {
    padding: 0;
}

.icon-box-wrapper ul li:last-child {
    border: none
}

.banner-slider .slick-dots {
    position: absolute;
    bottom: 30px;
    display: flex !important;
    gap: 15px;
    justify-content: center;
    height: 2px;
    padding: 0;
}

.banner-slider li {}

.banner-slider .slick-dots .slick-active {}

.banner-slider .slick-prev {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    right: inherit;
    z-index: 99;
    background: transparent;
    border: none;
}

.banner-slider .slick-next:before {
    content: "\e628";
}

.banner-slider .slick-prev:before {
    content: "\e629";
}

.banner-slider .slick-next:before,
.banner-slider .slick-prev:before {
    color: #fff;
    font-size: 24px;
}

.banner-slider .slick-next {
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    z-index: 99;

}

.banner-slider .slick-next {
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
}

.home-banner-wrapper .slick-dots li.slick-active button {}

.home-banner-wrapper .slick-dots li button {}

.home-banner-wrapper .slick-dots li.slick-active button:before {
    background-color: var(--main-color);
}

.home-banner-wrapper .slick-dots li button:before {
    background: #fff;
    opacity: 1;
    width: 30px;
    height: 5px;
}


.section-about {}

.about-wrapper {}

.about-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-left {
    flex: 0 0 60%;
    padding-right: 20px;
}

.about-left h3 {
    font-size: 48px;
    margin-bottom: 40px;
    line-height: 55px;
}

.about-left p {
    line-height: 200%;
    font-size: 18px;
    margin-bottom: 30px;
}

.about-left a {}

.about-right {
    flex: 0 0 30%;
    text-align: right;
}

.about-right .about-img {}

.about-right .about-img img {
    max-width: 100%;
}

.section-map {
    background: #EFF0F1;
    padding-top: 60px;
    padding-bottom: 90px;
}

.map-wrapper {
    max-width: 800px;
    margin: auto;
    position: relative;
}

.map-box {}

.map-info {
    position: absolute;
    top: -70px;
    background: #fff;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 8px 16px #ddd;
    right: -170px;
    width: 350px;
}

.map-info h3 {
    margin-bottom: 20px;
}

.map-info p {
    line-height: 20px;
}



.map-iframe {
    background: #fff;
    padding: 10px 10px 6px;
    border-radius: 10px;
}

.map-iframe iframe {
    width: 100%;
    height: 500px;
}

.map-barcode {
    position: absolute;
    bottom: -50px;
    left: -80px;
    width: 250px;
    width: 170px;
    background: #fff;
    box-shadow: 0px 8px 16px #ddd;
    border-radius: 25px;
    overflow: hidden;
    padding: 10px;
}

.map-barcode img {
    max-width: 100%;
}

footer {
    padding: 0;
}

.footer-bottom {
    margin: 0;
    display: flex;
    justify-content: space-between;
    background: #000;
    padding: 10px 0;
}

.footer-row {
    display: flex;
    justify-content: space-between;
}

.power-by {
    display: flex;
    align-items: center;
}

.power-by span {
    color: #fff;
    margin-right: 10px;
}

.power-by img {}

.power-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.power-links a {
    color: #fff;
}

.map-title {
    margin-bottom: 100px;
}

.map-title h3 {
    text-align: center;
    font-size: 36px;
}








/*login-wrapper */

.login-wrap {}

.login-box {}

.log_wrap {
    width: 600px;
    margin: auto;
    max-width: 100%;
    box-shadow: 0 8px 16px rgb(0 0 0 / 15%);
    border-radius: 15px;
}

.log_wrap h4 {
    font-weight: 600;
    color: #ed1c24;
    margin-bottom: 60px;
}

.login-form {}

.login-form form {}

.login-wrap .form-group {
    font-size: 13px;
    font-weight: 400;
}

.login-wrap .form-group label {
    font-weight: 400;
    font-size: 14px;
}

.login-wrap .form-group input {
    font-size: 16px;
}

.login-wrap .form-group .form-select {
    height: 45px;
    background: #f4f5f7;
    font-size: 16px;
}

.login-wrap .social-login {}

.login-wrap .button-login {}

.login-wrap .btn.pop-login {
    background: var(--main-color);
    border-radius: 10px;
}


.wizard>.content {
    padding: 20px;
}

.wizard-content .wizard>.steps>ul>li:after,
.wizard-content .wizard>.steps>ul>li:before {
    content: '';
    z-index: 9;
    display: block;
    position: absolute
}

.wizard-content .wizard {
    width: 100%;
    overflow: hidden
}

.wizard-content .wizard .content {
    margin-left: 0 !important
}

.wizard-content .wizard>.steps {
    position: relative;
    display: block;
    width: 100%
}

.wizard-content .wizard>.steps .current-info {
    position: absolute;
    left: -99999px
}

.wizard-content .wizard>.steps>ul {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin: 0;
    padding: 0;
    list-style: none
}

.wizard-content .wizard>.steps>ul>li {
    display: table-cell;
    width: auto;
    vertical-align: top;
    text-align: center;
    position: relative
}

.wizard-content .wizard>.steps>ul>li a {
    position: relative;
    padding-top: 52px;
    margin-top: 20px;
    margin-bottom: 20px;
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.wizard-content .wizard>.steps>ul>li:before {
    left: 0
}

.wizard-content .wizard>.steps>ul>li:after {
    right: 0
}

.wizard-content .wizard>.steps>ul>li:first-child:before,
.wizard-content .wizard>.steps>ul>li:last-child:after {
    content: none
}

.wizard-content .wizard>.steps>ul>li.current>a {
    color: #ed1c24;
    cursor: default
}

.wizard-content .wizard>.steps>ul>li.current .step {
    border-color: var(--main-color);
    background-color: #fff;
    color: var(--main-color)
}

.wizard-content .wizard>.steps>ul>li.disabled a,
.wizard-content .wizard>.steps>ul>li.disabled a:focus,
.wizard-content .wizard>.steps>ul>li.disabled a:hover {
    color: #647b9c;
    cursor: default
}

.wizard-content .wizard>.steps>ul>li.done a,
.wizard-content .wizard>.steps>ul>li.done a:focus,
.wizard-content .wizard>.steps>ul>li.done a:hover {
    color: #ed1c24;
}

.wizard-content .wizard>.steps>ul>li.done .step {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff
}

.wizard-content .wizard>.steps>ul>li.error .step {
    border-color: #f62d51;
    color: #f62d51
}

.wizard-content .wizard>.steps .step {
    background-color: #fff;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -24px;
    z-index: 10;
    text-align: center
}

.wizard-content .wizard>.content {
    overflow: hidden;
    position: relative;
    width: auto;
    padding: 0;
    margin: 0
}

.wizard-content .wizard>.content>.title {
    position: absolute;
    left: -99999px
}

.wizard-content .wizard>.content>.body {
    padding: 0 20px
}

.wizard-content .wizard>.content>iframe {
    border: 0;
    width: 100%;
    height: 100%
}

.wizard-content .wizard>.actions {
    position: relative;
    display: block;
    text-align: right;
    padding: 0 20px 20px
}

.wizard-content .wizard>.actions>ul {
    float: right;
    list-style: none;
    padding: 0;
    margin: 0
}

.wizard-content .wizard>.actions>ul:after {
    content: '';
    display: table;
    clear: both
}

.wizard-content .wizard>.actions>ul>li {
    float: left
}

.wizard-content .wizard>.actions>ul>li+li {
    margin-left: 10px
}

.wizard-content .wizard>.actions>ul>li>a {
    background: var(--main-color);
    color: #fff;
    display: block;
    padding: 7px 12px;
    border-radius: 4px;
    border: 1px solid transparent
}

.wizard-content .wizard>.actions>ul>li>a:focus,
.wizard-content .wizard>.actions>ul>li>a:hover {
    -webkit-box-shadow: 0 0 0 100px rgba(0, 0, 0, .05) inset;
    box-shadow: 0 0 0 100px rgba(0, 0, 0, .05) inset
}

.wizard-content .wizard>.actions>ul>li>a:active {
    -webkit-box-shadow: 0 0 0 100px rgba(0, 0, 0, .1) inset;
    box-shadow: 0 0 0 100px rgba(0, 0, 0, .1) inset
}

.wizard-content .wizard>.actions>ul>li>a[href="#previous"] {
    background-color: #fff;
    color: #54667a;
    border: 1px solid #d9d9d9
}

.wizard-content .wizard>.actions>ul>li>a[href="#previous"]:focus,
.wizard-content .wizard>.actions>ul>li>a[href="#previous"]:hover {
    -webkit-box-shadow: 0 0 0 100px rgba(0, 0, 0, .02) inset;
    box-shadow: 0 0 0 100px rgba(0, 0, 0, .02) inset
}

.wizard-content .wizard>.actions>ul>li>a[href="#previous"]:active {
    -webkit-box-shadow: 0 0 0 100px rgba(0, 0, 0, .04) inset;
    box-shadow: 0 0 0 100px rgba(0, 0, 0, .04) inset
}

.wizard-content .wizard>.actions>ul>li.disabled>a,
.wizard-content .wizard>.actions>ul>li.disabled>a:focus,
.wizard-content .wizard>.actions>ul>li.disabled>a:hover {
    color: #999
}

.wizard-content .wizard>.actions>ul>li.disabled>a[href="#previous"],
.wizard-content .wizard>.actions>ul>li.disabled>a[href="#previous"]:focus,
.wizard-content .wizard>.actions>ul>li.disabled>a[href="#previous"]:hover {
    -webkit-box-shadow: none;
    box-shadow: none
}

.wizard-content .wizard.wizard-circle>.steps>ul>li:after,
.wizard-content .wizard.wizard-circle>.steps>ul>li:before {
    top: 45px;
    width: 50%;
    height: 3px;
    background-color: var(--main-color)
}

.wizard-content .wizard.wizard-circle>.steps>ul>li.current:after,
.wizard-content .wizard.wizard-circle>.steps>ul>li.current~li:after,
.wizard-content .wizard.wizard-circle>.steps>ul>li.current~li:before {
    background-color: #F3F3F3
}

.wizard-content .wizard.wizard-circle .steps .step {
    width: 50px;
    height: 50px;
    line-height: 45px;
    border: 3px solid #F3F3F3;
    font-size: 1.3rem;
    border-radius: 50%;
    font-size: 26px;
    font-weight: 600;
}

.wizard-content .wizard.wizard-notification>.steps>ul>li:after,
.wizard-content .wizard.wizard-notification>.steps>ul>li:before {
    top: 39px;
    width: 50%;
    height: 2px;
    background-color: var(--main-color)
}

.wizard-content .wizard.wizard-notification>.steps>ul>li.current .step {
    border: 2px solid var(--main-color);
    color: var(--main-color);
    line-height: 36px
}

.wizard-content .wizard.wizard-notification>.steps>ul>li.current .step:after,
.wizard-content .wizard.wizard-notification>.steps>ul>li.done .step:after {
    border-top-color: var(--main-color)
}

.wizard-content .wizard.wizard-notification>.steps>ul>li.current:after,
.wizard-content .wizard.wizard-notification>.steps>ul>li.current~li:after,
.wizard-content .wizard.wizard-notification>.steps>ul>li.current~li:before {
    background-color: #F3F3F3
}

.wizard-content .wizard.wizard-notification>.steps>ul>li.done .step {
    color: #FFF
}

.wizard-content .wizard.wizard-notification>.steps .step {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1.3rem;
    border-radius: 15%;
    background-color: #F3F3F3
}

.wizard-content .wizard.wizard-notification>.steps .step:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -8px;
    margin-bottom: -8px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 8px solid #F3F3F3
}

.wizard-content .wizard.vertical>.steps {
    display: inline;
    float: left;
    width: 20%
}

.wizard-content .wizard.vertical>.steps>ul>li {
    display: block;
    width: 100%
}

.wizard-content .wizard.vertical>.steps>ul>li.current:after,
.wizard-content .wizard.vertical>.steps>ul>li.current:before,
.wizard-content .wizard.vertical>.steps>ul>li.current~li:after,
.wizard-content .wizard.vertical>.steps>ul>li.current~li:before,
.wizard-content .wizard.vertical>.steps>ul>li:after,
.wizard-content .wizard.vertical>.steps>ul>li:before {
    background-color: transparent
}

@media (max-width:768px) {
    .wizard-content .wizard>.steps>ul {
        margin-bottom: 20px
    }

    .wizard-content .wizard>.steps>ul>li {
        display: block;
        float: left;
        width: 50%
    }

    .wizard-content .wizard>.steps>ul>li>a {
        margin-bottom: 0
    }

    .wizard-content .wizard>.steps>ul>li:first-child:before {
        content: ''
    }

    .wizard-content .wizard>.steps>ul>li:last-child:after {
        content: '';
        background-color: var(--main-color)
    }

    .wizard-content .wizard.vertical>.steps {
        width: 15%
    }
}

@media (max-width:480px) {
    .wizard-content .wizard>.steps>ul>li {
        width: 100%
    }

    .wizard-content .wizard>.steps>ul>li.current:after {
        background-color: var(--main-color)
    }

    .wizard-content .wizard.vertical>.steps>ul>li {
        display: block;
        float: left;
        width: 50%
    }

    .wizard-content .wizard.vertical>.steps {
        width: 100%;
        float: none;
    }
}


.login-form section {
    padding: 0;
}


[ type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: static;
}

.error {
    color: #871015;
}

.reg-wrap .log_wrap {
    width: 100%;
    padding: 50px;
}

[ type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
    position: static;
}

.checkbox-list {}

.checkbox-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-list li {
    padding: 10px 15px;
    background: #f9f9f9;
    border: 1px solid #e6eaf3;
    flex: 0 0 19%;
}

.checkbox-list li label {
    margin: 0;
    display: flex;
    gap: 7px;
}

.checkbox-list li label span {}

.checkbox-list li label input {
    margin: 0;
}

.radio-list {
    display: flex;
    gap: 20px;
}

.radio-list li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.radio-list li input {
    margin: 0;
}

select.form-control:not([size]):not([multiple]) {
    border: 1px solid #e6eaf3;
}

.form-control.error {
    background-color: #ffe0e2;
    border-color: #871015;
}



.brand-card-wrap {}

.brand-grid {}

.brand-grid ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 25px;
}

.brand-grid ul li {
    max-width: 48%;
    flex: 0 0 48%;
}

.brand-card {
    display: flex;
    /* border: 1px solid #ddd; */
}

.brand-card img {
  object-fit: contain;
   width: 150px;
}
.brand-card-img {
    display: flex;
    align-items: center;
}
.brand-card .brand-info {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    /* flex: 80%; */
}

.brand-card .brand-info h3 {
    color: var(--main-color);
}

.brand-card .brand-info h4 {
    font-size: 17px;
    color: #666;
    order: -1;
    margin: 0;
}


.brand-card .brand-info p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.brand-grid-header {
    margin-bottom: 30px;
}

.brand-grid-header ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-grid-header ul li {}

.product-count {}

.product-count span {}

.brand-grid-header .pagination {
    margin: 0 !important;
}

.brand-grid-header .pagination .page-item {}

.brand-grid-header .pagination .page-item .page-link {
    border-radius: 2px !important;
}

.brand-grid-header .pagination .page-item.disabled {
    border-radius: 15px;
    width: fit-content;
}

.brand-grid-header .pagination .page-item.disabled .page-link {
    border-radius: 2px;
    width: fit-content;
    border: 1px solid #eaeff5;
    padding: 0 20px;
}

.brand-grid-header .pagination .page-item.active {}

.brand-grid-header .pagination .page-item.active .page-link {}

.pagination .page-item:last-child .page-link,
.pagination .page-item:first-child .page-item {
    background: #fff;
    color: #868e96;
    padding: 0 20px;
    width: fit-content;
    border: 1px solid #eaeff5;
}



.inner-banner .banner-info h3 {
    font-size: 35px;
    margin: 0;
    font-weight: 600;
    line-height: 35px;
}

.banner-image {
    width: 100%;
    border-radius: 15px;
    margin-top: 10px;
}

.reg-wrap .button-1 {
    background: #ed1c24;
    margin: auto;
    display: table;
    border-radius: 8px;
    height: 50px;
    width: 140px;
    font-size: 16px;
    font-weight: 600;
}

.reg-wrap .select2-container--default .select2-selection--multiple {
    height: 45px;
    background: #f4f5f7;
    border: 1px solid #e6eaf3;
}

.form-checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-checkbox-wrap label {
    margin: 0;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.form-checkbox-wrap input {
    margin: 0;
}

.new-company-details {}

.new-company-details h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
    color: #ed1c24;
    font-weight: 600;
}

.field-validation-error {
    color: #d30f0f;
    font-size: 13px;
    font-weight: 600;
    margin-top: 5px;
    display: block;
}

.input-validation-error {
    background: #ffe5e5 !important;
    border: 1px solid #bd1b1b;
}

.login-foot-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px !important;
}


/*User-Guide Accordions*/
.accordion-tab {
    display: flex;
    justify-content: center;
    padding: 50px 0;
    outline: none;
}

/* Styling the buttons */
.tablinks {
    background-color: #F9F9F9;
    color: black;
    border: none;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 0 5px;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s;
}


.tablinks:hover {
    border-bottom: 5px solid var(--main-color);
    outline: none;
}


.tablinks.active {
    border-bottom: 5px solid var(--main-color);
    font-weight: bold;
    outline: none;
}

.tabcontent {
    display: none;
    padding: 20px;
    border-radius: 8px;
}

.tabcontent.active {
    display: block;
}



.accordion-horizontal {
    background-color: #F9F9F9;
    color: #333;
    border: none;
    cursor: pointer;
    padding: 15px 20px;
    width: 100%;
    border-radius: 5px;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: background-color 0.4s, box-shadow 0.4s;
    margin-bottom: 10px;
    position: relative;
}

.accordion-horizontal:hover,
.accordion-horizontal.active {
    background-color: #F9F9F9;
    outline: none !important;
    border: 1px solid white;
}

.accordion-horizontal:after {
    color: #777;
    content: '\002B';
    transition: transform 0.3s;
    font-weight: bold;
    float: right;
    margin-left: 10px;
    outline: none
}


.accordion-horizontal.active:after {
    content: '\2212';
    outline: none;
}


/* Image Styles */
.login-image {
    border-radius: 5px;
    width: 80%;
}

.contactsupport-image {
    border-radius: 5px;
    width: 700px;
}

/* List Styles */
.login-steps {
    list-style-type: disc;
}

.login-steps li {
    padding: 10px;
}



.panel1 {
    padding: 15px 20px;
    overflow-y: auto;
    max-height: 500px;
    border-radius: 0 0 5px 5px;
    box-shadow: none;
    margin: 0;
    border: none;
}

details {
    border-left: 1px solid DimGrey;
    padding-left: 25px;
    padding-bottom: 20px;
}

details[open] {
    font-weight: 200;
}

details::before {
    content: "";
    display: block;
    position: relative;
    width: 22px;
    height: 22px;
    border: 3px solid White;
    outline: 1px solid DimGrey;
    top: 37px;
    right: 37px;
    background-color: var(--main-color);
    border-radius: 50%;
    transition: all 0.25s ease;
}

details[open]::before {
    background-color: DodgerBlue;
    outline-color: DodgerBlue;
}

/* Specific Item Styles */
#details-1[ open]::before {
    background-color: DodgerBlue;
    outline-color: DodgerBlue;
}

#details-1[ open] {
    color: black;
}

#details-2[ open]::before {
    background-color: Orange;
    outline-color: Orange;
}

#details-2[ open] {
    color: black;
}

#details-3[ open]::before {
    background-color: HotPink;
    outline-color: HotPink;
}

#details-3[ open] {
    color: black;
}

#details-4[ open]::before {
    background-color: green;
    outline-color: green;
}

#details-4[ open] {
    color: black;
}

#details-5[ open]::before {
    background-color: var(--main-color);
    outline-color: var(--main-color);
}

#details-5[ open] {
    color: black;
}

#details-6[ open]::before {
    background-color: purple;
    outline-color: purple;
}

#details-6[ open] {
    color: black;
}

#details-7[ open]::before {
    background-color: darkblue;
    outline-color: darkblue;
}

#details-7[ open] {
    color: black;
}


/* Style option buttons */
.option-1,
.option-2 {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    margin: 0;
    padding: 0;
    transition: all 0.2s;
}

.option-1 {
    background-color: white;
    border: 1px solid DimGrey;
}

.option-1:hover {
    border: 1px solid DodgerBlue;
}

.option-2 {
    background-color: Gainsboro;
    border: 0;
}

.option-2:hover {
    box-shadow: 2px 2px 4px #969a9c inset;
}

/* Bootstrap Timeline CSS */
.accordion {
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: 0;
    max-width: 600px;
    margin: 0 auto;
}

.accordion-item {
    border-radius: 0;
    border-left: 1.5px solid DimGrey;
    padding-left: 25px;
    padding-bottom: 20px;
}

/* Active button styles */
#tl-btn-1:not(.collapsed) {
    color: black;
}

#tl-btn-2:not(.collapsed) {
    color: black;
}

#tl-btn-3:not(.collapsed) {
    color: black;
}

/* Prevents sticky hover on portable devices */
@media (hover: hover) {
    #tl-btn-1:hover::before {
        background-color: Dodgerblue;
        outline-color: Dodgerblue;
    }

    #tl-btn-2:hover::before {
        background-color: Orange;
        outline-color: Orange;
    }

    #tl-btn-3:hover::before {
        background-color: HotPink;
        outline-color: Hotpink;
    }
}

summary {
    cursor: pointer;
    font-weight: bold;
    background-color: #F9F9F9;
    padding: 15px !important;
    color: black;
    border-radius: 5px;
    transition: background-color 0.3s;
}

summary:hover {
    background-color: black;
    color: white;
}

summary:focus-within {
    background-color: black;
    color: white;
}

summary::before {
    background-color: black;
    color: white;
}

summary::-webkit-details-marker {
    display: none;
}

summary::-webkit-details-marker {
    display: none;
}

.question-title {
    padding: 20px;
}

.question-body {
    display: flex;
}

@media (max-width:768px) {
    .question-body {
        display: block;
    }

    .about-row {
        display: block;
    }

    .panel1 {
        padding: 0px !important;
    }

    .second-row {
        padding: 0 !important;
        margin: 0 !important;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .about-right .about-img .col-md-6 {
        display: flex;
        gap: 20px;
    }

    .banner-image {
        width: 200px;
        padding: 0;
        height: 230px;
        object-fit: cover;
        position: relative;
    }
}

/* Hamburger Menu Icon */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    transition: 0.4s ease-in-out;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    transition: 0.4s ease-in-out;
}

/* Show the hamburger menu icon on small screens */

.mobile-menu {
    display: none
}


.menu-close {}

.menu-close button {
    background: red;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    top: 25px;
    right: 25px;
    border: none;
    font-weight: 600;
}



.brand-grid-header {
    margin-bottom: 30px;
}

.brand-grid-header ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-grid-header ul li {}

.product-count {}

.product-count span {}

.brand-grid-header .pagination {
    margin: 0 !important;
}

.brand-grid-header .pagination .page-item {}

.brand-grid-header .pagination .page-item .page-link {
    border-radius: 2px !important;
}

.brand-grid-header .pagination .page-item.disabled {
    border-radius: 15px;
    width: fit-content;
}

.brand-grid-header .pagination .page-item.disabled .page-link {
    border-radius: 2px;
    width: fit-content;
    border: 1px solid #eaeff5;
    padding: 0 20px;
}

.brand-grid-header .pagination .page-item.active {}

.brand-grid-header .pagination .page-item.active .page-link {}

.pagination .page-item:last-child .page-link,
.pagination .page-item:first-child .page-item {
    background: #fff;
    color: #868e96;
    padding: 0 20px;
    width: fit-content;
    border: 1px solid #eaeff5;
}


.inner-banner .banner-info h3 {
    font-size: 35px;
    margin: 0;
    font-weight: 600;
    line-height: 35px;
}

.banner-image {
    width: 100%;
    border-radius: 15px;
    margin-top: 10px;
}

.reg-wrap .button-1 {
    background: #ed1c24;
    margin: auto;
    display: table;
    border-radius: 8px;
    height: 50px;
    width: 140px;
    font-size: 16px;
    font-weight: 600;
}

.reg-wrap .select2-container--default .select2-selection--multiple {
    height: 45px;
    background: #f4f5f7;
    border: 1px solid #e6eaf3;
}

.form-checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-checkbox-wrap label {
    margin: 0;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.form-checkbox-wrap input {
    margin: 0;
}

.new-company-details {}

.new-company-details h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
    color: #ed1c24;
    font-weight: 600;
}

.field-validation-error {
    color: #d30f0f;
    font-size: 13px;
    font-weight: 600;
    margin-top: 5px;
    display: block;
}

.input-validation-error {
    background: #ffe5e5 !important;
    border: 1px solid #bd1b1b;
}

.login-foot-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px !important;
}


/*User-Guide Accordions*/
.accordion-tab {
    display: flex;
    justify-content: center;
    padding: 50px 0;
    outline: none;
}

/* Styling the buttons */
.tablinks {
    background-color: #F9F9F9;
    color: black;
    border: none;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 0 5px;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s;
}


.tablinks:hover {
    border-bottom: 5px solid var(--main-color);
    outline: none;
}


.tablinks.active {
    border-bottom: 5px solid var(--main-color);
    font-weight: bold;
    outline: none;
}

.tabcontent {
    display: none;
    padding: 20px;
    border-radius: 8px;
}

.tabcontent.active {
    display: block;
}



.accordion-horizontal {
    background-color: #F9F9F9;
    color: #333;
    border: none;
    cursor: pointer;
    padding: 15px 20px;
    width: 100%;
    border-radius: 5px;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: background-color 0.4s, box-shadow 0.4s;
    margin-bottom: 10px;
    position: relative;
}

.accordion-horizontal:hover,
.accordion-horizontal.active {
    background-color: #F9F9F9;
    outline: none !important;
    border: 1px solid white;
}

.accordion-horizontal:after {
    color: #777;
    content: '\002B';
    transition: transform 0.3s;
    font-weight: bold;
    float: right;
    margin-left: 10px;
    outline: none
}


.accordion-horizontal.active:after {
    content: '\2212';
    outline: none;
}


/* Image Styles */
.login-image {
    border-radius: 5px;
    width: 80%;
}

.contactsupport-image {
    border-radius: 5px;
    width: 700px;
}

/* List Styles */
.login-steps {
    list-style-type: disc;
}

.login-steps li {
    padding: 10px;
}



.panel1 {
    padding: 15px 20px;
    overflow-y: auto;
    max-height: 500px;
    border-radius: 0 0 5px 5px;
    box-shadow: none;
    margin: 0;
    border: none;
}

details {
    border-left: 1px solid DimGrey;
    padding-left: 25px;
    padding-bottom: 20px;
}

details[open] {
    font-weight: 200;
}

details::before {
    content: "";
    display: block;
    position: relative;
    width: 22px;
    height: 22px;
    border: 3px solid White;
    outline: 1px solid DimGrey;
    top: 37px;
    right: 37px;
    background-color: var(--main-color);
    border-radius: 50%;
    transition: all 0.25s ease;
}

details[open]::before {
    background-color: DodgerBlue;
    outline-color: DodgerBlue;
}

/* Specific Item Styles */
#details-1[open]::before {
    background-color: DodgerBlue;
    outline-color: DodgerBlue;
}

#details-1[open] {
    color: black;
}

#details-2[open]::before {
    background-color: Orange;
    outline-color: Orange;
}

#details-2[open] {
    color: black;
}

#details-3[open]::before {
    background-color: HotPink;
    outline-color: HotPink;
}

#details-3[open] {
    color: black;
}

#details-4[open]::before {
    background-color: green;
    outline-color: green;
}

#details-4[open] {
    color: black;
}

#details-5[open]::before {
    background-color: var(--main-color);
    outline-color: var(--main-color);
}

#details-5[open] {
    color: black;
}

#details-6[open]::before {
    background-color: purple;
    outline-color: purple;
}

#details-6[open] {
    color: black;
}

#details-7[open]::before {
    background-color: darkblue;
    outline-color: darkblue;
}

#details-7[open] {
    color: black;
}


/* Style option buttons */
.option-1,
.option-2 {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    margin: 0;
    padding: 0;
    transition: all 0.2s;
}

.option-1 {
    background-color: white;
    border: 1px solid DimGrey;
}

.option-1:hover {
    border: 1px solid DodgerBlue;
}

.option-2 {
    background-color: Gainsboro;
    border: 0;
}

.option-2:hover {
    box-shadow: 2px 2px 4px #969a9c inset;
}

/* Bootstrap Timeline CSS */
.accordion {
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: 0;
    max-width: 600px;
    margin: 0 auto;
}

.accordion-item {
    border-radius: 0;
    border-left: 1.5px solid DimGrey;
    padding-left: 25px;
    padding-bottom: 20px;
}

/* Active button styles */
#tl-btn-1:not(.collapsed) {
    color: black;
}

#tl-btn-2:not(.collapsed) {
    color: black;
}

#tl-btn-3:not(.collapsed) {
    color: black;
}

/* Prevents sticky hover on portable devices */
@media (hover: hover) {
    #tl-btn-1:hover::before {
        background-color: Dodgerblue;
        outline-color: Dodgerblue;
    }

    #tl-btn-2:hover::before {
        background-color: Orange;
        outline-color: Orange;
    }

    #tl-btn-3:hover::before {
        background-color: HotPink;
        outline-color: Hotpink;
    }
}

summary {
    cursor: pointer;
    font-weight: bold;
    background-color: #F9F9F9;
    padding: 15px;
    color: black;
    border-radius: 5px;
    transition: background-color 0.3s;
}

summary:hover {
    background-color: black;
    color: white;
}

summary:focus-within {
    background-color: black;
    color: white;
}

summary::before {
    background-color: black;
    color: white;
}

summary::-webkit-details-marker {
    display: none;
}

summary::-webkit-details-marker {
    display: none;
}

.question-title {
    padding: 20px;
}

.question-body {
    display: flex;
}

@media (max-width:768px) {
    .question-body {
        display: block;
    }

    .about-row {
        display: block;
    }

    .panel1 {
        padding: 0px !important;
    }

    .second-row {
        padding: 0 !important;
        margin: 0 !important;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .about-right .about-img .col-md-6 {
        display: flex;
        gap: 20px;
    }

    .banner-image {
        width: 200px;
        padding: 0;
        height: 230px;
        object-fit: cover;
        position: relative;
    }
}

/* Hamburger Menu Icon */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    transition: 0.4s ease-in-out;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    transition: 0.4s ease-in-out;
}

/* Show the hamburger menu icon on small screens */

.mobile-menu {
    display: none
}


.menu-close {}

.menu-close button {
    background: red;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    top: 25px;
    right: 25px;
    border: none;
    font-weight: 600;
}




.user-guide-image {
    position: relative;
    width: 600px;
}

.login-image {
    width: 600px;
    height: auto;
    margin: 20px;
}

.mobile-image {
    width: 200px !important;
    height: auto;
    margin: 20px;
}

.questioncontent {
    padding: 20px;
}

.content {
    padding: 30px;
}

.content .cont .more:after {
    content: '';
    width: 30px;
    height: 1px;
    background: #aa8453;
    position: absolute;
    top: 50%;
    left: 0px;
}

.content .cont .more:hover {
    color: #222;
}

.content .info h6 {
    font-size: 15px;
    letter-spacing: 3px;
    color: #666;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.content .cont ul li {
    padding: 10px;
}


@media screen and (max-width: 991px) {
    .content .cont h4 {
        line-height: 1.25em;
    }

    .order2 {
        -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important;
    }

    .order1 {
        -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }
}

@media screen and (max-width: 480px) {
    .content .date {
        width: 60px;
    }

    .content .info .tags {
        margin: 5px 0 0;
    }

    .content .date h3 {
        font-size: 40px;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    .row {
        display: block;
        width: 100%;
    }

    .col-md-6 {
        display: block;
        width: 100%;
        margin-bottom: 20px;
        max-width: 100% !important;
    }

    .img-left {
        width: 100%;
        text-align: center;
    }

    .content {
        padding: 10px;
    }
}

.head-dashboard {
    display: flex;
    align-items: center;
    margin-right: 15px;
    position: relative;
}


.head-dashboard a {
    display: flex;
    gap: 10px;
    color: #fff !important;
    align-items: center;
    padding: 10px 15px;
}

.head-dashboard:hover ul {
    display: block !important;
}

.head-dashboard ul {
    position: absolute;
    top: 100%;
    z-index: 999;
    background: #871015;
    padding: 10px 15px;
}

.head-dashboard ul li a {
    white-space: nowrap;
    padding: 5px;
}

