* {
    box-sizing: border-box;
    outline: none !important;
}

@font-face {
    font-family: "Channe";
    src: url("fonts/channe.ttf") format("truetype"),
        url("fonts/channe.otf") format("opentype");
}

@font-face {
    font-family: "Nova";
    src: url("fonts/nova-light.otf") format("opentype");
    font-weight: "regular";
}

@font-face {
    font-family: "Nova";
    src: url("fonts/nova-semibold.otf") format("opentype");
    font-weight: 600;
}

@font-face {
    font-family: "Thunder";
    src: url("fonts/thunder.otf") format("opentype");
}

:root {
    --body-font: "Nova", sans-serif;
    --header-font: "Channe", sans-serif;
    --sub-font: "Thunder", sans-serif;
    --cus-green: #122820;
    --cus-blue: #050237;
    --cus-grey: #f3f6f5;
    --cus-brown: #8C5C4A;
}

html,
body {
    width: 100%;
    min-height: 100vh;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    background: var(--cus-grey);
    font-family: var(--body-font);
}

body {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3;
    font-weight: 400;
    font-family: var(--header-font);
    color: #000;
}

h4,
h5,
h6 {
    line-height: 1.5;
}

a {
    color: inherit;
    cursor: pointer;
    text-decoration: none !important;
    transition: 0.3s ease;
    display: inline-block;
    font-family: var(--body-font);
}

a:hover {
    color: initial;
}

button {
    cursor: pointer;
    transition: 0.3s ease;
    display: inline-block;
    font-family: var(--sub-font);
    line-height: 1;
}

.p-relative {
    position: relative;
}

.font-caveat {
    font-family: var(--caveat-font) !important;
    line-height: 1.3;
}

.header-font {
    font-family: var(--header-font) !important;
}

.ov-hidden {
    overflow: hidden;
}

.as-background,
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: 0.5s ease-in-out;
}

.as-background {
    object-fit: cover;
}

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pt-150 {
    padding-top: 150px;
}

.small {
    font-size: 13px;
    font-weight: 400;
}

.brown-text {
    color: var(--cus-brown);
}

.bg-green {
    background: var(--cus-green);
}

.thunder-font {
    font-family: 'Thunder', sans-serif;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vert-center {
    display: flex;
    align-items: center;
}

.object-cover {
    object-fit: cover;
}

.mw-500 {
    max-width: 500px;
}

.mw-400 {
    max-width: 400px;
}

.mw-300 {
    max-width: 300px;
}

.mw-200 {
    max-width: 200px;
}

.bg-tran {
    background: transparent !important;
}

.cus-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.line-height-1 {
    line-height: 1;
}

.sect-title {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-column-gap: 15px;
    align-items: center;
}

.big-text {
    font-size: 45px;
}

/* Buttons and Links */
.btn-black {
    border: none;
    padding: 10px 40px;
    background: black;
    color: white;
    text-align: center;
    font-family: var(--sub-font);
    font-family: 18px;
}

.btn-black:hover {
    background: #333;
    color: white;
}

.outline-btn {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 40px;
    background: transparent;
    text-align: center;
    font-family: var(--sub-font);
    font-family: 18px;
}

.outline-btn:hover {
    color: #333;
    background: rgba(0, 0, 0, 0.1);
}

.btn-white {
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    background: white;
}

.btn-white:hover {
    background: white;
    color: black;
}

.und-link {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 1;
    background: transparent;
    padding: 0px;
}

.nav-green-btn {
    padding: 10px 20px;
    background: var(--cus-green);
    color: white;
    font-size: 18px;
    font-family: var(--sub-font);
    line-height: 1;
}

.nav-green-btn:hover {
    color: white;
}

.nav-mobile {
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 7px 10px;
    background: transparent;
    border-radius: 3px;
}

.nav-mobile:hover {
    background: rgba(0, 0, 0, 0.2);
}

.cart-btn {
    position: relative;
}

.cart-btn img {
    width: 30px;
}

.cart-btn span {
    width: 12px;
    height: 12px;
    background: red;
    border-radius: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: none;
}

.slide-btn:hover {
    background: #333;
}

/* Gradients */


/* Navbar */
.main-navbar {
    padding: 15px 0px;
    background: white;
    transition: 0.4s ease;
}

.main-navbar.nav-bg {
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.05);
}

.offset-nav {
    height: 70px;
}

.nav-logo img {
    width: 100%;
    max-width: 150px;
}

