
    @font-face {
    font-family: 'icahandwebregular'; 
    src: url('fonts/ICAHandWebRegular.woff');  
    }
    @font-face {
    font-family: 'icarubrikwebblack';
    src: url('fonts/ICARubrikWebBlack.woff');  
    }
    @font-face {
    font-family: 'icarubrikwebbold';
    src: url('fonts/ICARubrikWebBold.woff');  
    }

    @font-face {
        font-family: 'icatextwebregular';
        src: url('fonts/ICATextWebRegular.woff');  
        }
    @font-face {
    font-family: 'icatextwebblack';
    src: url('fonts/ICATextWebBlack.woff');  
    }
    @font-face {
    font-family: 'icatextwebbold';
    src: url('fonts/ICATextWebBold.woff');  
    }
    @font-face {
    font-family: 'icatextweblight';
    src: url('fonts/ICATextWebLight.woff');  
    }
    

html {
    position: relative;
    min-height: 100%;
}

body {
    background-color: #F3F0EC;
    min-height: 100vh;
    margin: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

abbr {
    color:#f00;
}
a {
    transition: all 0.2s;
    color: #666;
    cursor: pointer;
}
 label{
     font-weight:bold;
 }
 .radio label {
    cursor: pointer;
}
a:hover {
    color: #333;
}
.fa, .fab, .fal, .far, .fas {
    line-height: unset;
}
h1,h2,h3,h4,h5,h6 {
    font-family: 'icarubrikwebblack', sans-serif;
}
/****** START ***/
.top-board {
    position: relative;
    top: 0;
    left: -1px;
    right: -1px;
    bottom: 0;
    display: block;
    min-width: 100%;
    max-width: none;
    overflow: hidden;
    height: 40px;
}
.top-board img {
    position: absolute;
    top: 0;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    overflow: hidden;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

/***** EXTRA BASE *****/
.handtext {
    font-family: "icahandwebregular";
    color: #868686;
}
.breadcrumb{
    margin:0;
    background-color:transparent;
}
.smoothLoad {
    opacity:0;
}
.lazy {
    visibility: hidden;
}
.product .imgHolder {
    padding-bottom: 100%;
    height: 0;
    position: relative;

  }
.product .imgHolder div {
    z-index: 1;
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: url(./images/placeholder.jpg);
    background-repeat: no-repeat;
    background-size: 200px 200px;
    background-position: 50% 50%;
}
.product .imgHolder img {
    position: absolute;
    z-index: 2;
}

/* IE FIX */
@media all and (-ms-high-contrast:none)
{
.sticky-top {
    position: fixed;
    z-index: 99;
    width:100%;
}
}
.dropdown:hover>.dropdown-menu {
    display: block;

  }
  .dropdown-menu {
    box-shadow: 0 2px 2px 0 rgba(39, 39, 56, 0.1);
  }
  .dropdown-item.active, .dropdown-item:active,  .dropdown-toggle.active {
    color: #f00;
    text-decoration: none;
    background-color: #fff;
}
.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ccc;
    font-style: italic;
    opacity: 1; /* Firefox */
  }
  
.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #ccc;
    font-style: italic;
  }
  
.form-control::-ms-input-placeholder { /* Microsoft Edge */
    color: #ccc;
    font-style: italic;
  }

/*
  .custom-control-label::before {
    background-color: #e1e1e1!important;
  }
  .custom-checkbox .custom-control-input:checked~.custom-control-label::before {
      background-color: #007dc2!important;
  }
  .custom-select.is-valid, .form-control.is-valid, .was-validated .custom-select:valid, .was-validated .form-control:valid {
  border-color:#ced4da;
  }
*/

.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.pointer {
    cursor: pointer;
}

.line-header {
    display: block;
    line-height: 0.2em;
    border-bottom: 1px solid #666;
}

.line-header span {
    background-color: #fff;
}

.card.product {
    cursor: pointer;
    overflow: hidden;
}
.card.product .card-body {
    z-index: 5;
}
.card.product .card-info {
    transform: translateY(-100%);
    transition: all 0.2s;
    z-index: 10;
    opacity: 0;
}

.card.product .card-info p {
    font-size: 10px;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2px 15px;
    margin:2px;
}
.card.product .card-title {
    background-color: rgba(255,255,255,0.7);
}
.card.product img {
    transition: transform 0.2s;
}

.card.product:hover .card-info {
    transform: translateY(5%);
    opacity: 1;
}

.card.product:hover img {
    transform: scale(1.05);
}

.card.product a:hover {
    text-decoration: unset;
}
/* ---------------------------------------------------
    NAVBAR STYLE
----------------------------------------------------- */

/*
body>nav {
    min-height: 120px;
}
*/

