:root {
    --color-1: #23ade3;
    --color-2: #333333;
}

/*-------------------------------------------------------------------------------
  1. Global
-------------------------------------------------------------------------------*/

/* 1.1 General */

@font-face {
    font-family: lg;
    src: url(../fonts/NexaDemo-Light.ttf);
}

@font-face {
    font-family: Nexalight;
    src: url(../fonts/NexaDemo-Light.ttf);
}

@font-face {
    font-family: Nexabold;
    src: url(../fonts/NexaDemo-Bold.ttf);
}

@font-face {
    font-family: Nexabold;
    src: url(../fonts/NexaDemo-Bold.ttf);
}

@font-face {
    font-family: brushscript;
    src: url(../fonts/BrushScriptOpti-Regular.ttf);
}

html {
    -webkit-font-smoothing: antialiased;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.72857143;
    color: #747478;
    overflow-x: hidden;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

h1,
.h1 {
    margin: 0 0 20px 0;
    font-weight: 600;
}

h2,
.h2 {
    position: relative;
    margin: 0 0 10px 0;
    font-weight: 500;
}

h3,
.h3 {
    margin-bottom: 10px;
    font-weight: 500;
}

h4,
.h4 {
    font-weight: 500;
    margin: 0;
}

h5,
.h5 {
    letter-spacing: 1px;
    line-height: 1.3;
}

strong {
    font-weight: 700;
}

p {
     margin: 10px 0 0;
}

a {
    color: var(--color-1);
    -webkit-transition: color 0.3s ease-out;
    -o-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #999;
    outline: none;
}

a:focus {
    text-decoration: none;
}

.bg-color-1 {
    background-color: var(--color-1);
}

.bg-color-2 {
    background-color: var(--color-2);
}

.button,
.button-2 {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    display: inline-block;
    padding: 10px 25px;
    outline: none;
    transition: 0.5s;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 1px;
}

.button {
    background: var(--color-1);
    border: 2px solid var(--color-1);
}

.button-2 {
    background: #000;
    border: 2px solid #000;
}

.button:hover,
.button-2:hover {
    color: #000;
    background-color: #fff;
}

.button.btn-sm,
.button-2.btn-sm {
    padding: 6px 20px;
    font-size: 13px;
}

.button.btn-bg,
.button-2.btn-bg {
    padding: 6px 2em;
    font-size: 1.5em;
}

.title-sec {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 40px;
    color: #292929;
    line-height: 1.4;
}

h3.title-sec {
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 1.8rem;
    color: var(--color-1);
}

/*-------------------------------------------------------------------------------
  Header
-------------------------------------------------------------------------------*/

header {
    background: #fff;
}

.main_header {
    border-bottom: 1px solid #ddd;
}

header .logo {
    max-width: 100px;
}

header {
    width: 100%;
}

/*Nav*/
.navbar {
    height: 100%;
    background: transparent;
    padding: 5px 40px !important;
}

header.fixed-top .navbar {
    border-bottom: 0.1px solid #000;
}

.navbar-nav li a {
    text-decoration: none;
    text-align: center;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    font-size: 12.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    padding: 8px 1rem;
    color: #23232c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav li {
    padding: 5px;
    margin-left: 10px;
    margin-right: 10px;
}

.navbar-nav li a:hover {
    text-decoration: none;
    color: #000;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
}

.navbar-nav li a.dropdown-toggle {
    padding-left: 2px;
    padding-right: 2px;
}

header li.nav-item {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    height: 80px;
}

header li.nav-item i {
    line-height: 1;
}

header.fixed-top .navbar-nav li a:hover {
    text-decoration: none;
    color: #fff;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
}

.navbar .navbar-brand {
    margin-right: 2.1rem;
}

.navbar .navbar-brand img {
    max-height: 70px;
}

.fixed-top .navbar-brand img {
    max-height: 60px;
    transform: translateY(0px);
    filter: drop-shadow(0px 1000px 0 #fff);
    transform: translateY(-1000px);
}

header {
    transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    animation: 0.5s slideout;
    animation-timing-function: ease-in-out;
}

@keyframes slideout {
    0% {
        top: -110px;
    }

    100% {
        top: 0px;
    }
}

header.fixed-top {
    background: rgb(0, 0, 0);
    transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    animation-name: slidein;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
}

@keyframes slidein {
    0% {
        top: -110px;
    }

    100% {
        top: 0%;
    }
}

.fixed-top .navbar-nav .dropdown-menu li a {
    color: #000 !important;
}

.navbar-nav li a:hover {
    text-decoration: none;
}

.navbar-nav li {
    margin: 0px;
    position: relative;
}

.navbar-toggler {
    background: #fff;
    border-radius: 0px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler {
    background: #000;
    color: #fff;
    border: 0px;
}

ul.user-cart-list {
    padding: 0;
    list-style: none;
    display: inline;
}

ul.user-cart-list li {
    display: inline-block;
    padding: 0 10px;
}

ul.user-cart-list li a {
    font-size: 20px;
    color: #000;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    border-radius: 0px;
    top: 70px;
    border: none;
}

.dropdown-menu li a:hover {
    background-color: var(--color-1);
    color: #fff;
}


/* .rev_slider_wrapper .overlay {
  background: rgba(0, 0, 0, .20);
  width: 50%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
} */

/*-------------------------------------------------------------------------------
  3. Home
-------------------------------------------------------------------------------*/

#about .about-img img {
    width: 62.5%;
    max-height: 450px;
    object-fit: contain;
}

#hm-banners .banner-bx-1 .grid-banner_item,
#hm-banners .banner-bx-2 .grid-banner_item {
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

#hm-banners .banner-bx-1 img,
#hm-banners .banner-bx-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#hm-banners .banner-bx-1 .grid-banner_item:first-child,
#hm-banners .banner-bx-2 .grid-banner_item:last-child {
    height: 450px;
}

#hm-banners .banner-bx-1 .grid-banner_item:last-child,
#hm-banners .banner-bx-2 .grid-banner_item:first-child {
    height: 290px;
}