.main-navbar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.nav-content {
    display: flex;
    align-items: center;
}

.nv-link {
    font-family: var(--sub-font);
    font-size: 18px;
}

.nv-link:hover {
    color: var(--cus-green);
}

.nav-cart {
    position: absolute;
    background: white;
    overflow: hidden;
    top: calc(100% + 15px);
    right: 0;
    border-radius: 10px;
    width: 380px;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.15);
    padding: 0px 20px;
    transition: 0.35s linear;
    max-height: 0px;
}

.nav-cart>* {
    width: 100%;
}

.nav-cart .top {
    padding: 15px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-cart .top h4 {
    flex-grow: 1;
    text-align: center;
    line-height: 1;
}

.nav-cart .close-nav-cart {
    border: none;
    background: transparent;
    padding: 0px;
    font-size: 18px;
    opacity: 0.6;
}

.nav-cart .close-nav-cart:hover {
    opacity: 1;
}

.nav-cart .mid {
    padding: 15px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    height: 240px;
    overflow-y: auto;
}

.nav-cart .mid::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 0, 0, 0.1);
}

.nav-cart .mid::-webkit-scrollbar {
    width: 6px;
    background-color: rgba(0, 0, 0, 0.1);
}

.nav-cart .mid::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #555;
}

.nav-cart-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-column-gap: 15px;
    margin-bottom: 20px;
}

.nav-cart-item:last-child {
    margin-bottom: 0px;
}

.nav-cart-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-cart-item p {
    font-size: 14px;
}

.nci-num {
    display: flex;
    align-items: center;
}

.nci-num span {
    transition: 0.3s ease;
    line-height: 1;
    display: inline-block;
    font-family: var(--header-font);
    font-size: 21px;
}

.nci-num button {
    width: 25px;
    height: 25px;
    padding: 0px;
    border: none;
    border-radius: 100%;
    background: rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.nci-price {
    font-size: 16px;
    font-weight: 600;
}

.bot-price {
    font-size: 18px;
    font-weight: 600;
}

.nav-cart .bottom {
    padding: 15px 0px;
}

.nav-cart .bottom-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 15px;
}

.nav-cart .bottom-btns a {
    width: 100%;
    padding: 5px 20px;
}

.nav-cart .bottom-btns .btn-black {
    border: 1px solid black;
}

.nav-cart .bottom-btns .btn-black:hover {
    border-color: #333;
}

.nav-content-mobile {
    width: 100%;
    background: white;
    max-height: 0px;
    overflow: hidden;
    transition: 0.2s linear;
}

.nav-content-mobile .nv-link {
    display: block;
    margin-bottom: 5px;
    padding: 10px 0px 5px 0px;
}

.nav-content-mobile .nv-link:last-child {
    margin-bottom: 0px;
    padding: 0px;
}

/* Index */
.index-header h1 {
    font-size: 100px;
    line-height: 1;
}

.fs-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    margin-bottom: 20px;
}

.big-prd {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-column-gap: 7vw;
    max-width: 800px;
    align-items: center;
}

.big-prd-img {
    width: 100%;
}

.big-prd-top {
    color: white;
    font-family: var(--header-font);
    display: grid;
    grid-template-columns: 1fr auto;
    grid-column-gap: 50px;
    align-items: center;
}

.big-prd-price {
    font-size: 32px;
    line-height: 1;
}