#quicksearch div{
    border-radius: 20px;
    background-color: #fcece7;
    color:#cf2e05;
}
#quicksearch input[type="search"] {

    font-size: 0.8rem;
    font-family: 'icarubrikwebbold';
    background: transparent;
    border: none;
    color: #cf2e05;
    border-radius: 0;
    height:25px;
    box-shadow: none !important;
    outline: none !important;
}
#quicksearch input[type="search"]::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #cf2e05!important;
    opacity: 1; /* Firefox */
  }
  
  #quicksearch input[type="search"]:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #cf2e05!important;
  }
  
  #quicksearch input[type="search"]::-ms-input-placeholder { /* Microsoft Edge */
    color: #cf2e05!important;
  }

.navbar-second {

    padding: 0px;
    height: 70px;
    top: 0px;
    background-color: #fff;
}
.navbar-second a {
    text-decoration: none;
}
.navbar-second i {
    font-size:1.4rem;

    color:#cf2e05;
}
.navbar-second i:hover {
    color:#cf2e05;
}
.navbar-third {
    padding: 0px;
    top: 70px;
    /* height: 50px; */
    background-color: #fff;
    color: #ccc;
    box-shadow: 0 1px 4px 0 rgba(63,63,64,0.2);
}

.navbar-third ul {
    background-color: #fff;
    text-align: center;
}

.navbar-third a {
    font-family: 'icatextwebregular';
    color: #6D6F70;

}

.navbar-third li.active {
    background-color: #fff;
}

.fa-heart {
    color: #f00;
}

.navbar-third a:hover, .navbar-third a:hover .fa-heart {
    color:#DC438C;
}