#hm-banners .grid-banner_item:before {
    content: "";
    background: rgb(35 173 227 / 0%);
    background: linear-gradient(0deg, #191919db 10%, rgba(255, 255, 255, 0) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
}

#hm-banners .grid-banner_item:hover:before {
    background: rgba(35, 173, 227, 0.8);
    transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
}

.content_abs {
    position: absolute;
    left: 2.5rem;
    bottom: 2.5rem;
}

.content_abs h3 {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
}

.content_abs a.btn-link {
    color: #fff;
}

.banner-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: pointer;
}

.content_abs {
    z-index: 2;
}

.content_abs a.btn-link {
    position: relative;
    z-index: 3;
}


.ctgry-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.ctgry-list li {
    display: inline-block;
    text-align: center;
    width: 20%;
    float: left;
    padding: 30px 0;
    border-radius: 3px;
    transition: all 0.3s ease-in-out 0ms;
}

/* .ctgry-list li:hover {
  transition: all .3s ease-in-out 0ms;
  box-shadow: 0 0 10px rgb(255 255 255 / 15%);
} */

.ctgry-list li:hover i {
    background: var(--color-1);
    color: #fff;
    box-shadow: 0 0 10px rgb(255 255 255 / 15%);
    transition: all 0.3s ease-in-out 0ms;
    border: 2px solid #fff;
}

.ctgry-list li i {
    font-size: 1.8em;
    line-height: 1;
    padding: 20px;
    background-color: #fff;
    border-radius: 40px;
    color: var(--color-1);
    width: 80px;
    height: 80px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border: 2px solid var(--color-1);
}

.ctgry-list li h4 {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    word-wrap: break-word;
}

#highlights .splide__track {
    overflow: visible;
}

#highlights .splide__slide img {
    height: 450px;
    width: 100%;
    object-fit: cover;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

#services {
    background: rgba(19, 56, 190, 0.5) url(../img/Model_7.jpeg);
    background-position: center;
    background-size: cover;
    background-blend-mode: color;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}


#services .srvc-box {
    background: transparent;
    box-shadow: 0 0 10px #cdcdcd7a;
    padding: 20px;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(6px);
    border-radius: 15px;


    display: inline-grid;
    align-content: space-evenly;
    justify-content: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    padding: 50px;
}

#services:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    top: 0;
    opacity: 0.5;
    z-index: -1;
}


#services .srvc-box:before {
    content: "";
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    height: 600px;
    width: 50%;
    position: absolute;
    right: -40%;
    transform: rotate(-45deg);
    top: -300px;
    transition: all 0.3s ease-in-out 0s;
}

#services .srvc-box:hover:before {
    position: absolute;
    right: 90%;
    top: 70px;
    transition: all 0.3s ease-in-out 0s;
}