.big-prd-top .nci-num button {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.big-prd.modified {
    grid-template-columns: 1fr 1fr;
}

.big-prd.modified .big-prd-top {
    grid-template-columns: 1fr;
    grid-gap: 10px;
}

.big-prd.modified .big-prd-price {
    font-size: 29px;
}

/* Cart */
.cart-wrapper {
    padding: 40px 3vw;
    background: rgba(0, 0, 0, 0.03);
}

.cart-table {
    width: 100%;
}

.cart-table th {
    font-size: 14px;
    opacity: 0.6;
    padding-bottom: 10px;
}

.cart-sect-1 {
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-column-gap: 15px;
    align-items: center;
}

.cart-sect-1 img {
    width: 100%;
    object-fit: cover;
}

.cart-table .nci-num {
    justify-content: center;
}

.cart-table .cart-price {
    margin: 0px;
    font-weight: 600;
    text-align: center;
    font-size: 18px;
}

.cart-table tr td {
    padding: 10px;
    background: white;
    border-bottom: 5px solid rgba(0, 0, 0, 0.03);
}

.cart-table tbody tr:last-child td {
    border-bottom: none;
}

.cart-del {
    border: none;
    padding: 0px;
    background: transparent;
    font-size: 18px;
}

.checkout-summary {
    padding-top: 30px;
    max-width: 250px;
}

.checkout-summary div {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.checkout-summary .summary-price {
    text-align: right;
    font-weight: 600;
    font-size: 18px;
}

.summary-total {
    font-size: 18px;
    padding-top: 20px;
}

.total-price {
    font-weight: 600;
    text-align: right;
}

.cart-item-mb {
    padding: 20px 15px;
    background: white;
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-column-gap: 20px;
}

.cart-item-mb img {
    height: 100%;
    object-fit: cover;
}

.ci-mb-base {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ci-mb-base .und-link {
    font-family: var(--body-font);
    opacity: 0.6;
}

.ci-mb-base .und-link:hover {
    opacity: 1;
}

.ci-mb-price {
    font-family: var(--header-font);
    font-size: 21px;
    font-weight: 600;
}

.ci-mb-ctrls {
    display: flex;
    align-items: center;
}

/* Prints */
.pc-img {
    position: relative;
    display: block;
    overflow: hidden;
    padding-bottom: 70%;
}

.pc-view {
    position: absolute;
    padding: 10px;
    background: white;
    text-align: center;
    font-size: 13px;
    top: 15px;
    right: 15px;
}

.pc-view p {
    line-height: 1.2;
    color: #000;
}

.pc-body {
    padding: 15px;
    background: white;
}

.pc-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
}

.pc-buttons>button {
    width: 100%;
    padding: 10px;
}

.print-card-1 .pc-body {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}

.print-card-1 button {
    padding: 10px 30px;
}

.product-slider .slick-list,
.product-slider-1 .slick-list {
    margin-left: -7px;
    margin-right: -7px;
}

.product-slider .print-card,
.product-slider-1 .print-card {
    margin-left: 7px;
    margin-right: 7px;
}

.print-card select {
    border-radius: 0px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: black;
}

.print-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.print-pagination button {
    background: black;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.print-pagination a {
    padding: 0px 5px;
    font-weight: 600;
}

.print-pagination a.active {
    border-bottom: 1px solid black;
}

/* Checkout */
.checkout-result {
    display: flex;
    align-items: center;
}

.result-card {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    background: white;
    padding: 60px 5vw;
    text-align: center;
}

.result-card img {
    width: 50px;
}

.result-black,
.result-link {
    font-weight: bold;
    color: black;
}

.result-card .btn-black {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 300px;
}

.result-card .und-link {
    font-size: 14px;
    font-weight: 600;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    grid-column-gap: 3vw;
    align-items: flex-start;
}

.checkout-grid>* {
    min-width: 0px;
}

.stick-to-top {
    position: sticky;
    top: 100px;
}

.checkout-card {
    padding: 30px 20px;
    background: var(--cus-green);
    color: white;
}

.chc-title {
    font-size: 18px;
}

.checkout-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    grid-column-gap: 15px;
    align-items: center;
}

.chi-content {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-column-gap: 15px;
}

.chi-content .nci-num button {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.chi-content .nci-num span {
    font-size: 16px;
}

.checkout-base {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.checkout-base p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    opacity: 0.8;
}

.checkout-base .checkout-total {
    opacity: 1;
    font-size: 20px;
}

.checkout-tab .nav-link {
    padding: 10px 0px 15px 5px;
    font-family: var(--sub-font);
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #182847;
    margin-right: 30px;
    border-bottom: 4px solid transparent;
}

.checkout-tab .nav-item:last-child .nav-link {
    margin-right: 0px;
}

.checkout-tab .step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(18, 40, 32, 0.2);
    border-radius: 100%;
    line-height: 1;
    padding-top: 5px;
    color: white;
    font-size: 16px;
    margin-right: 10px;
    box-shadow: 0px 0px 0px 4px rgba(18, 40, 32, 0.0);
    transition: 0.3s ease;
}

.checkout-tab .nav-link.active {
    border-bottom: 4px solid #122820;
}

.checkout-tab .nav-link.active .step-num {
    background: #122820;
    box-shadow: 0px 0px 0px 4px rgba(18, 40, 32, 0.2);
}

.checkout-pane .tab-pane {
    padding: 40px 3vw;
    background: white;
}

.chk-title {
    font-size: 18px;
}

.input-el {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 7px;
    overflow: hidden;
    padding: 5px 10px;
}

.input-el label {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 0px;
}

.input-el input {
    display: block;
    width: 100%;
    border: none;
    padding: 0px;
    margin: 0px;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 600;
    color: var(--cus-blue);
}

.input-el-1 {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 7px;
    overflow: hidden;
    padding: 7px 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--cus-blue);
    display: block;
    width: 100%;
}

.input-el-1::placeholder {
    color: rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

.add-card {
    padding: 30px 15px 10px 15px;
    background: rgba(18, 40, 32, 0.05);
    border-radius: 5px;
    overflow: hidden;
}

.add-title {
    font-size: 14px;
    opacity: 0.6;
    margin-bottom: 5px;
}

.add-val {
    color: var(--cus-blue);
    font-weight: 600;
    margin: 0px;
}

.checkout-map {
    position: relative;
    padding-bottom: 55%;
    overflow: hidden;
}

.checkout-table .cart-table tr td {
    background: rgba(0, 0, 0, 0.05);
    border-bottom: 5px solid white;
}

.checkout-table .cart-sect-1 {
    grid-template-columns: 70px 1fr;
}

.checkout-table .cart-table th {
    white-space: nowrap;
}

.checkout-table .cart-price {
    white-space: nowrap;
}

.checkout-table .cart-table tr td:first-child {
    min-width: 280px;
}

.chk-overflow {
    overflow-x: auto;
}

.inner-content {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.pay-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 15px;
}

.pay-tabs .nav-link {
    padding: 10px 20px;
    border: 1px solid rgba(18, 40, 32, 0.1);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.pay-tabs .nav-link.active {
    background: rgba(18, 40, 32, 0.1);
}

.pay-tabs .nav-link img {
    max-width: 80px;
    width: 100%;
}

.inner-content .tab-pane {
    padding: 20px 0px;
}

.input-el-2 {
    padding: 10px 15px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 14px;
    border-radius: 7px;
    display: block;
    width: 100%;
}

.input-el-2::placeholder {
    opacity: 0.6;
}

/* Views */
.view-wrapper {
    position: relative;
    height: 500px;
    overflow: hidden;
}

/* VR */
.vr-card-img {
    position: relative;
    overflow: hidden;
    padding-bottom: 100%;
    color: white;
    display: block;
}

.vr-card-img:hover .as-background {
    transform: scale(1.1);
}

.vr-view {
    position: relative;
    overflow: hidden;
    padding-bottom: 50%;
}

/* Footer */
.footer {
    padding: 50px 0px;
    background: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    grid-column-gap: 20px;
}

.footer-logo {
    max-width: 150px;
    width: 100%;
}

.footer-form {
    display: grid;
    grid-template-columns: 1fr auto;
    border: 1px solid black;
}

.footer-form input {
    display: block;
    min-width: 200px;
    width: 100%;
    padding: 7px 15px;
    border: none;
    border-radius: 0px;
    color: black;
    background: transparent;
}

.footer-form input::placeholder {
    color: black;
    font-family: var(--sub-font);
    font-size: 18px;
}

.footer-form button {
    padding: 7px 20px;
    background: black;
    color: white;
    border: none;
    border-radius: 0px;
    text-align: center;
    font-size: 18px;
}

.footer-form button:hover {
    background: #333;
    color: white;
}

.socials a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: black;
    color: white;
    overflow: hidden;
    border-radius: 100%;
    font-size: 14px;
}

.socials a:hover {
    background: #333;
}

.small-links a {
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 1;
}

@media(max-width: 992px) {
    .index-header h1 {
        font-size: 85px;
    }

    .stick-to-top {
        position: relative;
        top: 0;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }

    .checkout-card {
        max-width: 350px;
    }
}

@media(max-width: 576px) {
    .index-header h1 {
        font-size: 70px;
    }

    .fs-item img {
        height: 350px;
    }

    .nav-logo img {
        max-width: 130px;
    }

    .big-prd,
    .big-prd.modified {
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }

    .print-card-1 .pc-body {
        display: block;
    }

    .checkout-summary {
        max-width: 100%;
    }

    .checkout-card {
        max-width: 100%;
    }

    .pay-tabs {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }

    .vr-view {
        padding-bottom: 70%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        grid-gap: 30px;
        text-align: center;
    }
}


/* desmond css */
.alert{
    margin-bottom: 0;
}
/* desmond css */