.cover-wrapper {
    width: 100%;
    height: calc(100vh - 35px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: url("/static/home/images/cover.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.cover-mobile-prop {
    display: none;
}
.cover-left {
    height: 100%;
    background-position: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 20px 100px 20px 80px;
    user-select: none;
    -webkit-user-drag: none;
    position: relative;
    /* background: url("/static/home/images/cover-left.png");
    background-size: contain;
    background-repeat: no-repeat; */
    width: 55%;
    background: transparent;
}

.cover-left .cover-img {
    position: absolute;
    height: calc(100vh - 35px);
    left: 0;
    z-index: 0;
}

.cover-right {
    /* background: url("/static/home/images/cover-right.png");
    background-size: contain;
    background-repeat: no-repeat; */
    height: 100%;
    width: 25%;
    background-position: right;
    position: relative;
}

.cover-right .cover-img {
    position: absolute;
    height: calc(100vh - 35px);
    right: 0;
    z-index: 0;
}

.cover-head {
    font-size: 72px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: var(--super-font);
    color: var(--primary);
    line-height: 1;
    margin-left: -6px;
    -webkit-text-stroke: 3px var(--primary);
    letter-spacing: 1px;
    z-index: 11;
}

.cover-head span {
    color: rgb(100, 100, 100);
    -webkit-text-stroke: 3px rgb(100, 100, 100);
}

.cover-subhead {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 20px;
    font-family: var(--head-font);
    z-index: 11;
    color: rgb(40, 40, 40);
}

.cover-text {
    width: 75%;
    text-align: left;
    font-size: 15px;
    color: var(--text-faded);
    font-family: var(--text-font);
    font-style: italic;
    margin-top: 10px;
    z-index: 11;
    line-height: 1.5;
}

.cover-action {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    z-index: 11;
}

.cover-action a {
    font-size: 16px;
    padding: 10px 30px;
    text-align: center;
    width: 200px;
    font-weight: 600;
    font-family: var(--head-font);
}

.cover-action a:hover {
    opacity: 0.5;
}

.cover-action .primary {
    background: var(--primary);
    color: var(--light);
}

.cover-action .secondary {
    background: var(--text);
    color: var(--bg);
}

.cover-left i {
    font-size: 50px;
    margin-top: 60px;
    position: absolute;
    bottom: 20px;
    z-index: 11;
    color: var(--dark);
}

@media (max-width: 1280px) {
    .cover-head {
        font-size: 50px;
        -webkit-text-stroke: 1px solid var(--primary);
        letter-spacing: 0px;
    }
    .cover-head span {
        color: white;
        -webkit-text-stroke: 1px white;
    }
    .cover-subhead {
        font-size: 25px;
        margin-top: 20px;
    }
    .cover-text {
        font-size: 14px;
        width: 100%;
    }
    .cover-action {
        margin-top: 20px;
    }
    .cover-action a {
        font-size: 14px;
        width: 150px;
    }
    .cover-left i {
        font-size: 25px;
    }
    .cover-wrapper {
        height: 80vh;
        overflow-x: hidden;
    }
    .cover-left {
        width: 100%;
        background: var(--bg);
    }
    .cover-left .cover-img {
        display: none;
    }

    .cover-right {
        display: none;
    }

    .cover-wrapper {
        min-height: 40vh;
        max-height: auto;
        height: auto;
    }
    .cover-left {
        padding: 40px 20px;
        padding-top: 100px;
        background: transparent;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    .cover-action {
        margin-bottom: 40px;
    }
    .cover-subhead {
        color: var(--bg);
        font-size: 20px;
    }

    .cover-text {
        color: var(--bg-dark);
        text-align: center;
    }
    .cover-left i {
        color: var(--light);
        font-size: 30px;
    }

    /* create an overlay for cover image */

    .cover-wrapper:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(2px);
        z-index: 0;
    }
}

@media (max-width: 500px) {
    .cover-wrapper {
        padding-bottom: 120px;
        /* border-top: 5px solid var(--text-dull); */
        height: 65vh;
        min-height: none;
        max-height: none;
        padding-top: 80px;
        overflow-y: hidden;
    }
    .cover-mobile-prop {
        bottom: -100px;
        display: block;
        position: absolute;
        width: 100%;
    }
    .cover-left i {
        display: none;
    }
    .cover-head {
        font-size: 38px;
    }
}

/* ----------------------------- */
.key-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 80px 0;
}

.key-bracket {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.key-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 30px;
    width: 100%;
    user-select: none;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--head-font);
    text-transform: uppercase;
    background: linear-gradient(45deg, var(--bg-dark) 50%, var(--bg-dull) 50%);
    background: var(--bg-dull);
}

