@import url('lineicons.css');
@import url('responsive.css');

*,
button,
a,
input,
textarea,
pre {
    font-family: "Poppins", serif;
    color: var(--cl-01);
}
pre {
    white-space: pre-wrap;
    margin: 0;
}

h1,h2,h3,h4,h5,h6 {
    font-weight: 600;
}
ul {
    padding-inline-start: 0;
    margin-block-start: 0;
    margin-block-end: 0;
}

*:not(button, a) {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

a {
    color: var(--cl-01);
}
.collapsible {
    box-shadow: none;
    border-top: none !important;
    border-right: none !important;
    border-left: none !important;
    border-bottom: none !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}
.collapsible-header {
    background: transparent;
    outline: 0;
    border-bottom: none;
    display: flex;
    justify-content: center;
}
.collapsible-body {
    background: #efefef;
}
input,
textarea {
    background-color: #fafafa !important;
    border: 2px solid #e8e8e8 !important;
    border-radius: 8px !important;
    padding: 0 10px !important;
}
input.invalid,
textarea.invalid {
    border-color: red !important;
    color: red !important;
    box-shadow: none !important;
}
input:focus,
textarea:focus-visible {
    border: 2px solid #a5a5a5 !important;
    border-radius: 15px !important;
    outline: none !important;
}
textarea {
    padding: 20px !important;
    resize: none;
}
.btn-block {
    width: 100%;
}
.input-field>label:not(.label-icon).active {
    transform: translateY(-18px) scale(0.8);
}
input {
    width: calc(100% - 25px) !important;
}
textarea {
    height: 120px;
}

.input-field.col input+label,
.input-field.col textarea+label {
    left: 1.75rem !important;
}

label.free{
    position: inherit !important;
}

.checkout-form .input-field {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.hoverable:hover {
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.164) !important;
}

.dropdown-content {
    height: auto !important;
    padding: 15px !important;
    width: fit-content !important;
    border-radius: 25px;
    background: #2c3a2e;
}
.dropdown-content li:hover {
    background-color: transparent !important;
}
.dropdown-content a {
    color: rgb(233, 233, 233) !important;
    transition: all 200ms;
}
.dropdown-content a:hover {
    color: rgb(252, 191, 191) !important;
}

.btn {
    white-space: nowrap;
    background-color: var(--cl-01);
    box-shadow: 10px 10px 20px rgb(0 0 0 / 15%);
    transition: filter 300ms;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: none;
}
.btn:focus {
    background-color: var(--cl-01);
}
.btn:hover {
    background-color: var(--cl-01);
    filter: brightness(1.15);
    box-shadow: 10px 10px 20px rgb(0 0 0 / 15%);
}
.btn-large {
    height: 65px !important;
}

.btn-borderd {
    border: 1px solid #a9a9a9 !important;
    background: transparent !important;
    color: var(--cl-01) !important;
    box-shadow: none !important;
}
.btn-borderd[disabled] {
    border: 1px solid #a9a9a9 !important;
    background: transparent !important;
    color: var(--cl-01) !important;
    opacity: 50%;
}
.toast {
    font-family: "Poppins", serif;
    font-weight: 500;
    background-color: var(--cl-01);
}
.rounded-25{
    border-radius: 25px;
}
.d-flex {
    display: flex;
}
.aic{
    align-items: center;
}
.gap-15 {
    gap: 15px;
}
.flex-between {
    display: flex;
    justify-content: space-between;
}
section {
    margin: 100px 0;
}
.section-padding {
    margin: 0;
    padding: 100px 0;
}
/* Small Screen */
@media all and (max-width: 600px) {  
    section {
        margin: 75px 0;
    }
}
.no-border {
    border: none !important;
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
    border-left: none !important;
}
.section-margin {
    width: var(--section-width);
    margin-right: auto;
    margin-left: auto;
}
.section-title {
    width: var(--section-width);
    margin: 0 auto;
    font-size: var(--font-36);
    font-weight: 600;
    margin-bottom: 40px;
}
.section-title .desc {
    font-size: var(--font-16);
    font-weight: 400;
}

.section-background-1 {
    background-color: var(--bg-03) !important;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999999;
    background-color: var(--bg-01);
}
.page-loader i {
    font-size: 50px;
}

.center {
    display: flex;
    justify-content: center;
}


.app {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
}


/* NavBar */
.nav {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 85px;
    background: rgb(255 255 255 / 90%);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 3px rgb(0 0 0 / 21%);
    z-index: 9999999;
    display: flex;
    align-items: center;
}

.nav .nav-holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: var(--section-width);
    margin: auto;
    height: 100%;
}