.navbar-third #mobileBar {
    background-color: #fff;
}
.navbar-special {
    padding: 0px;
    height: 50px;
    background-color: #fff;
    color: #ccc;
    box-shadow: 0 1px 4px 0 rgba(63,63,64,0.2);
}
/* ---------------------------------------------------
    START 
----------------------------------------------------- */
.start-slider .overlay {
    z-index:1;
    position: absolute;
    width: 100%;
    height:100%;
    bottom:-2px;

    background: -moz-linear-gradient(top, rgba(243,240,236,0) 0%, rgba(243,240,236,0) 68%, rgba(243,240,236,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(243,240,236,0)), color-stop(68%, rgba(243,240,236,0)), color-stop(100%, rgba(243,240,236,1)));
    background: -webkit-linear-gradient(top, rgba(243,240,236,0) 0%, rgba(243,240,236,0) 68%, rgba(243,240,236,1) 100%);
    background: -o-linear-gradient(top, rgba(243,240,236,0) 0%, rgba(243,240,236,0) 68%, rgba(243,240,236,1) 100%);
    background: -ms-linear-gradient(top, rgba(243,240,236,0) 0%, rgba(243,240,236,0) 68%, rgba(243,240,236,1) 100%);
    background: linear-gradient(to bottom, rgba(243,240,236,0) 0%, rgba(243,240,236,0) 68%, rgba(243,240,236,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#191919', endColorstr='#191919', GradientType=0 );


}
.start-slider {
    z-index:-1;
    position: relative;
    overflow:hidden;
    height:700px;

}
.start-slider-image-wrapper {

    text-align: center;
    position: absolute;
    margin-left: 50%;
    transform: translateX(-50%);
}
.start-slider-image-wrapper img {
    margin-top: -5%;
    width: 100vw;
    min-width: 1250px;

   

}
.start-slider-floater {
    position: absolute;
    right:50px;
    top:30px;
}

.start-slider-text {
    z-index:3;
    position: absolute;
    text-align: left;
    color:#fff;
  
    left:20%;
    top:120px;
}
.start-slider-text h3 {
    font-family: 'icahandwebregular'; 
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    font-size:34px;
    line-height: 1;
    margin:0;
}
.start-slider-text h1 {
    font-family: 'icarubrikwebblack';
    font-weight: normal;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
    font-size:50px;
    line-height: 0.9;
    margin:0;
}
.start-slider-text p {
    font-family: 'icatextwebregular';
    text-shadow: 1px 1px 2px rgba(0,0,0,1);
    letter-spacing: 1;
    font-size:1.2rem;
}
@media (max-width: 500px) {
    .start-slider-text h1 { font-size:50px;}
    .start-slider-text h3 { font-size:16px;}

}
.start-welcome-text {
    background-color:#ffd301;
    color:#7d6d1a;
}
.start-welcome-arrow {
    width: 0; 
    height: 0; 
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    
    border-top: 20px solid #ffd301;
  }
/*********** TEXT ANIMATIONS ******/
.animate-reveal {
    opacity: 0;
    -webkit-animation: reveal 1s cubic-bezier(0, 1, 0.5, 1) 1 normal forwards;
       -moz-animation: reveal 1s ease-in 1 normal forwards;
         -o-animation: reveal 1s cubic-bezier(0, 1, 0.5, 1) 1 normal forwards;
            animation: reveal 1s cubic-bezier(0, 1, 0.5, 1) 1 normal forwards;
  }
  
  .animate-first {
    -webkit-animation-delay: 500ms;
       -moz-animation-delay: 500ms;
         -o-animation-delay: 500ms;
            animation-delay: 500ms;
  }
  
  .animate-second {
    -webkit-animation-delay: 1000ms;
       -moz-animation-delay: 1000ms;
         -o-animation-delay: 1000ms;
            animation-delay: 1000ms;
  }
  
  .animate-third {
    -webkit-animation-delay: 1500ms;
       -moz-animation-delay: 1500ms;
         -o-animation-delay: 1500ms;
            animation-delay: 1500ms;
  }
  
  @-webkit-keyframes reveal {
    0% {
      opacity: 0;
      -webkit-transform: translateY(100%);
         -moz-transform: translateY(100%);
           -o-transform: translateY(100%);
              transform: translateY(100%);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
         -moz-transform: translateY(0);
           -o-transform: translateY(0);
              transform: translateY(0);
    }
  }
  
  @-moz-keyframes reveal {
    0% {
      opacity: 0;
      -webkit-transform: translateY(100%);
         -moz-transform: translateY(100%);
           -o-transform: translateY(100%);
              transform: translateY(100%);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
         -moz-transform: translateY(0);
           -o-transform: translateY(0);
              transform: translateY(0);
    }
  }
  
  @-o-keyframes reveal {
    0% {
      opacity: 0;
      -webkit-transform: translateY(100%);
         -moz-transform: translateY(100%);
           -o-transform: translateY(100%);
              transform: translateY(100%);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
         -moz-transform: translateY(0);
           -o-transform: translateY(0);
              transform: translateY(0);
    }
  }
  
  @keyframes reveal {
    0% {
      opacity: 0;
      -webkit-transform: translateY(100%);
         -moz-transform: translateY(100%);
           -o-transform: translateY(100%);
              transform: translateY(100%);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
         -moz-transform: translateY(0);
           -o-transform: translateY(0);
              transform: translateY(0);
    }
  }
  /*****/

/********* LOGO animation **********************/
.stamp{
    -webkit-animation-name: pulse;
    animation-name: pulse;
    animation-delay:0.5s;
    -webkit-animation-delay:0.5s;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    opacity: 0;
    -webkit-animation-fill-mode:forwards;
     animation-fill-mode:forwards;
  }
@-webkit-keyframes pulse{
    0%{
      opacity: 0;
    }
    10%{
      opacity:.50;
      transform-origin: 50% 50%;
      transform:  scale(5);
      transition: all .3s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    }
    100%{
      opacity:1;
      transform: scale(1);
    }
  }
  @-moz-keyframes pulse {
    0%{
        opacity: 0;
      }
      10%{
        opacity:.50;
        transform-origin: 50% 50%;
        transform:  scale(5);
        transition: all .3s cubic-bezier(0.6, 0.04, 0.98, 0.335);
      }
      100%{
        opacity:1;
        transform: scale(1);
      }
  }
  @-o-keyframes pulse {
    0%{
        opacity: 0;
      }
      10%{
        opacity:.50;
        transform-origin: 50% 50%;
        transform:  scale(5);
        transition: all .3s cubic-bezier(0.6, 0.04, 0.98, 0.335);
      }
      100%{
        opacity:1;
        transform: scale(1);
      }
  }

  @keyframes pulse{
  0%{
    opacity: 0;
  }
  10%{
    opacity:.50;
    transform-origin: 50% 50%;
    transform:  scale(5);
    transition: all .3s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  }
  100%{
    opacity:1;
    transform: scale(1);
  }
}

  /**************************/
/* ---------------------------------------------------
    Footer
----------------------------------------------------- */
footer {
    min-height: 300px;
    padding-top: 20px;
    width: 100%;
    color: #666;
}
footer #wrapper {
    border-top:3px solid #f00;
    background-color: #fff;
}


footer ul {
    list-style: none;
    padding-inline-start:0px;
}

footer li {
    padding-left: 0;
    font-size: 0.9rem;
}



footer ul li a {
    font-weight: normal;
}

footer ul li a:hover {
    color:#DC438C;
    text-decoration: none;
}

footer h6 {
    color:#000;
}

footer p {
    font-size: 0.9rem;
}

table.contact th {
    background-color: #cf2e05;
    color: #fff;
}

table.contact td {

    color: #666;
}

.btn-secondary {
    font-weight: bold;
    background-color: #e13205;
    border: none;
    border-radius: 25px;
}

.btn-secondary:hover {
    background-color: #f088b6;
}

/*############ BUTTONS START ############*/
.btn {
    font-weight: bold;
    border: none;
    box-shadow: none!important  ;
    border-radius: 25px;
}
.btn-primary {
    background-color: #ca0b0f;
}

.btn-primary:hover {
    background-color: #af0a0e;
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    background-color: #91090c;
}
.btn-secondary {
    background-color: #e13205;
}

.btn-secondary:hover {
    background-color: #f088b6;
}
.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show>.btn-secondary.dropdown-toggle {
    background-color: #9b0600;
}
/*############ BUTTONS END ############*/

.parallax {
    background-image: url("./images/parallax.jpg");
    background-size: cover;
    background-position:50% calc(50%) ;
    background-repeat: no-repeat;

}

.parallax div {
    display: table-cell;
    vertical-align: middle;
    background-color: rgba(0, 0, 0, 0.4);
}


/* ---------------------------------------------------
    Mini Cart
----------------------------------------------------- */
.btn-cart {
    position: relative;
}
#miniCart {
    transition: all 0.4s;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    right:5%;
    top:55px;
    min-height: 100px;
    width: 100%;
    max-width: 400px;
    background-color: rgba(255, 255, 255, 0.95);
    border: 0px;
    border-radius: 5px;
    padding-bottom: 40px;
    -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.27);
-moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.27);
box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.27);
}
#miniCart #cartTable {
    max-height:60vh;
    overflow-y: scroll;
} 



#miniCart p {
    text-align: center;
}

#miniCart.show {
    visibility: visible;
    opacity: 1;
}

#miniCart #goToCart {
    border:0px;
    border-radius: 0px 0px 5px 5px;
    bottom: 0px;
    left:0px;
}

#miniCartTotal {
    position: absolute;
    background-color: #E74E0F;
    color: #fff;
    border-radius: 40%;
    padding: 0px 5px;
    margin-right: 10px;
    left:18px;
    font-size: 0.8rem;
}

/* ---------------------------------------------------
    TYPOGRAPHY STYLE
----------------------------------------------------- */
.overlay {
    overflow: hidden;
}

.overlay img {
    transition: all 0.8s;
}

.overlay-text {
    transition: all 0.4s;
    padding: 10px;
    display: block;
    background-color: rgba(50, 50, 50, 0.5);
    color: #fff;
    position: absolute;
    bottom: 0px;
    width: 100%;
    text-align: center;
    font-weight: bold;
}

.overlay:hover .overlay-text {
    color: #fff;
    background-color: rgba(33, 64, 101, 0.9);
}

.overlay:hover img {
    transform: scale(1.1);
}

/* ---------------------------------------------------
    Social Icons
----------------------------------------------------- */
#socialIcons a {
    color: #fff;
}

#socialIcons i {
    transition: all 0.2s;
}

#socialIcons a:hover {

    text-decoration: none;
}

#socialIcons a:hover i {
    transform: scale(1.8);
}

/* ---------------------------------------------------
    Spinner
----------------------------------------------------- */
.spinner {
    display: inline-block;
}

.spinner:after {
    content: " ";
    display: block;
    margin: 1px;
    border-radius: 50%;
    border: 5px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.4s ease-in-out infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



/***** 5 column design ****/
/* 5 Columns */

.col-xs-25,
.col-sm-25,
.col-md-25,
.col-lg-25,
.col-xl-15 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-xs-24 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

.logo-image {
    width: 100%;
}

@media (min-width: 576px) {
    .col-sm-24 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }

    .logo-image {
        width:400px; 
    }
}

@media (min-width: 768px) {
    .col-md-24 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (min-width: 992px) {
    .col-lg-24 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (min-width: 1200px) {
    .col-xl-24 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/***************/
/* POPUP MODAL */
/***************/

#popup-modal .modal-dialog {
    max-width: 100%;
}

#popup-modal .modal-content {
    margin: 0 auto;
    width: auto;
}

#popup-modal .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px 20px 0 0;
    line-height: 1;
    font-size: 3rem;
}

#popup-modal .close span {
    line-height: .5;
}

#popup-modal .modal-text {
    position: absolute;
    top: 50px;
    left: 50px;
}

#popup-modal .modal-text h1 {
    font-family: 'icarubrikwebblack';
    font-weight: normal;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.75);
    font-size: 3rem;
    line-height: 0.9;
    margin: 0;

    color: #e92108;
}

#popup-modal .modal-text p {
    font-family: 'icatextwebregular';
    /*text-shadow: 1px 1px 2px rgba(0,0,0,1);*/
    letter-spacing: 1;
    font-size: 1.2rem;

    /*color: #e92108;*/
}

.profile-bar-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-collapse .nav-link {
    text-align: center;
}

@media(width <= 767px) {
    .vmtext {
        margin-top: 30px;
    }
}

.list-group-item.active {
    background-color: #E23204;
    border-color: #bd2701;
}