.key-item i {
    font-size: 25px;
    font-weight: lighter;
    margin-top: -2px;
}

@media (max-width: 1250px) {
    .key-item {
        padding: 20px 20px;
        font-size: 15px;
    }
    .key-item i {
        font-size: 25px;
    }
}

@media (max-width: 1000px) {
    .key-bracket {
        width: 93%;
        gap: 10px;
    }
    .key-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 750px) {
    .key-bracket {
        flex-direction: column;
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(2, 1fr);
    }
    .key-wrapper {
        padding: 30px 0;
    }
    .key-item {
        padding: 20px 20px;
        font-size: 13px;
        gap: 15px;
    }
    .key-item i {
        font-size: 40px;
    }
}

.product-wrapper {
    width: 100%;
    padding: 100px 0;
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-container {
    width: 90%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 40px;
}

.product-header {
    font-size: 25px;
    color: var(--text);
    font-family: var(--head-font);
    font-weight: 700;
    text-align: left;
    padding-bottom: 7px;
    border-bottom: 3px solid var(--primary);
}

.product-bracket {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

.product-item {
    padding: 30px;
    background: var(--bg-dull);
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(80deg, var(--bg) 70%, var(--bg-dull) 30%);
    /* border-top: 1px solid var(--dark); */
    box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.1);
    cursor: default;
    position: relative;
}

.product-item-timer {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 11px;
    padding: 3px 7px 3px 7px;
    border-radius: 0 0 10px 0px;
    font-weight: 500;
    background: black;
    color: white;
    font-family: var(--head-font);
    letter-spacing: 1px;
}

.product-item-timer span {
    color: rgb(200, 200, 200);
    letter-spacing: auto;
}

.product-item-tag {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 11px;
    padding: 3px 14px 3px 7px;
    border-radius: 0 0 10px 0;
    font-weight: 600;
}
.product-item-tag i {
    font-weight: lighter;
}

.product-item-tag.one {
    background: blueviolet;
    color: white;
}

.product-item-tag.two {
    background: rgb(0, 153, 255);
    color: white;
}

.product-item-tag.three {
    background: gold;
    color: black;
}

.product-item:hover {
    transform: translateY(-6px);
    box-shadow: 0px 0px 20px rgb(0, 0, 0, 0.2);
}

.product-item-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-items: flex-start;
    gap: 10px;
}

.product-item-img {
    position: relative;
    width: 200px;
    height: 100%;
}

.product-item-img img {
    position: absolute;
    top: 0px;
    left: 0%;
    width: 220px;
    -webkit-user-drag: none;
    user-select: none;
    mix-blend-mode: multiply;
}

.product-item-text h3 {
    font-size: 20px;
    font-family: var(--head-font);
    margin-top: 5px;
}

.product-item-text h4 {
    font-size: 16px;
    font-weight: 500;
}

.product-item-text h5 {
    margin-top: 5px;
    font-size: 13px;
    color: var(--text-faded);
}

.product-item-text h5 span {
    color: var(--text);
}

.product-item-text p {
    color: var(--text-faded);
    margin-top: 10px;
    font-weight: 500;
    font-size: 14px;
    font-family: var(--extra-font);
}

.product-item-text p span {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.product-item-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row-reverse;
    gap: 20px;
    width: 100%;
    margin-top: 10px;
}

.product-item-action a,
.product-item-action button {
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    width: fit-content;
    border: none;
    font-family: var(--head-font);
}