.nav .favicon {
    width: 200px;
}
.nav .nav-links {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
    gap: 20px;
}
.nav .nav-links>li{
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}
.nav .nav-links>li>a{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 20px;
    transition: all 300ms ease;
    font-weight: 600;
    font-size: var(--font-16);
    border-radius: 50px;
}
.nav .nav-links li a:hover,
.nav .nav-links li .active{
    color: var(--cl-02);
    text-decoration: underline;
}

.nav-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 200px;
    justify-content: end;
}

.nav-profile li {
    color: var(--cl-01);
}
.nav-profile li i {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 300ms ease;
    cursor: pointer;
}
.nav-profile li > i:hover {
    background-color: var(--bg-02);
}
.favicon img{
    height: 45px;
}
.nav-menu {
    width: var(--section-width);
    margin: auto;
    align-items: center;
    justify-content: space-between;
}
.nav-menu .favicon {
    display: flex;
    align-items: center;
    width: 85px;
}
.nav-menu .favicon img {
    height: 20px;
}
.nav-menu .nav-profile {
    width: 85px;
    gap: 5px;
}
.nav-menu .nav-profile i {
    width: 40px;
    height: 40px;
    font-size: 22px;
}

.mobile-nav {
    position: fixed;
    top: 85px;
    right: 0;
    left: 0;    
    background: rgb(255 255 255 / 90%);
    z-index: 999999;
    backdrop-filter: blur(20px);
    box-shadow: 0px 0 20px rgb(0 0 0 / 15%);
    transform: translateY(-180%);
    transition: all 500ms cubic-bezier(0.75, 0, 0.15, 1);
}
.mobile-nav > ul > li{
    border-bottom: 1px solid rgb(242 242 242);
}
.mobile-nav.active {
    transform: translateY(0);
}
.mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}
.mobile-nav li:last-child a {
    border-bottom: none;
}
.mobile-nav li.active a {
    color: var(--cl-02);
}
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgb(0 0 0 / 18%);
    z-index: 999;
}



.cart-icon {
    position: relative;
}
.cart-counter {
    position: absolute;
    bottom: 15px;
    right: 20px;
    background: rgb(199 128 156);
    color: #fff;
    width: 17px;
    height: 17px;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
}
@media all and (max-width: 600px) {  
    .cart-counter {
        width: 15px;
        height: 15px;
        font-size: 8px;
    }
}
.cart-dropdown {
    position: absolute;
    top: 0px;
    right: -50px;
    background-color: var(--bg-01);
    border-radius: 25px;
    width: 550px;
    overflow: hidden;
    box-shadow: 5px 8px 30px rgb(0 0 0 / 30%);
    display: none;
}
.cart-dropdown .card-title {
    font-size: var(--font-20);
    font-weight: 600;
    margin: 25px;
}
.cart-dropdown ul {
    max-height: 445px;
    margin: 25px;
    overflow-y: auto;
}
.cart-dropdown ul li {
    display: flex;
    height: 120px;
    padding: 25px 0;
    border-bottom: 1px solid #e5e5e5;
}
.cart-dropdown ul li:last-child {
    border-bottom: none;
}
.cart-dropdown ul li .name {
    font-size: var(--font-18);
    font-weight: 600;
    width: 90%;
}
.cart-dropdown ul li .item-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.cart-dropdown ul li .price {
    width: 55px;
    min-width: 55px;    
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    font-weight: 500;
}
.cart-dropdown .image {
    margin-right: 25px;
    border-radius: 25px;
}
.cart-dropdown .card-footer {
    padding: 25px;
    background: var(--bg-02);
}
.cart-dropdown .card-footer .title {
    font-size: var(--font-18);
    font-weight: 600;
}
.cart-dropdown .card-footer .total {
    font-size: var(--font-18);
    font-weight: 600;
}
.cart-dropdown .card-footer .btns {
    display: flex;
    gap: 25px;
    margin-top: 25px;
}
.cart-dropdown .card-footer .btns .btn {
    width: 100%;
}

.open-mobile-menu {
    width: 85px;
    cursor: pointer;
}
.favicon-mobile img {
    height: 35px !important;
}


