@font-face {
    font-family: 'sr';
    src:  url('fonts/Sarpanch-Regular.woff') format('woff');
  }

  @font-face {
    font-family: 'sb';
    src:  url('fonts/Sarpanch-ExtraBold.woff') format('woff');
  }
html {
    position: relative;
}

body {
    background-color: #000;
    color:#fff;
    min-height: 100%;
    font-size: 1.1rem;
    margin-bottom: 200px;
   font-family: 'sr';
}
main {
    margin-top: -100px;
}
h1,h2,h3,h4,h5,h6 {
    font-family: 'sb';

}

abbr {
    color: #f00;
}

a {
    transition: all 0.2s;
    color: #666;
}

label {
    font-weight: bold;
}
.radio label {
    cursor: pointer;
}
a:hover {
    color: #333;
}
hr {
    width:100%;
    border-color: #bebebe;
}
.form-control {
    border-radius: 0px;
    outline: none;
    border:1;
}
.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;
  }
.btn {
    border-radius: 0px;
    padding-left:30px;
    padding-right:30px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    color:#fff;
  }
  .btn:hover {
    color:#fff;
  }
  .btn-me{
    font-family: 'sb';
      background-color: #9d8462;
    color:#000;
    font-weight:bold;
  }
  .btn-ss.pink {
    background-color: #ea5b9b;
  }
  .btn-ss.pink:hover {
    background-color: #d8548f;
  }
  .btn-ss.purple {
    background-color: #6f61a7;
  }
  .btn-ss.purple:hover {
    background-color: #66599a;
  }
  .btn-ss.grey {
    background-color: rgba(77,77,77,1);
  }
  .btn-ss.grey:hover {
    background-color: rgba(45,45,45,1);
  }
  .btn-ss.outline {
    background-color: rgba(0,0,0,0);
    border:2px solid white;
  }
  .breadcrumb {
      background-color:rgba(255,255,255,0.2);
      border-radius: 0px;
      margin-top:-48px;

  }
  .breadcrumb-item.active, .breadcrumb-item+.breadcrumb-item::before {
    color:#ddd;  }
  .breadcrumb a {
      color:#fff;
  }
.smoothLoad {
    opacity:0;
}
/* IE FIX */
@media all and (-ms-high-contrast:none)
{
.sticky-top {
    position: fixed;
    z-index: 99;
    width:100%;
}
}
/* ---------------------------------------------------
    START 
----------------------------------------------------- */

.sticky-top {
	height:7rem;
}


.fadeTop {
    z-index: 1;
    position: absolute;
    height: 400px;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(20%,rgba(0, 0, 0,0.6)), color-stop(100%,rgba(0, 0, 0,0)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0,0.6) 20%,rgba(0, 0, 0,0) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0,0.6) 20%,rgba(0, 0, 0,0) 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0,0.6) 20%,rgba(0, 0, 0,0) 100%);
    background: linear-gradient(to top, rgba(0, 0, 0,0) 0%,rgba(0, 0, 0,0.6) 80%);
}
.start-slider {
    position: relative;
    overflow:hidden;


    background-color: #000;
}
.start-slider-image-wrapper {
    text-align: center;
 
}
.start-slider-image-wrapper img {
    width: 100vw;


}
.start-slider-text {
    top:0;
    width: 100%;
    padding-top: 30%;
    text-align: center;
    z-index: 2;
    position: absolute;
    letter-spacing: 5;
    color:#fff;
    min-height:400px;
    height:40vw;
    max-height:700px;
    left: 0;
    text-shadow: 0px 0px 25px #000;

}

@media (max-width: 500px) {
    .start-slider-text h1 { font-size:50px;}
    .start-slider-text h3 { font-size:16px;}

}
.start-welcome-text {
    background-color:#000;
}
.start-welcome-arrow {
    width: 0; 
    height: 0; 
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    
    border-top: 20px solid #000;
  }


  
/*********** 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);
    }
  }
  /*****/



.square-box {
    height:300px;

}
.square-box div{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 20%;
    background-repeat: no-repeat;
}
#square-box-1 div{
    background-image: url(./images/01.png);
}
#square-box-2 div{
    background-image: url(./images/02.png);
}
#square-box-3 div{
    background-image: url(./images/03.png);
}
#square-box-4 div{
    background-image: url(./images/04.png);
}

/***** EXTRA BASE *****/
.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: #000;
}

.card.product {
    cursor: pointer;
    overflow: hidden;
    border:none;
    border-radius: 0px;
}
.card.product a {
    color:#000;
}
.card.product .card-info {
    transform: translateY(-200%);
    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(2, 86, 138, 0.6);
    padding: 2px 15px;
    margin: 2px;
}

.card.product {
    transition: all 0.2s;
}
.card.product small{
    color:#a0a0a0;
}

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

.card.product:hover {
    transform: scale(1.02);
    -webkit-box-shadow: 0px 0px 23px -8px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 23px -8px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 23px -8px rgba(0,0,0,0.75);
}