.product-item-action a.primary,
.product-item-action button.primary {
    background: var(--primary);
    color: var(--light);
}

.product-item-action a.secondary,
.product-item-action button.secondary {
    background: var(--text);
    color: var(--bg);
}

.product-item-action a.primary:hover,
.product-item-action button.primary:hover {
    background: var(--primary-dull);
    cursor: pointer;
}
.product-item-action a.secondary:hover,
.product-item-action button.secondary:hover {
    background: var(--text-dull);
    cursor: pointer;
}
.product-view {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.product-view-all {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    color: var(--primary);
}

.product-view-all i {
    font-size: 28px;
}

.product-view-all:hover {
    opacity: 0.5;
}

@media (max-width: 1350px) {
    .product-bracket {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-item {
        padding: 25px;
    }
    .product-item-action {
        gap: 10px;
    }
}

@media (max-width: 850px) {
    .product-container {
        width: 93%;
    }
    .product-header {
        font-size: 25px;
    }

    .product-item-text h3 {
        font-size: 16px;
    }
    .product-item-text h4 {
        font-size: 13px;
    }
    .product-item-text p {
        font-size: 14px;
    }
    .product-item-text p span {
        font-size: 17px;
    }
    .product-item-text h5 {
        font-size: 13px;
    }
    .product-bracket {
        grid-template-columns: repeat(1, 1fr);
    }
    .product-item-action {
        width: 80%;
    }
    .hide-mobile {
        display: none;
    }
}

@media (max-width: 500px) {
    .product-wrapper {
        padding: 50px 0;
    }
    .product-header {
        text-align: center;
        width: 100%;
        border-bottom: 1px solid var(--bg-dark);
        color: var(--primary);
    }
    .product-bracket {
        gap: 20px;
    }
    .product-item-action {
        width: 100%;
    }
    .product-item-action a {
        padding: 7px 8px;
    }

    .product-view {
        justify-content: center;
    }
    .product-view-all {
        font-size: 18px;
    }
    .product-view-all i {
        font-size: 22px;
    }
}

.steps-wrapper {
    width: 100%;
    margin: auto;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-dull);
    background: url("/static/home/images/propbg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.steps-bracket {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    gap: 40px;
    flex-direction: column;
}

.steps-item {
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 40px;
    box-shadow: 0px 0px 20px black;
}

.steps-item.alternate {
    background: var(--text);
    border: 1px solid var(--text-dull);
}

.steps-item-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 40px 10px 40px 50px;
}

.steps-item.alternate .steps-item-text {
    color: var(--bg);
    padding: 40px 50px 40px 10px;
}
.steps-item-text h3 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 22px;
    color: var(--primary);
    font-family: var(--head-font);
}
.steps-item-text i {
    font-size: 30px;
    font-weight: lighter;
}
.steps-item-text p {
    font-size: 15px;
    color: var(--text-dull);
    line-height: 1.5;
}

.steps-item.alternate .steps-item-text p {
    color: var(--bg-dark);
}

.steps-item-img img {
    height: 200px;
    -webkit-user-drag: none;
    user-select: none;
}

@media (max-width: 950px) {
    .steps-bracket {
        width: 93%;
        gap: 30px;
    }
    .steps-item-text {
        padding: 20px 10px 20px 30px;
    }
    .steps-item.alternate .steps-item-text {
        padding: 20px 30px 20px 10px;
    }
}

@media (max-width: 650px) {
    .steps-wrapper {
        background-attachment: scroll;
        padding: 60px 0;
    }
    .steps-item {
        flex-direction: column-reverse;
        padding: 25px;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .steps-item.alternate {
        flex-direction: column;
    }
    .steps-item-text {
        padding: 0;
        align-items: center;
        justify-content: center;
    }
    .steps-item.alternate .steps-item-text {
        padding: 0;
    }
    .steps-item-img img {
        height: auto;
        width: 200px;
    }

    .steps-item-text h3 {
        font-size: 18px;
    }
    .steps-item-text h3 i {
        font-size: 22px;
    }
    .steps-item-text p {
        font-size: 14px;
    }
}
.cover-marquee {
    height: 35px;
    background: crimson;
    color: white;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--head-font);
}