.main {
    position: absolute;
    top: 85px;
    right: 0;
    left: 0;
}
.main.checkout{
    top: 0;
}

.section-title .arrows {
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-title .arrows > div {
    display: flex;
    align-items: center;
}
.section-title .arrows i {
    color: #7b8ea9;
    font-size: 35px;
    cursor: pointer;
    transition: all 300ms;
}
.section-title .arrows i:hover {
    opacity: 70%;
}

/* Footer */
.footer {
    /* margin-top: 100px; */
    background-color: #2c3a2e;
    padding-top: 50px;
}
.footer *{
    color: rgba(255, 255, 255, 0.897);
}
.footer .footer-holder {
    width: var(--section-width);
    margin: auto;
    display: flex;
}
.footer .footer-holder > ul {
    width: 50%;
}
.footer .footer-icon {
    margin-left: var(--half-padding);
    margin: auto;
    margin-bottom: 20px;
}
.footer .footer-icon img {
    width: 200px;
}
.footer .title {
    color: white;
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 25px;
}
.footer .footer-holder a {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    width: fit-content;
}
.footer .footer-holder a i {
    margin-right: 10px;
}
@media all and (max-width: 992px) {  

    .footer .footer-holder {
        flex-wrap: wrap;
    }

}


.country-picker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    backdrop-filter: blur(10px);
    background-color: rgb(0 0 0 / 12%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}
.country-picker .dialog{
    background-color: white;
    width: 450px;
    height: 300px;
    box-shadow: 0 0 0px 1px rgb(0 0 0 / 14%);
    padding: 30px;
}
.country-picker .dialog .select2-container {
    width: 100% !important;
}

.select2-container {
    z-index: 9999999;
}
.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 40px;
    user-select: none;
    -webkit-user-select: none;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
    padding-left: 15px;
    padding-right: 20px;
}


.sidenav {
    width: 350px;
    background-color: #f8f8f8;
    overflow: hidden;
    padding: 0;
    height: 100%;
    will-change: auto;
}
.sidenav-header{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 60px;
    padding: 10px;
}
.sidenav-body{
    position: fixed;
    left: 0;
    right: 0;
    top: 60px;
    bottom: 0;
    padding: 10px;
    overflow-y: auto;
    overflow-x: hidden;
}
.sidenav-header input{
    height: 35px !important;
}
.sidenav.has-footer .sidenav-body{
    bottom: 90px;
}
.sidenav-footer{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 90px;
}
.sidenav.no-header .sidenav-body{
    top: 0px;
}


/************** Product Info **************/

.product-info {
    width: var(--section-width);
    margin: auto;
    display: flex;
    gap: 30px;
}
.product-info .gallery {
    width: 100%;
    gap: 20px;
}
.product-info .gallery .prod-img-list{
    display: flex;
    gap: 20px;
    height: 100px;
}
.product-info .gallery .prod-img-list .image{
    transition: all 200ms ease;
    border-radius: 19px;
    padding: 2px;
    border: 3px solid transparent;
    overflow: hidden;
}
.product-info .gallery .preview-image {
    overflow: hidden;
    border-radius: 25px;
}
.product-info .gallery .preview-image img.animate{
    animation: imgChange 200ms ease;
}
@keyframes imgChange {
    0% {
        transform: scale(1);
    }
    1% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
.product-info .gallery .prod-img-list .image:hover{
    box-shadow: 6px 5px 20px -2px rgba(0, 0, 0, 0.233);
    border: 3px solid grey;
    transform: scale(1.07);
}
.product-info .gallery .prod-img-list .image:has( .active) {
    border: 3px solid grey;
}
.product-info .info {
    width: 100%;
}
.product-info .info .image {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 25px;
    margin-bottom: 25px;
}

.product-info .header-container {
    display: flex;
}
.product-info .pro-header {
    display: flex;
    align-items: center;
}
.product-info .pro-header .reviews{
    text-decoration: underline;
    color: var(--cl-02);
    cursor: pointer;
}
.product-info .qiuck-info{
    justify-content: space-between;
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-top: 1px dashed #bebebe;
    border-bottom: 1px dashed #bebebe;
}
.product-info .qiuck-info span{
    font-family: monospace;
}


.sizes a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.product-info .action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-info .action-row .qty {
    display: flex;
    gap: 25px;
    align-items: center;
    background: var(--bg-02);
    width: fit-content;
    padding: 6px 15px;
    border-radius: 46px;
    font-size: var(--font-18);
}
.product-info .action-row .qty .number {
    width: 40px !important;
    display: flex;
    border: none !important;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
    padding: 0 !important;
}
.product-info .action-row .qty .number:disabled {
    color: var(--cl-01);
}
.product-info .action-row .qty .number:focus {
    box-shadow: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.product-info .action-row .qty .btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
}
.product-info .desc-title {
    border-bottom: 2px dashed #bebebe;
    padding: 20px 0;
}
.product-info .desc {
    padding: 20px;
    color: var(--cl-02);
}


.added-to-cart {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.123);
    z-index: 99999;
}
.added-to-cart video {
    border-radius: 25px;
    width: 300px;
}