.card.product a:hover {
    text-decoration: unset;
}
.card.product .card-footer {
    box-shadow: inset 0 10px 20px -7px rgba(0,0,0,0.5);
}
.watermark-official {
    width:80px;height:80px;
    opacity: 0.6;
    transition: 0.2s all;
    transform-origin: top center;
    transform: scale(0.8);
}
.card.product:hover .watermark-official {
    opacity: 0.95;
    transform: scale(1);
}
.btn-product {
    text-decoration: none!important;
    color:#585858;
    border-radius: 50px;
    font-weight: bold;
    background-color: rgba(2,86,138,0);
    border: 1px solid #585858;
}

.card.product:hover .btn-product {
    background-color: rgba(2,86,138,1);
    color:#fff;
}
.card.product .card-footer {
    background-color: #9d8462;
    border-radius: 0px;
}

.card-footer {
padding: 1.25rem 1.25rem 1.25rem 1.25rem;
}
	

/* ---------------------------------------------------
    NAVBAR STYLE
----------------------------------------------------- */

.navbar-second {

    z-index:2;
    transition: 0.5s;
    padding: 0px;
    height: 60px;
    top: 0px;
    background:rgb(0,0,0);
    background: transparent\9;
    background-color: rgb(0, 0, 0,0.5);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4cFF0000,endColorstr=#4cFF0000);
    zoom: 1;
}
.navbar-toggler {
    font-size:1rem;
    line-height: 3;
}
.dropdown:hover>.dropdown-menu {
    display: block;
  }
  .dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #4d4d4d;
}


.dropdown-item.active, .dropdown-item:active {
    background-color: #e31313;

}
.navbar-second.mode1{
    background:rgb(0,0,0,0);
}
.navbar-second.mode2{
    background:rgb(0,0,0,1);
}
.navbar-second #logo img{
    transition: 0.5s;
}
.navbar-second.mode1 #logo img{
    
top: -25px;
pointer-events: none;

}

.navbar-second a {
    font-family: 'sb';
    font-size:1rem;
  
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: #fff;
}

.navbar-second a.nav-link:hover {
    text-decoration: underline;
}
a.dropdown-item{
    color:#000;
}
.navbar-second input[type="search"] {
    background: transparent;
    border: none;
    color: #fff;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    height:25px;
    box-shadow: none !important;
}
.navbar-second input[type="search"]::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff!important;
    opacity: 1; /* Firefox */
  }
  
  .navbar-second input[type="search"]:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #fff!important;
  }
  
  .navbar-second input[type="search"]::-ms-input-placeholder { /* Microsoft Edge */
    color: #fff!important;
  }

  @media (max-width: 991.98px) {
      .navbar-nav{
        min-width: 200px;
        background-color: rgba(255, 255, 255, 0.95);
        padding: 10px;
        text-align: center;
        border-radius: 5px;
        -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);
    }
    .navbar-nav a {
        color:#000;
    }
    .navbar-collapse {
        min-width: 200px;
    }
}

#logo {

    font-size: 22px;
    font-weight: normal;
}
a#logo:hover {
    text-decoration: none;
}
/* ---------------------------------------------------
    Footer
----------------------------------------------------- */
footer {
    position: absolute;
    width: 100%;
    height: 200px;
    bottom: 0;
    color: #000; 
   
    font-size: 1rem;
}
footer hr {
    border-top: 1px solid #000;
}
footer a {
    color:#000;
}
footer a:hover {
    color:#000;
}
footer #wrapper {
    background-color:#9d8462;
}


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


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

footer ul li a:hover {
    padding-left: 2px;
}


table.contact th {
    background-color: #9d8462;
    color: #000;
    border: #000;
}

table.contact td {

    color: #666;
}

.btn-secondary {
    text-decoration: none!important;
    color:#fff;
    border-radius: 50px;
    font-weight: bold;
    background-color: #48af68;
    border: none;
}

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




.parallax {
    background-color: #000;
    background-image: url("./images/para.jpg");
    background-size: cover;
    background-position: 50% calc(50%);
    background-repeat: no-repeat;
    min-height: 200px;

}
.parallax h1 {

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


/* ---------------------------------------------------
    Mini Cart
----------------------------------------------------- */

#miniCart {
    transition: all 0.4s;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    right:0px;
    top: 13px;
    min-height: 100px;
    width: 400px;
    color:#000;
    background-color: rgba(255, 255, 255, 0.95);
    border: 0px;
    border-radius: 0px;
    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 a {
    color:#000;
}


#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 {
    color:#9d8462;
    padding: 0px 2px;
}

.presentationImage {
    overflow: hidden;
  }
  .presentationImage img{
    transition: all 1s;
    }
  .presentationImage:hover img{
  transform: scale(1.1);
  }

/* ---------------------------------------------------
    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-
-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%;
}

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

@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%;
    }
}
.text-black {color:#000;}
.nolinkeffect {
    text-decoration:none!important;
    color:inherit!important;
}
.nolinkeffect i {
  
    color:#fff;
}