#services .srvc-box i {
    font-size: 3em;
    color: #fff;
    border: 2px dashed #fff;
    border-radius: 100px;
    padding: 15px;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    align-content: center;
    line-height: 1;
    margin-bottom: 20px;
}

#services .srvc-box h4 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

#services .srvc-box a {
    color: #ffffff;
}

.testimonail .carousel-item {
    min-height: 200px;
}

.testimonail p {
    color: #fff;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    margin-bottom: 40px;
}

.testimonail .carousel-control-next,
.testimonail .carousel-control-prev {
    font-size: 2em;
    color: #fff;
    top: auto;
    width: 30px;
}

.testimonail .carousel-control-prev {
    left: 90%;
}

.footer .service-promotion.horizontal {
    border-bottom: 1px solid #cfcdcd;
}

.service-promotion.horizontal {
    padding-top: 2.9375rem;
    padding-bottom: 2.3rem;
}

.service-promotion.horizontal .service-promotion__icon i {
    font-size: 3em;
    line-height: 1;
    color: #000;
}

.service-promotion.horizontal .service-promotion__title {
    color: #000;
}

.menu-link {
    display: inline-block;
    position: relative;
    padding: 0.2em 0;
    color: #222222;
    line-height: 1.5em;
}

.footer .menu-link {
    margin-top: 3px;
    margin-bottom: 2px;
    font-size: .8em;
}

.footer-copyright {
    font-size: .8em;
}

/*-------------------------------------------------------------------------------
  Internal Pages
-------------------------------------------------------------------------------*/

#page_header {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: color;
    /* background-attachment: fixed; */
    padding-top: 15em;
    padding-bottom: 15em;
}

#page_header h1 {
    text-transform: uppercase;
    font-size: 3em;
    color: #fff;
    font-weight: bold;
}

#page_header.product-page {
    background-image: url(../../front/img/all_products_straight_on.jpeg);
    padding: 12rem 0;
}

#page_header.products-page {
    background-image: url(../../front/img/banner2.jpeg);
}

#page_header.packages-page {
    background-image: url(../../front/img/Model_17.jpeg);
}

#page_header.privacy-policy-page {
    background-image: url(../../front/img/New8wonderLogo.png);
    background-size: contain;
}

#pro-banners .grid-banner_item {
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

#pro-banners img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#pro-banners .grid-banner_item {
    height: 350px;
}

#pro-banners .grid-banner_item:before {
    content: "";
    background: rgb(19, 56, 190);
    background: linear-gradient(45deg,
            rgba(19, 56, 190, 0.5) 10%,
            rgba(255, 255, 255, 0) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
}

#pro-banners .grid-banner_item:hover:before {
    background: rgba(19, 56, 190, 0.8);
    transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
}

.nav.nav-vertical {
    display: block;
}

.nav-vertical .nav-link {
    padding-left: 0;
    padding-right: 0;
}

.list-styled {
    list-style-type: none;
    padding-left: 0;
}

.list-styled-item {
    margin-bottom: 10px;
}

.product-image .card-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}


.cat-list .list-styled-item {
    border-bottom: 1px dashed #ddd;
}

.cat-list .list-styled-link {

    font-size: 14px;
    ;
    padding-bottom: 15px;
}

.list-styled-link {
    color: #525252;
    display: block;
}


.fw-normal.product.title h5 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;

}

.form-check {
    align-items: center;
    display: flex;
    padding-left: 10px;
}

.form-check>.form-check-input {
    background-position: 50%;
    background-size: 10px 8px;
    float: none;
    margin-top: 0;
    margin-left: 0;
}

.form-check-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #e5e5e5;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    border: 1px solid transparent;
    height: 1.125rem;
    margin-top: 0.1875rem;
    -webkit-print-color-adjust: exact;
    transition: all 0.1s ease-in-out;
    vertical-align: top;
    width: 1.125rem;
}

.form-check>.form-check-label {
    margin-left: 0.5rem;
    font-weight: 400;
    font-size: 1rem;
}

.form-check-label {
    color: #767676;
    cursor: pointer;
}

.products .card {
    border: none;
    border-radius: 0px !important;
}

.card-img {
    position: relative;
}

.card-img,
.card-img-bottom,
.card-img-top {
    width: 100%;
    height: 100%;
    /* min-height: 300px; */
    object-fit: contain;
    border-radius: 0px;
}

.card-img-hover {
    display: block;
}

.card-img-hover .card-img-back {
    opacity: 0;
}

.card-img-hover .card-img-top {
    transition: opacity 0.2s ease-in-out;
}