.home-hero {
    height: calc(100vh - 85px);
}
.home-hero .info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.home-hero button {
    width: 350px;
}
.home-hero .img-holder {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.home-hero .img-holder img{
    transition: all 400ms ease;
}
.home-hero .img-holder img:hover{
    transform: scale(1.1);
}
.home-hero .img-holder.num-1 {
    height: 400px;
}
.home-hero .img-holder.num-2 {
    height: 250px;
}
.home-hero .img-holder.num-3 {
    height: 300px;
}
.home-hero .img-holder.num-4 {
    height: 300px;
}
.home-hero .img-holder.num-5 {
    height: 300px;
}
.home-hero .img-holder.num-6 {
    height: 400px;
}


.home-about .top-part{
    display: flex;
    gap: 20px;
}
.home-about .top-part * {
    color: white;
}
.home-about .top-part .left-part {
    width: 60%;
    border-radius: 25px;
    background: linear-gradient(135deg, rgb(18, 30, 70) 0%, rgb(26, 42, 92) 100%);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}
.home-about .top-part .left-part .info{
    z-index: 3;
    position: relative;
}
.home-about .left-part .bg-items{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
.home-about .left-part .bg-items .dot-1,
.home-about .left-part .bg-items .dot-2{
    border-radius: 50%;
    width: 10px;
    height: 10px;
    position: absolute;
    background-color: #ffffff;
    opacity: 20%;
    animation: bgDot 4s ease-in-out infinite;
}
.home-about .left-part .bg-items .dot-1{
    bottom: 130px;
    right: 125px;
}
.home-about .left-part .bg-items .dot-2{
    top: 75px;
    right: 50px;
}
.home-about .left-part .bg-items .circle-top,
.home-about .left-part .bg-items .circle-bottom {
    border-radius: 50%;
    position: absolute;
    border: 1px solid #ffffff;
    opacity: 20%;
    animation: bgCircle 6s ease-in-out infinite;
}

.home-about .left-part .bg-items .circle-top {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
}
.home-about .left-part .bg-items .circle-bottom {
    width: 200px;
    height: 200px;
    bottom: -40px;
    left: -80px;
}

@keyframes bgCircle {
    0% {
        transform: scale(1);
        opacity: 25%;
    }
    55% {
        transform: scale(1.1);
        opacity: 15%;
    }
    60% {
        transform: scale(1.1);
        opacity: 15%;
    }
    95% {
        transform: scale(1);
        opacity: 25%;
    }
    100% {
        transform: scale(1);
        opacity: 25%;
    }
}
@keyframes bgDot {
    0% {
        transform: scale(1);
        opacity: 20%;
    }
    55% {
        transform: scale(1.3);
        opacity: 15%;
    }
    60% {
        transform: scale(1.3);
        opacity: 15%;
    }
    95% {
        transform: scale(1);
        opacity: 20%;
    }
    100% {
        transform: scale(1);
        opacity: 20%;
    }
}
.home-about .top-part .left-part .sub-heading {
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 600;
    padding-left: 50px;
    position: relative;
}
.home-about .top-part .left-part .sub-heading::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 30px;
    background-color: white;
    height: 1px;
}
.home-about .top-part .left-part button,
.home-about .top-part .left-part button i {
    color: var(--cl-01) !important;
}
.home-about .top-part .right-part {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.home-about .top-part .item-type-1 {
    border-radius: 25px;
    height: 100%;
    padding: 50px 40px;
    box-shadow: 0 10px 40px #121e464d;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.home-about .top-part .item-type-1:first-child {
    background-color: #232f26;
}
.home-about .top-part .item-type-1:last-child {
    background-color: #101a3c;
}
.home-about .top-part .item-type-1 .value{
    font-size: 70px;
    font-weight: 900;
    line-height: 1;
}

.home-about .bottom-part {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.home-about .bottom-part .item-type-2{
    position: relative;
    width: 100%;
    background-color: white;
    border-radius: 25px;
    box-shadow: 0px 4px 20px 0px rgba(18, 30, 70, 0.06);
    padding: 40px;
    transition: 600ms ease;
    overflow: hidden;
}
.home-about .bottom-part .item-type-2 .hover-bar{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
}
.home-about .bottom-part .item-type-2 .hover-bar div{
    width: 0%;
    height: 5px;
    background-color: #121e46;
    transition: 600ms ease;
}
.home-about .bottom-part .item-type-2:hover .hover-bar div{
    width: 100%;
}


.home-about .bottom-part .item-type-2 .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    background-color: #121e46;
    border-radius: 15px;
    transition: 600ms ease;
    box-shadow: 2px 2px 15px -5px rgb(0 0 0 / 27%);
}
.home-about .bottom-part .item-type-2 .icon svg{
    stroke: white !important;
}
.home-about .bottom-part .item-type-2 .title{
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -1px;
}
.home-about .bottom-part .item-type-2 .desc{
    color: var(--cl-02);
}

.home-about .bottom-part .item-type-2:hover{
    box-shadow: 5px 14px 36px 5px rgba(18, 30, 70, 0.094);
}
.home-about .bottom-part .item-type-2:hover .icon{
    transform: rotate(-10deg) scale(1.05);
    box-shadow: 4px 4px 15px 2px rgb(3 0 161 / 40%);
}


.tab-holder {
    width: fit-content;
    border-radius: 100px;
    padding: 5px;
    background-color: #f8f9fb;
    box-shadow: inset 0 1px 3px #121e460f;
    overflow: auto;
}
@media all and (max-width: 992px) {
    .tab-holder {
        width: 100%;
    }
}
.tab-holder .tabber {
    display: flex;
}
.tab-holder .tab{
    color: #6e768e;
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 200ms ease;
    white-space: nowrap;
}
.tab-holder .tab:hover{
    color: #191b21;
}
.tab-holder .tab.active{
    background-color: #121e46;
    color: white;
    box-shadow: 0 4px 15px #121e4640;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}

.tabber.alt {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.089);
}
.tabber.alt .tab{
    padding: 15px 20px;
    color: rgb(165, 165, 165);
    transition: all 200ms ease;
    border-bottom: 1px solid transparent;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
}

.tabber.alt .tab:hover{
    color: black;
}
.tabber.alt .tab.active{
    border-color: black;
    color: black;
}

.item-container {
    display: flex;
    gap: 15px;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    padding-bottom: 50px;
    padding-top: 30px;
}
.item-container.horizontal {
    overflow: auto;
}
.item-container.list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    width: 100%;
}

.item-container.horizontal::-webkit-scrollbar {
    width: 12px;
    height: 3px;
}

.item-container.horizontal::-webkit-scrollbar-track {
  background: #dfdfdf;
  border-radius: 10px;
}

.item-container.horizontal::-webkit-scrollbar-thumb {
  background: #575757;
  border-radius: 10px;
}

.item-container.horizontal::-webkit-scrollbar-thumb:hover {
  background: #555;
}


.item-container .item {
    padding: 10px;
    border-radius: 32px;
    background: white;
    transition: all .4s cubic-bezier(.25,.46,.45,.94);
    display: flex;
    flex-direction: column;
}
.item-container.horizontal .item {
    width: 290px;
    min-width: 290px;
}
@media all and (max-width: 600px) {
    .item-container.horizontal .item {
        width: 200px;
        min-width: 200px;
    }
}
.item-container .image {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    border-radius: 25px;
    position: relative;
    transition: all .4s cubic-bezier(.25,.46,.45,.94);
    aspect-ratio: 1 / 1;
    flex: 1 1 30%;
}
.item-container.list .image {
    height: auto;
    width: 100%;
}
.item-container.horizontal .image img {
    height: 100%;
}
.item-container.list .image img {
    width: 100%;
}
.item-container .image .focus-image {
    position: absolute;
    transform: scale(1.2);
    opacity: 0;
    transition: transform .2s cubic-bezier(.25,.46,.45,.94),opacity .28s cubic-bezier(.25,.46,.45,.94);
}

.item-container .item .image::after {
    content: "";
    transition: all 200ms ease;
    background: linear-gradient(180deg, #00000000 0%, #0000001f 100%);
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 80px;
    opacity: 0;
}
.item-container .item:hover .image::after,
.item-container .item .image:has(.qty:not(.hide))::after {
    opacity: 1;
}

.item-container .item .add-to-cart {
    opacity: 0;
    position: absolute;
    bottom: 10px;
    right: 0;
    left: 0;
    transition: transform 200ms ease;
    z-index: 2;
    box-shadow: none;
    width: 60%;
    height: 50px;
    transform: translate(35%, 20px);
    border-radius: 2rem;
    padding-bottom: 2px;
}

.qty-control {
    position: absolute;
    bottom: 10px;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    z-index: 2;
    width: 60%;
    height: 50px;
    transform: translate(35%, -4px);
    background-color: #ffffff;
    border-radius: 2rem;
    box-shadow: 10px 10px 20px rgb(0 0 0 / 15%);
}

.qty-control button {
    color: #121e46;
    height: 50px;
    width: 50px;
    border-radius: 2rem;
    box-shadow: none;
}
.qty-control input {
    background: white !important;
    color: #121e46;
    height: 100%;
    border: none !important;
    text-align: center;
    border-radius: 2rem !important;
    margin: 0 !important;
}
.qty-control button:hover {
    color: #121e46;
    box-shadow: none !important;
}
.qty-control input:focus {
    box-shadow: none !important;
    border: 0 !important;
}






.quick-cart-table{
    
}
.quick-cart-table .thumb{
    width: 75px;
}
.quick-cart-table .thumb img{
    display: block;
    width: 100%;
    border-radius: 1rem;
}
.quick-cart-table .remove{
    width: 50px;
    text-align: center;
}
.quick-cart-table .remove i{
    cursor: pointer;
    font-size: 20px;
}



.qty-ctrl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    z-index: 2;
    width: 150px;
    height: 50px;
    background-color: white;
    border-radius: 2rem;
    border: 2px solid #eee;
}

.qty-ctrl button {
    color: #121e46;
    background-color: white !important;
    height: 45px;
    width: 45px;
    border-radius: 2rem;
    box-shadow: none;
}
.qty-ctrl input {
    background-color: white !important;
    color: #121e46;
    height: 100%;
    border: none !important;
    text-align: center;
    border-radius: 2rem !important;
    margin: 0 !important;
}
.qty-ctrl .btn:hover {
    color: #121e46;
    box-shadow: none !important;
    background-color: white !important;
}
.qty-ctrl input:focus {
    box-shadow: none !important;
    border: 0 !important;
}







.item-container .item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px -10px #00000024;
}
.item-container .item:hover .add-to-cart {
    opacity: 1;
    transform: translate(35%, -4px);
    box-shadow: none;
}