.cover-marquee.mobile {
    display: none;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 8s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    padding: 0 30px;
}

.marquee-item i {
    font-size: 17px;
    font-weight: lighter;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-20%);
    }
}

@media (max-width: 1280px) {
    .marquee-item {
        font-size: 13px;
    }
}

@media (max-width: 950px) {
    .marquee-item {
        font-size: 12px;
    }
}

@media (max-width: 500px) {
    .cover-marquee {
        /* display: none; */
    }
    .cover-marquee.mobile {
        /* display: flex; */
    }
}

.brands-section {
    width: 100%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

.brands-marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee2 20s linear infinite;
}

.brands-img {
    height: 90px;
    margin: 0 30px;
    object-fit: contain;
    -webkit-user-drag: none;
    user-select: none;
}

@keyframes marquee2 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* 
.brands-marquee:hover {
    animation-play-state: paused;
} */

@media (max-width: 600px) {
    .brands-section {
        width: 100%;
    }
    .brands-marquee {
        animation: marquee2 15s linear infinite;
    }
    .brands-img {
        height: 50px;
        margin: 0px 10px;
    }
}

.contact-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--bg-dull);
    padding: 100px 0;
    background: url("/static/home/images/contact-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    flex-direction: column;
    gap: 50px;
}

.contact-container {
    width: 90%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
}
.contact-head {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.contact-head p {
    font-size: 16px;
    color: var(--text-faded);
    font-weight: 500;
}

.contact-head h3 {
    font-size: 50px;
    font-weight: 800;
    font-family: var(--head-font);
    line-height: 1.3;
}
.contact-bracket {
    width: 60%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 100px;
}

.contact-item {
    margin-bottom: 60px;
}

.contact-item h5 {
    font-size: 15px;
    color: var(--text-faded);
    font-weight: 500;
    font-family: var(--head-font);
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 17px;
    color: var(--text);
    font-weight: 500;
    font-family: var(--text-font);
}

@media (max-width: 850px) {
    .contact-head h3 {
        font-size: 35px;
    }
    .contact-container {
        width: 93%;
        flex-direction: column;
    }
    .contact-head {
        width: 100%;
    }
    .contact-bracket {
        justify-content: space-between;
        width: 100%;
    }
}

@media (max-width: 500px) {
    .contact-wrapper {
        padding: 60px 0;
    }
    .contact-head {
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .contact-head p {
        margin-bottom: 0px;
    }
    .contact-head h3 {
        font-size: 22px;
    }
    .contact-bracket {
        flex-direction: column;
        gap: 0px;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    .contact-item {
        margin-bottom: 30px;
    }
}

.contact-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    gap: 60px;
}

.contact-img {
    width: 40%;
    height: 600px;
    object-fit: cover;
    -webkit-user-drag: none;
    user-select: none;
}

.contact-form {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
}

.contact-input-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.contact-input-group label {
    font-size: 15px;
    color: var(--text-dull);
    font-family: var(--head-font);
    font-weight: 500;
}

.contact-input-group input,
.contact-input-group textarea {
    width: 100%;
    padding: 14px 10px;
    border: 1px solid var(--text-dull);
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
    font-family: var(--text-font);
    border: none;
    border: 1px solid var(--border);
    background: var(--light);
    resize: none;
}

.contact-input-group input:focus,
.contact-input-group textarea:focus {
    outline: none;
    border: 1px solid var(--primary);
}

.contact-input-group textarea {
    height: 100px;
}

.contact-form button {
    width: 200px;
    text-align: center;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--light);
    border: none;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--head-font);
    cursor: pointer;
}

.contact-form button:hover {
    opacity: 0.6;
}

@media (max-width: 750px) {
    .contact-action img {
        display: none;
    }
    .contact-form {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .contact-action {
        width: 93%;
    }
    .contact-form button {
        width: 100%;
    }
}