.card-img-hover>* {
    float: left;
}

.card-img-hover .card-img-front {
    margin-left: -100%;
}

.card-img:hover .card-img-hover .card-img-back {
    opacity: 1;
}

.card-img:hover .card-img-hover .card-img-front {
    opacity: 0;
}

.card-actions {
    bottom: 0;
    display: flex;
    justify-content: center;
    padding: 1.25rem;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.card-actions .card-action {
    left: 0;
    opacity: 0;
    position: relative;
    right: 0;
    top: 0;
    transform: translateY(0.5rem);
    transition: all 0.1s ease-in-out;
    transition-property: transform, opacity;
}

.btn-circle.btn-xs {
    width: calc(2.40625rem + 2px);
}

.card-img:hover .card-actions .card-action {
    opacity: 1;
    transform: translateY(0);
}

.btn-circle.btn-xs {
    width: calc(2.40625rem + 2px);
    align-items: center;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    padding: 0;
    background-color: #fff;
    color: #1f1f1f;
    font-size: 0.9375rem;
    line-height: 1.40625rem;
    height: calc(2.40625rem + 2px);
    margin: 0 5px;
}

.btn-circle.btn-xs i {
    line-height: 0;
}

.btn-circle.btn-xs:focus,
.btn-circle.btn-xs:hover {
    background-color: var(--color-1);
    border-color: var(--color-1);
    color: #fff;
}

.mb-7 {
    margin-bottom: 2rem !important;
}

/*-------------------------------------------------------------------------------
  Product Single Page
-------------------------------------------------------------------------------*/

.form-check-img>.form-check-input {
    background-clip: padding-box;
    background-size: cover;
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    height: 100%;
    height: 70px;
    opacity: 0.8;
    width: 100%;
    width: 70px;
}

.form-check-img>.form-check-input:checked {
    border-bottom-color: #1f1f1f;
    opacity: 1;
}

.form-check-size>.form-check-input:checked+.form-check-label {

    opacity: 1;
    color: #1f1f1f;
    border: 2px solid #1f1f1f;
}

.form-check-option .form-check-label.checked {
    opacity: 1;
    color: #1f1f1f;
    border: 2px solid #1f1f1f;
}

.form-check-inline {
    display: inline-flex;
    min-height: 1.5rem;
    padding-left: 0;
    margin-right: 0.5rem;
}

.form-check-size>.form-check-input,
.form-check-option>.form-check-input {
    display: none;
}

.form-check>.form-check-input {
    background-position: 50%;
    float: none;
    margin-top: 0;
}

.form-check-size>.form-check-label,
.form-check-option>.form-check-label {
    border: 1px solid #ddd;
    margin-left: 0;
    min-width: 4rem;

    padding: 0.5rem;
    text-align: center;
    transition: all 0.1s ease-in-out;
}

.form-check-label {
    color: #767676;
    cursor: pointer;
}

.form-select {
    -moz-padding-start: calc(1.5rem - 3px);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-position: right 1.5rem center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    box-shadow: 0 0;
    color: #1f1f1f;
    display: block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    padding: 0.875rem 4.5rem 0.875rem 1.5rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    width: 100%;
}

.btn-dark {
    background-color: #1f1f1f;
    border-color: #1f1f1f;
    color: #fff;
    border-radius: 0px;
}

.btn {
    height: calc(3.25rem + 2px);
    white-space: nowrap;
}

.list-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    padding-left: 0;
}

.list-group-flush-x .list-group-item {
    border-left: none;
    border-right: none;
    padding-left: 0;
    padding-right: 0;
    border-radius: 0px;
    font-size: 16px;
}

.list-group-sm .list-group-item {
    padding: 1.25rem;
    display: block;
    position: relative;
    flex-shrink: 0;
    font-weight: 400;
}

/*-------------------------------------------------------------------------------
  Responsive Table
-------------------------------------------------------------------------------*/

table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}

table tr {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
}

table th,
table td {
    padding: 0.625em;
    text-align: left;
    font-size: 16px;
}

table th:first-child,
table td:first-child {
    width: 350px;
}