.item-container .item .image:hover .focus-image {
    transform: scale(1);
    opacity: 1;
}

.testimonials {
    background: #19295a;
    height: 250px;
    overflow: hidden;
    position: relative;
}
.testimonials ul {
    position: relative;
    width: var(--section-width);
    margin: auto;
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 3;
}
.testimonials li {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.testimonials li:last-child {
    border-right: none;
}
@media all and (max-width: 600px) {
    .testimonials ul {
        padding: 30px 0;
    }
    .testimonials li {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 30px 0;
    }
    .testimonials li:last-child {
        border-bottom: none;
    }
}
.testimonials li:last-child::after {
    display: none;
}
.testimonials .title {
    font-size: 50px;
    font-weight: 900
}
.testimonials .bg-el {
    position: absolute;
    bottom: -550px;
    right: -500px;
    width: 1200px;
    height: 1200px;
    background-color: #2c3a2e;
    border-radius: 100%;
    filter: blur(300px);
    animation: testimAnim 15s ease-in-out infinite;
}
@keyframes testimAnim {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(1000px, 300px);
    }
    0% {
        transform: translate(0, 0);
    }
}

.section-sub-header {
    width: fit-content;
    margin: auto;
    padding: 0 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
}
.section-sub-header::after {
    content: "";
    position: absolute;
    right: 0;
    top: 9px;
    height: 1px;
    width: 30px;
    background-color: #334155;
}
.section-sub-header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    height: 1px;
    width: 30px;
    background-color: #334155;
}
.review-card {
    background: white;
    padding: 25px;
    border-radius: 25px;
    border: 1px solid #00000017;
    transition: 600ms ease;
}
.review-card:hover {
    box-shadow: 0px 24px 50px rgba(18, 30, 70, 0.12);
    border-color: transparent;
}
.review-card blockquote {
    font-style: italic;
    color: rgba(0, 0, 0, 0.656);
    padding-left: 15px;
    border-width: 2px;
}

.review-card .bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid rgba(18,30,70,.08);
}
.review-card .avatar {
    background: #121E46;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}
.review-card .icon {
    width: 30px;
    height: 30px;
    background: #22c55e1a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto 0;
}
.review-card .icon svg{
    stroke: #22c55e;
}

.review-summary {
    display: flex;
    align-items: center;
    background: white;
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid #00000017;
    transition: all 400ms ease;
    display: flex;
    justify-content: center;
}
.review-summary:hover {
    box-shadow: rgba(18, 30, 70, 0.1) 0px 4px 15px;
    border-color: #121E46;
}

.why-us {
    width: 30%;
    background: #121e46;
    padding: 35px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.why-us .sub-heading {
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 600;
    padding-left: 33px;
    position: relative;
    color: #ffffffba;
    margin-bottom: 10px;
}
.why-us .sub-heading::after{
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 20px;
    background-color: white;
    height: 1px;
}
.why-us {
    width: 35%;
    background: #121e46;
    padding: 60px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.compare-table {
    position: relative;
    width: 65%;
    border-radius: 25px;
    background: white;
    box-shadow: 0 10px 40px #121e4614;
    overflow: hidden;
    display: flex;
    margin-top: -30px;
}
.compare-table .vs{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}
.compare-table .vs div{
    background: #121e46;
    color: white;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 8px 25px #121e464d;
    z-index: 10;
}
.compare-table .left-part {
    background: #2c3a2e;
    padding: 35px;
    padding-bottom: 50px;
}
.compare-table .part-header {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    margin-bottom: 10px;
    padding-bottom: 20px;
}
.compare-table .left-part .btn {    
    background: #ffffff26;
    box-shadow: none;
    font-size: 12px !important;
    font-weight: 600;
    height: 30px;
}
.compare-table .left-part tr {
    border-color: rgba(255, 255, 255, .08);
}
.compare-table .left-part tr:last-child {
    border-bottom: none;
}
.compare-table .left-part table .icon {
    background-color: #22c55e;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.compare-table .right-part {
    padding: 35px;
    padding-bottom: 50px;
    background-color: #f8f9fb;
}
.compare-table .right-part tr {
    border-color: #121e460f;
}
.compare-table .right-part tr:last-child {
    border-bottom: none;
}


.home-stack-holder {
    position: relative;
    height: calc(290px * 4);
    display: flex;
}
@media all and (max-width: 600px) {
    .home-stack-holder {
        height: calc(290px * 5);
    }
}
.home-fun-facts {
    position: sticky;
    top: 100px;
    width: 25%;
    margin-right: 70px;
    height: fit-content;
}
.stacking-card {
    z-index: 1;
    position: sticky;
    top: 100px;
    border: 2px solid #80808024;
    padding: 50px 60px;
    border-radius: 25px;
    margin-bottom: 20px;
    height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.stacking-card:nth-child(1) {
    background-color: #e8e8e8;
    transform: rotate(-1deg);
}
.stacking-card:nth-child(2) {
    background-color: #2c3a2e;
    transform: rotate(1deg);
}
.stacking-card:nth-child(3) {
    background-color: #f3f3f3;
    transform: rotate(-2deg);
}
.stacking-card:nth-child(4) {
    background-color: #121e46;
    transform: rotate(2deg);
}

.last-msg-section {
    background-color: #121e46;
}
.last-msg-section .white-text{
    color: #ffff !important;
}


.mosaic-row {
    background-color: #121e46;
    display: flex;
    height: calc(100vh - 80px);
}
.mosaic-row.info-only {
    height: auto;
}
.mosaic-row.smaller {
    height: calc(88vh - 80px);
}
.mosaic-row.smaller-1 {
    height: 500px;
}
@media all and (max-width: 600px) {
    .mosaic-row {
        height: calc(200vh - 160px);
    }
    .mosaic-row.smaller {
        height: calc(100vh);
    }
}
.mosaic-row .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    padding-left: 50px;
    padding-right: 35px;
}
.mosaic-row.info-only .info {
    padding-top: 100px;
    padding-bottom: 100px;
}
.mosaic-row .info.off-color {
    background-color: #2c3a2e;
}
.mosaic-row .image {
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 50%;
}
.mosaic-row .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.mosaic-row .title {
    line-height: 1;
}
.mosaic-row .big-number {
    text-align: center;
    font-size: 100px;
    font-weight: 900;
    color: #baf67c;
}

.hero-holder {
    position: relative;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #121E46;
}
.hero-holder.fullscreen {
    height: calc(100vh - 80px) !important;
}
.hero-holder.smaller {
    height: 200px !important;
}
.hero-holder.tiny {
    height: 100px !important;
}
.hero-holder .bg-image {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
.hero-holder .bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8);
}
.hero-holder .info {
    z-index: 2;
}
.reach-fixed-width {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}
.reach-fixed-width div{
    height: 90px;
    padding: 25px 20px;
    display: inline-flex;
    align-items: center;
}

.iso-holder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.iso-holder .item{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 40px 30px;
    transition: 400ms ease;
    background-color: white;
}
.iso-holder .item:hover{
    transform: translateY(-10px);
}
.iso-holder .item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background-color: #121e46;
}

.principle-list li {
    display: flex;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    margin: 0 160px;
    margin-bottom: 15px;
    border-radius: 12px;
    transition: all 300ms ease;
    padding: 0 35px;
    height: 170px;
}
@media all and (max-width: 600px) {
    .principle-list li {
        margin-right: 0;
        margin-left: 0;
    }
}
.principle-list .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.principle-list li:hover {
    transform: translateX(10px);
}
.principle-list .number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #121e46 0%, #000000 100%);
    color: white;
    font-size: 18px;
    margin-right: 20px;
}