table th {
    font-size: 0.85em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media screen and (max-width: 767px) {

    table th:first-child,
    table td:first-child {
        width: 270px;
    }

}

@media screen and (max-width: 600px) {
    table {
        border: 0;
    }

    table caption {
        font-size: 1.3em;
    }

    table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    table tr {
        display: block;
        margin-bottom: 0.625em;
    }

    table td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: 0.8em;
        text-align: right;
    }

    table td::before {
        /*
        * aria-label has no advantage, it won't be read inside a table
        content: attr(aria-label);
        */
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
        overflow-wrap: anywhere;
        width: 140px;
        text-align: left;
    }

    table td:last-child {
        border-bottom: 0;
    }

    table th:first-child,
    table td:first-child {
        width: 100%;
        display: inline-block;
    }

    .MsoNormal {
        padding-right: 0 !important;
    }
}

/*-------------------------------------------------------------------------------
  Cart/ Page
-------------------------------------------------------------------------------*/

.list-group-item {
    border: 1px solid #e5e5e5;
    display: block;
    padding: 1.5rem;
    position: relative;
    background-color: transparent;
}

.list-group-flush-x .list-group-item {
    border-left: none;
    border-right: none;
    padding-left: 0;
    padding-right: 0;
}

.list-group-lg .list-group-item {
    padding: 2rem;
}

.form-select-xxs {
    background-position: right 0.5rem center;
    padding-right: 2.5rem;
}

.form-control-xxs,
.form-select-xxs {
    font-size: 0.9375rem;
    height: calc(1.78125rem + 2px);
    line-height: 1.5;
    padding-bottom: 0.1875rem;
    padding-left: 0.5rem;
    padding-top: 0.1875rem;
}

.form-control-sm {
    font-size: 0.9375rem;
    min-height: calc(1.5em + 1.625rem + 2px);
    padding: 0.8125rem 1.25rem;
    border-radius: 0px;
}

.btn-dark {
    background-color: #1f1f1f;
    border-color: #1f1f1f;
    color: #fff;
    border-radius: 0;
    font-size: 0.9375rem;
    padding: 0.8125rem 1.5rem;
}

.btn-group-sm>.btn,
.btn-sm {
    border-radius: 0;
    font-size: 0.9375rem;
    padding: 0.8125rem 1.5rem;
}

.btn-link {
    font-weight: 500;
    text-decoration: none;
}

.btn-group-sm>.btn,
.btn-sm {
    height: calc(3.03125rem + 2px);
    line-height: 1.40625rem;
}

.list-group-flush-y .list-group-item:first-child {
    border-top: none;
    padding-top: 0;
}

.card {
    border-radius: 0px;
    border: 0px;
}

.card-body {
    flex: 1 1 auto;
    padding: 1.5rem;
}

/*-------------------------------------------------------------------------------
  Checkout Page
-------------------------------------------------------------------------------*/

#checkout-detail-form .form-group {
    margin-bottom: 15px;
}

#checkout-detail-form label {
    font-size: 16px;
}

/*-------------------------------------------------------------------------------
  Innovative Techniques Pages
-------------------------------------------------------------------------------*/

#page_header.dtg-page {
    background-image: url(../../front/img/dtg.jpeg);
    background-position: center 65%;
}

#page_header.sublimation {
    background-image: url(../../front/img/Sublimation.jpeg);
}

#page_header.photo-editing {
    background-image: url(../../front/img/PhotoEditing.jpeg);
}

#page_header.precision-engraving {
    background-image: url(../../front/img/PrecisionEngraving.jpeg);
}

#page_header.design-services {
    background-image: url(../../front/img/DesignServics.jpeg);
    background-position: center 60%;
}

#digCollapseParentOne a,
#spCollapseParentTwo a,
#htCollapseParentOne a {
    color: #fff;
}

#page_header.heat-transfer-page {
    background-image: url(../../front/img/HeatTransfer.jpeg);
    background-position: center 85%;
}

.btn-disabled {
    background-color: #6c757d;
    /* border-color: #1f1f1f; */
    color: #fff;
    border-radius: 0;
    font-size: 0.9375rem;
    padding: 0.8125rem 1.5rem;
}

.mt-220 {
    margin-top: 220px;
}

.MsoNormal {
    padding-right: 200px;
}




.breadcrumb .breadcrumb-item a {
    color: #747478;
}

.breadcrumb .breadcrumb-item {
    font-size: 12.5px;
    font-weight: 600;
    color: #23232c;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.summary .category {
    font-size: 12.5px;
    font-weight: 600;
    text-transform: uppercase;
}


.summary .pricing-tag {
    padding: 5px 12px 5px 12px;
    font-size: 12.5px;
    border-radius: 5px;
}

.summary .color-tag {
    text-transform: uppercase;
    font-size: 12.5px;
}


.summary .form-check>.form-check-label {
    font-size: 12px;
}


.patch-color-tag {
    font-size: 12.5px;
    font-weight: bold;
    text-transform: uppercase;
}


.quatity-stock {
    text-transform: uppercase;
    font-size: 12.5px;
    font-weight: bold;
}


.products .title h5 {
    letter-spacing: 0;
    font-size: 16px;
    letter-spacing: 0;
}

.products .price {
    font-weight: bold;
}


.about p {
    font-size: 20px;
    color: #020202;
    text-align: justify;
    margin-right: 90px;
}


.large-gap {
    /* padding: 100px; */
    padding: 0 150px;
}

.cat-slider .splide__arrow {

    height: 4em;
    background: #fff;
    width: 4em;

}


.cat-slider .content {
    background: #f4f4f4;
    padding: 15px;
    /* border-radius: 10px; */
    position: absolute;
    width: 100%;
    bottom: -12px;
    /* z-index: -1; */
    margin-top: -10px;
    text-align: center;
    color: #fff;
}


.cat-slider .content h2 {
    font-size: 20px;
    font-weight: bold;
    color: #292929;
    text-transform: uppercase;
}


.product-bx.border {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;

}


.product-bx.border:hover {

    transform: translate(-10px, 10px);
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
}


/*-------------------------------------------------------------------------------
  Media Query
-------------------------------------------------------------------------------*/

@media only screen and (max-width: 1130px) {
    .navbar-nav li a {
        padding-left: 7px;
        padding-right: 7px;
    }

}



@media only screen and (min-width: 992px) {

    .navbar .dropdown:hover>.dropdown-menu {
      display: block;
    }
  
    .navbar .dropdown>.dropdown-toggle:active {
      pointer-events: none;
    }
    
    .footer-middle {
        padding-top: 6.25rem;
        padding-bottom: 4.75rem;
    }
}

@media only screen and (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        text-align: start;
        background: #fff;
        z-index: 1;
    }

    .navbar-brand {
        min-width: 170px;
    }

    .fixed-top .navbar-collapse {
        top: 81px;
    }

    ul.navbar-nav {
        overflow: scroll;
        max-height: 90vh;
    }
    
    .navbar-nav li {
        border-bottom: 1px solid #d1d9ff;
        position: relative;
    }

    .navbar-nav li a {
        padding: 8px 0;
        width: auto;
    }

    
    .navbar-nav li a.dropdown-toggle {
        position: absolute;
        top: 0px;
        right: 10px;
        width: 50px;
        height: 48px;
        z-index: 99;
        padding: 10px;
        justify-content: center;
        background-color: var(--color-1);
    }

    .navbar-nav li a.dropdown-item {
        color: #888;
    }

    header li.nav-item {
        display: block;
        height: auto;
    }

    .navbar-nav li:last-child {
        border-bottom: none;
    }

    header.fixed-top .navbar-nav li a.text-white {
        color: var(--color-1) !important;
    }

    header.fixed-top .navbar-nav li .dropdown-toggle.text-white {
        color: #fff !important;
    }

    header.fixed-top .navbar-nav li a.dropdown-toggle {
        background-color: var(--color-1) !important;
    }

    .about p {
        font-size: 20px;
        margin-right: 30px;
    }

    #services .srvc-box {
        width: 100%;
    }


    .testimonail .carousel-control-prev {
        left: 0%;
    }


    footer.ptb-100 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {

    .large-gap {
        padding: 0 80px;
    }


    .ctgry-list li {
        width: 30%;
    }


    .navbar-nav li a {
        padding: 8px 20px;
        justify-content: start;
        z-index: 1;
        position: relative;
    }


}

@media only screen and (max-width: 576px) {
    .navbar .navbar-brand img {
        max-width: 60px;
    }

    .navbar {
        padding: 5px 10px !important;
    }

    .title-sec {
        font-size: 26px;
        word-wrap: break-word;
    }

    #about.pt-100 {
        padding-top: 50px;
    }

    #hm-banners.pb-100 {
        padding-bottom: 50px;
    }


    #services .srvc-box {
        width: 80%;
    }


    .about p {
        font-size: 18px;
        margin-right: 0px;
    }
    

    .large-gap {
        padding: 0 20px;
    }


    .testimonail .carousel-control-prev {
        left: 0%;
    }
}

@media only screen and (max-width: 378px) {
    .ctgry-list li {
        width: 50%;
    }
}