.last-msg-cards {
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    gap: 20px;
}
.last-msg-cards .item {
    width: calc(50% - 10px);
    background-color: white;
    border-radius: 25px;
    padding: 25px;
    transition: 400ms ease;
}
.last-msg-cards .item:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.last-msg-cards .item .icon{
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    background-color: #e8f0e8;
    color: #2c3a2e;
}


.contact-info {
    border-radius: 15px;
    background-color: #2c3a2e;
    padding: 35px;
    width: 40%;
    margin-right: 35px;
}
.contact-info .icon{
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-right: 20px;
}

.contact-form {
    width: 60%;
    height: fit-content;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.08);
    padding: 35px;
    padding-top: 45px;
}

.partner-steps {
    display: flex;
    gap: 35px;
    position: relative;
}
.partner-steps::before {
    content: "";
    position: absolute;
    top: 40px;
    right: 150px;
    left: 150px;
    height: 2px;
    background-color: rgb(0 0 0 / 8%);
}
.partner-steps .number {
    margin: 0 auto;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #121e46;
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 900;
    position: relative;
}
.partner-steps .number::before {
    content: "";
    position: absolute;
    top: -5px;
    right: -5px;
    left: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed #121e46;
    opacity: 20%;
    animation: borderRotate 20s linear infinite;
}
@keyframes borderRotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.scroll-top {
    position: fixed;
    right: 60px;
    bottom: 40px;
    width: 50px;
    height: 50px;
    box-shadow: 4px 4px 10px rgb(0 0 0 / 20%);
    transition: all 200ms ease-in-out;
    z-index: 999;
}
.scroll-top.hidden {
    transform: translateY(100px);
}
.scroll-top:hover {
    box-shadow: 4px 4px 15px rgb(0 0 0 / 40%);
    transform: scale(1.05);
}







@media all and (max-width: 992px) {  

    .checkout-container {
        flex-wrap: wrap;
    }
    .cart-card {
        padding-left: 0;
        border-left: none;
    }
    .checkout-holder {
        gap: 20px;
        padding-right: 0;
    }
    
    .cart-summary {
        width: var(--section-width);
        margin: auto;
    }


}

/* Animations */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.rotate {
    -webkit-animation:spin 1s linear infinite;
    -moz-animation:spin 1s linear infinite;
    animation:spin 1s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }