@charset "UTF-8";
@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out; }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out; }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in; }
  80% {
    transform: perspective(400px);
    animation-timing-function: ease-in; }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in; } }

.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }
  .animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    animation-name: flip; }
  .animated.infinite {
    animation-iteration-count: infinite; }

.field {
  margin-bottom: 25px;
  position: relative; }
  .field input {
    width: 100%;
    display: block;
    padding: 0 15px;
    color: #000;
    height: 50px;
    line-height: 50px;
    background-color: #fff;
    border: 1px solid #ced4da;
    font-size: 16px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s; }
    .field input[type="file"] {
      display: none; }
    .field input::placeholder {
      color: #000; }
  .field textarea {
    width: 100%;
    color: #fff;
    height: 250px;
    padding: 15px;
    background-color: #6D7874;
    border: 1px solid #FFD700;
    font-size: 16px;
    resize: none;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px; }
    .field textarea:hover {
      background-color: #6D7874; }
    .field textarea:focus {
      background-color: #6D7874; }
    .field textarea::placeholder {
      color: #fff; }
  .field label {
    font-size: 15px;
    text-transform: uppercase;
    padding-bottom: 5px;
    padding-left: 20px;
    display: inline-block;
    color: #000; }

.filed-file {
  width: 100%;
  display: block;
  padding: 0;
  color: #707070;
  height: 50px;
  line-height: 50px;
  background-color: #EBEBEB;
  border: 1px dashed #707070;
  font-size: 15px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s; }
  .filed-file label {
    padding: 0 15px;
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px; }
    .filed-file label span {
      display: block;
      width: 100%;
      height: 50px;
      line-height: 50px; }
  @media only screen and (max-width: 767px) {
    .filed-file {
      background-color: #fff;
      height: 40px;
      line-height: 40px; }
      .filed-file label {
        height: 40px;
        line-height: 40px;
        font-size: 9px !important;
        padding: 0 5px 0 15px; }
        .filed-file label span {
          height: 40px;
          line-height: 40px;
          font-size: 10px !important; } }
  @media only screen and (max-width: 359px) {
    .filed-file label {
      font-size: 9px !important; }
      .filed-file label span {
        font-size: 8px !important; } }

.checkbox {
  padding: 0 0 10px 0;
  margin-left: 4px;
  display: inline-block;
  margin-bottom: 20px; }
  .checkbox:last-child {
    padding: 0; }
  .checkbox label {
    font-size: 15px;
    color: #000;
    display: inline-block;
    padding: 0 0 0 35px;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
    margin-top: 5px;
    margin-right: 20px;
    line-height: 16px; }
    .checkbox label:before {
      width: 23px;
      height: 23px;
      content: '';
      position: absolute;
      top: -4px;
      left: 0;
      border: 1px solid #000;
      background: #fff;
      -webkit-border-radius: 1px;
      -moz-border-radius: 1px;
      border-radius: 1px;
      -webkit-transition: all 0.2s ease-out;
      -moz-transition: all 0.2s ease-out;
      -ms-transition: all 0.2s ease-out;
      -o-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out;
      -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.06);
      -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.06);
      box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.06); }
    .checkbox label:after {
      width: 14px;
      height: 7px;
      content: '';
      position: absolute;
      top: 2px;
      left: 5px;
      border: 3px solid transparent;
      border-top: none;
      border-right: none;
      background: transparent;
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
      -webkit-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
      -o-transition: all 0.2s ease;
      transition: all 0.2s ease; }
    .checkbox label:hover:before {
      border: 1px solid #707070; }
    .checkbox label span {
      position: absolute;
      right: 0;
      top: 2px;
      font-size: 12px;
      color: #b8bcca;
      text-align: right; }
  .checkbox input {
    visibility: hidden;
    position: absolute; }
    .checkbox input:checked + label {
      color: #757575 !important; }
    .checkbox input:checked + label:before {
      border: 1px solid #8a0000;
      background: #8a0000; }
    .checkbox input:checked + label:after {
      border-left: 3px solid #fff;
      border-bottom: 3px solid #fff;
      border-top: 0 solid transparent;
      border-right: 0 solid transparent; }
  .checkbox.checkbox-right label {
    padding: 0 60px 0 15px; }
    .checkbox.checkbox-right label:before {
      top: -10px;
      left: initial;
      right: 0; }
    .checkbox.checkbox-right label:after {
      top: 1px;
      left: initial;
      right: 10px; }
  .checkbox.checkbox-small label {
    padding: 0 0 0 45px; }
    .checkbox.checkbox-small label:before {
      width: 26px;
      height: 26px;
      margin-top: 5px;
      background: #fff;
      -webkit-border-radius: 1px;
      -moz-border-radius: 1px;
      border-radius: 1px;
      -webkit-transition: all 0.2s ease-out;
      -moz-transition: all 0.2s ease-out;
      -ms-transition: all 0.2s ease-out;
      -o-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out;
      -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.06);
      -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.06);
      box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.06); }
    .checkbox.checkbox-small label:after {
      width: 16px;
      height: 10px;
      content: '';
      position: absolute;
      top: 1px;
      left: 6px;
      border: 3px solid transparent;
      background: transparent;
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
      -webkit-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
      -o-transition: all 0.2s ease;
      transition: all 0.2s ease; }

.checkbox-holder {
  margin-top: 30px; }
  .checkbox-holder .checkbox {
    display: inline-block; }
    .checkbox-holder .checkbox:last-child {
      margin-left: 40px; }
  @media only screen and (max-width: 767px) {
    .checkbox-holder .checkbox {
      display: block; }
      .checkbox-holder .checkbox:last-child {
        margin-left: 0; } }

.language-wrap {
  width: 120px;
  position: absolute;
  right: 20px;
  top: 10px; }
  .language-wrap .active-language {
    text-decoration: underline; }
  .language-wrap.light-menu a {
    color: #fff !important; }
  .language-wrap.light-menu span {
    color: #fff !important; }

.language-wrap-mob {
  display: none; }
  .language-wrap-mob .language-wrap {
    width: 100%;
    position: relative;
    right: initial;
    top: initial;
    margin-top: 20px; }
    .language-wrap-mob .language-wrap .active-language {
      text-decoration: underline; }
    .language-wrap-mob .language-wrap a {
      color: #fff !important;
      font-size: 22px !important;
      font-weight: 700;
      text-transform: uppercase; }
    .language-wrap-mob .language-wrap span {
      color: #fff !important;
      font-size: 22px !important;
      font-weight: 700;
      text-transform: uppercase; }
  @media only screen and (max-width: 991px) {
    .language-wrap-mob {
      display: block; } }

header {
  height: 180px; }
  @media only screen and (max-width: 1279px) {
    header {
      margin-bottom: 20px; } }
  @media only screen and (max-width: 767px) {
    header {
      height: auto;
      margin-bottom: 0;
      padding-top: 10px; } }
  header .line-header {
    position: relative;
    margin-bottom: 30px; }

.logo-header {
  display: inline-block;
  width: 200px;
  height: 60px; }
  .logo-header img {
    width: 200px;
    margin-top: -18px; }
    @media only screen and (max-width: 1023px) {
      .logo-header img {
        width: 180px;
        margin-top: -10px; } }
    @media only screen and (max-width: 767px) {
      .logo-header img {
        width: 180px;
        margin-top: -9px; } }
    @media only screen and (max-width: 359px) {
      .logo-header img {
        width: 156px;
        margin-top: -4px;
        margin-left: -10px; } }

@media only screen and (min-width: 1280px) {
  .fixed-header {
    position: fixed;
    z-index: 9999;
    top: -200px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    padding-top: 0 !important;
    animation-name: animateHeader;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    -webkit-box-shadow: 0px 7px 20px -8px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 7px 20px -8px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 7px 20px -8px rgba(0, 0, 0, 0.75); }
    .fixed-header .row {
      max-width: 1400px;
      margin: 0 auto; }
    .fixed-header .navbar-brand {
      padding-top: 0;
      padding-bottom: 0; }
    .fixed-header .logo-header {
      display: inline-block;
      width: 200px;
      height: 60px; }
      .fixed-header .logo-header img {
        width: 200px;
        margin-top: -5px; } }

@keyframes animateHeader {
  0% {
    top: -100px; }
  100% {
    opacity: 1;
    top: 0; } }

@keyframes animateHeader {
  0% {
    top: -100px; }
  100% {
    opacity: 1;
    top: 0; } }

.search-form-wrap {
  position: relative;
  margin-right: 10px; }
  .search-form-wrap .suggesstion-box {
    position: absolute;
    width: 100%;
    height: auto;
    max-height: 260px;
    overflow-x: auto;
    background-color: #fff;
    z-index: 999; }
  .search-form-wrap .suggesstion-box a {
    padding: 5px 10px;
    display: block;
    font-size: 14px; }
    .search-form-wrap .suggesstion-box a img {
      width: 30px;
      margin-right: 5px; }
  .search-form-wrap input {
    border: 1px solid #353535;
    outline: none !important;
    padding: 5px 30px 5px 10px;
    line-height: 20px;
    width: 200px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px; }
    .search-form-wrap input::placeholder {
      font-size: 15px; }
  .search-form-wrap button {
    position: absolute;
    top: 2px;
    right: 0;
    border: none !important;
    background-color: transparent !important; }
    .search-form-wrap button svg {
      width: 24px; }
  @media only screen and (max-width: 767px) {
    .search-form-wrap {
      display: block;
      width: 100%; }
      .search-form-wrap input {
        width: 100%; } }

@media only screen and (max-width: 767px) {
  header .search-holder {
    display: block;
    width: 100%; }
    header .search-holder ul {
      display: block;
      width: 100%; }
    header .search-holder .account-section a {
      position: absolute;
      top: -42px;
      right: 42px; }
    header .search-holder .account-section .profile-image {
      position: absolute;
      top: -51px !important;
      right: 42px; }
    header .search-holder .price-header-cart {
      position: absolute;
      top: -50px;
      right: 10px; } }

html {
  scroll-behavior: smooth; }

body {
  font-size: 16px;
  position: relative;
  font-family: Montserrat;
  font-style: normal;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s; }

.bcg-black {
  background-color: #000; }

.inner {
  width: 1256px;
  max-width: 94%;
  margin: 0 auto;
  position: relative; }
  .inner:after {
    content: "";
    display: table;
    clear: both; }

.home-slider-holder .home-slider-wrap {
  position: relative; }
  .home-slider-holder .home-slider-wrap .home-slider-item img {
    width: 100%; }
  @media only screen and (max-width: 767px) {
    .home-slider-holder .home-slider-wrap .home-slider-item .desc-slide {
      display: none; } }
  .home-slider-holder .home-slider-wrap .home-slider-item .mob-slide {
    display: none; }
    @media only screen and (max-width: 767px) {
      .home-slider-holder .home-slider-wrap .home-slider-item .mob-slide {
        display: block; } }
  .home-slider-holder .home-slider-wrap .slick-prev {
    width: 30px;
    position: absolute;
    z-index: 99;
    top: 50%;
    left: 50px;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
    .home-slider-holder .home-slider-wrap .slick-prev img {
      width: 25px; }
      @media only screen and (max-width: 767px) {
        .home-slider-holder .home-slider-wrap .slick-prev img {
          width: 20px; } }
  .home-slider-holder .home-slider-wrap .slick-next {
    width: 30px;
    position: absolute;
    z-index: 99;
    top: 50%;
    right: 50px;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
    .home-slider-holder .home-slider-wrap .slick-next img {
      width: 25px; }
      @media only screen and (max-width: 767px) {
        .home-slider-holder .home-slider-wrap .slick-next img {
          width: 20px; } }
  .home-slider-holder .home-slider-wrap .slick-dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    padding: 0 !important;
    margin: 0 !important; }
    .home-slider-holder .home-slider-wrap .slick-dots li {
      display: inline-block;
      margin-right: 10px; }
      .home-slider-holder .home-slider-wrap .slick-dots li button {
        color: transparent;
        background-color: #707070;
        border: none !important;
        width: 45px;
        height: 5px; }
      .home-slider-holder .home-slider-wrap .slick-dots li.slick-active button {
        background-color: #8a0000 !important; }

.box-wrap {
  width: 100%; }

.box-nav {
  text-align: center;
  margin-bottom: 40px; }
  .box-nav span {
    color: #000;
    font-size: 24px;
    border-left: 2px solid #000;
    line-height: 20px;
    margin-left: 15px;
    padding-left: 15px;
    cursor: pointer; }
    .box-nav span:first-child {
      margin-left: 0;
      border-left: none; }
    @media only screen and (max-width: 1279px) {
      .box-nav span {
        font-size: 22px; } }
    @media only screen and (max-width: 1279px) {
      .box-nav span {
        font-size: 18px;
        margin-left: 8px;
        padding-left: 8px; } }
    @media only screen and (max-width: 767px) {
      .box-nav span {
        border: none !important;
        display: block;
        font-size: 20px;
        margin-bottom: 5px; } }

.box-nav-active {
  font-weight: bold; }

.box-content-wrap {
  width: 100%; }
  .box-content-wrap .buton-form {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px; }

.box-content {
  display: none; }

.box-content-active {
  display: block; }

.specification-tabs-wrap {
  width: 100%; }

.specification-tabs-nav {
  text-align: left;
  margin-bottom: 40px;
  border-bottom: 1px solid grey; }
  .specification-tabs-nav span {
    display: inline-block;
    color: #15181a;
    font-size: 16px;
    padding: 10px 20px;
    line-height: 20px;
    cursor: pointer;
    margin-right: 20px;
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0; }
    .specification-tabs-nav span:first-child {
      margin-left: 0;
      border-left: none; }
    @media only screen and (max-width: 1279px) {
      .specification-tabs-nav span {
        font-size: 22px; } }
    @media only screen and (max-width: 1279px) {
      .specification-tabs-nav span {
        font-size: 18px;
        margin-left: 8px;
        padding-left: 8px; } }
    @media only screen and (max-width: 767px) {
      .specification-tabs-nav span {
        border: none !important;
        display: block;
        font-size: 20px;
        margin-bottom: 5px; } }

.specification-tabs-nav-active {
  background-color: #8a0000;
  color: #fff !important;
  font-size: 16px;
  font-weight: 400; }

.specification-content-wrap {
  width: 100%; }

.specification-content {
  display: none; }
  .specification-content p {
    color: #555;
    font-size: 16px;
    line-height: 22px; }

.specification-content-active {
  display: block; }

.card {
  border: none; }
  .card .card-header {
    margin-bottom: 10px; }
  .card .card-body {
    padding: 0; }
    .card .card-body a {
      display: inline-block; }
      .card .card-body a span {
        font-size: 15px; }
  .card .card-price {
    width: 100%;
    position: relative; }
    .card .card-price .price-new {
      display: inline-block;
      font-weight: 600;
      font-size: 20px !important; }
    .card .card-price .td-line {
      position: absolute;
      right: 0;
      display: inline-block;
      font-size: 20px !important; }
    .card .card-price:after {
      content: "";
      display: table;
      clear: both; }
  .card .badge-text .badge-novo {
    background-image: url(/../image/novo.png);
    width: 24px;
    height: 64px;
    background-repeat: no-repeat;
    margin: 0 2px; }
  .card .badge-text .badge-preporuka {
    background-image: url(/../image/preporuka.png);
    width: 24px;
    height: 113px;
    background-repeat: no-repeat;
    margin: 0 2px; }
  .card .badge-text .badge-poklon-pakovanja {
    background-image: url(/../image/poklon.png);
    width: 24px;
    height: 142px;
    background-repeat: no-repeat;
    margin: 0 2px; }
  .card .badge-text .badge-rasprodano {
    background-image: url(/../image/rasprodano.png);
    background-position: center;
    width: 24px;
    height: 137px;
    background-repeat: no-repeat;
    margin: 0 2px; }
  .card .badge .badge-najprodavanije {
    background-image: url(/../image/najprodavanije.png);
    background-repeat: no-repeat;
    height: 73px;
    width: 70px; }
  .card .badge .badge-akcija {
    background-image: url(/../image/akcija.png);
    width: 58px;
    height: 56px; }
  .card:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.29); }

.quantity-wrap {
  padding: 0 20px;
  text-align: center;
  margin-bottom: 10px; }
  .quantity-wrap button {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 1px solid #8a0000;
    font-size: 16px;
    background: transparent;
    color: #000 !important; }
    .quantity-wrap button:last-child {
      margin-left: -5px; }
    .quantity-wrap button:hover {
      background-color: #8a0000;
      color: #fff !important;
      -webkit-transition: 0.2s;
      -moz-transition: 0.2s;
      -ms-transition: 0.2s;
      -o-transition: 0.2s;
      transition: 0.2s; }
  .quantity-wrap input {
    display: inline-block;
    width: 90px;
    height: 30px;
    text-align: center;
    border: 1px solid #8a0000;
    margin-left: -5px;
    line-height: 30px; }
    .quantity-wrap input:focus {
      outline: none; }
  .quantity-wrap .minus {
    border-right: none;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px; }
  .quantity-wrap .plus {
    border-left: none;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px; }

.shoping-list-product .card:hover {
  box-shadow: none !important; }

.shoping-list-product .card-body {
  padding-left: 20px; }

.cart-list-wrap .card:hover {
  box-shadow: none !important; }

.cart-list-wrap .border-card {
  border: 1px solid rgba(0, 0, 0, 0.125); }

.cart-list-wrap .cart-item .card:hover {
  box-shadow: none !important; }

.home-testemonial-holder {
  margin-top: 120px; }

.home-testemonial-wrap {
  position: relative;
  padding-bottom: 20px;
  padding-top: 20px; }
  .home-testemonial-wrap .slick-list {
    padding-bottom: 20px;
    padding-top: 20px; }
  .home-testemonial-wrap .home-testemonial-item {
    display: block;
    margin: 0 30px;
    z-index: 99; }
    @media only screen and (max-width: 767px) {
      .home-testemonial-wrap .home-testemonial-item {
        margin: 0 20px; } }
    .home-testemonial-wrap .home-testemonial-item .card {
      padding: 20px 50px; }
      @media only screen and (max-width: 767px) {
        .home-testemonial-wrap .home-testemonial-item .card {
          padding: 15px 30px; } }
  .home-testemonial-wrap .slick-prev {
    width: 30px;
    position: absolute;
    z-index: 99;
    top: 50%;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
    .home-testemonial-wrap .slick-prev img {
      width: 25px; }
      @media only screen and (max-width: 767px) {
        .home-testemonial-wrap .slick-prev img {
          width: 20px; } }
  .home-testemonial-wrap .slick-next {
    width: 30px;
    position: absolute;
    z-index: 99;
    top: 50%;
    right: 0;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
    .home-testemonial-wrap .slick-next img {
      width: 25px; }
      @media only screen and (max-width: 767px) {
        .home-testemonial-wrap .slick-next img {
          width: 20px; } }

.single-article-slider-wrap {
  width: 100%;
  padding-right: 10px; }
  .single-article-slider-wrap .single-article-item {
    width: 100%;
    margin: 0 5px; }
    .single-article-slider-wrap .single-article-item img {
      width: 100%; }
  .single-article-slider-wrap .slick-prev {
    opacity: 0;
    width: 20px;
    position: absolute;
    z-index: 99;
    top: 50%;
    cursor: pointer;
    left: 30px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .single-article-slider-wrap .slick-prev img {
      width: 15px; }
  .single-article-slider-wrap .slick-next {
    opacity: 0;
    width: 20px;
    position: absolute;
    z-index: 99;
    top: 50%;
    right: 45px;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .single-article-slider-wrap .slick-next img {
      width: 15px; }
  .single-article-slider-wrap .slick-dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    padding: 0 !important;
    margin: 0 !important; }
    .single-article-slider-wrap .slick-dots li {
      display: inline-block;
      margin-right: 10px;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      border-radius: 50%; }
      .single-article-slider-wrap .slick-dots li button {
        color: transparent;
        background-color: #707070;
        border: none !important;
        width: 15px;
        height: 15px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%; }
      .single-article-slider-wrap .slick-dots li.slick-active button {
        background-color: #8a0000 !important; }
  .single-article-slider-wrap:hover .slick-prev {
    opacity: 1 !important;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
  .single-article-slider-wrap:hover .slick-next {
    opacity: 1 !important;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }

.articles-slider-wrap {
  width: 100%;
  position: relative; }
  .articles-slider-wrap .single-article-item {
    width: 100%;
    margin: 0 10px;
    padding-bottom: 10px;
    position: relative; }
    .articles-slider-wrap .single-article-item img {
      width: 100%; }
  .articles-slider-wrap .card {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px; }
  .articles-slider-wrap .slick-prev {
    opacity: 0;
    width: 20px;
    position: absolute;
    z-index: 99;
    top: 46%;
    cursor: pointer;
    left: 20px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .articles-slider-wrap .slick-prev img {
      width: 15px; }
  .articles-slider-wrap .slick-next {
    opacity: 0;
    width: 20px;
    position: absolute;
    z-index: 99;
    top: 46%;
    right: 25px;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .articles-slider-wrap .slick-next img {
      width: 15px; }
  .articles-slider-wrap .slick-dots {
    position: absolute;
    bottom: -50px;
    width: 100%;
    text-align: center;
    padding: 0 !important;
    margin: 0 !important; }
    .articles-slider-wrap .slick-dots li {
      display: inline-block;
      margin-right: 10px;
      border: none !important; }
      .articles-slider-wrap .slick-dots li button {
        display: inline-block;
        color: transparent;
        background-color: #cccccc;
        padding: 0 !important;
        border: none !important;
        width: 8px !important;
        height: 8px !important;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%; }
      .articles-slider-wrap .slick-dots li.slick-active button {
        background-color: #8a0000 !important; }
  .articles-slider-wrap:hover .slick-prev {
    opacity: 1 !important;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
  .articles-slider-wrap:hover .slick-next {
    opacity: 1 !important;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }

.filter-articles-head {
  box-shadow: none !important;
  margin-left: 340px;
  top: 30px; }
  @media only screen and (max-width: 1279px) {
    .filter-articles-head {
      margin-left: 0; }
      .filter-articles-head .select-holder {
        margin-bottom: 0 !important; }
      .filter-articles-head h2 {
        display: none !important; } }
  @media only screen and (max-width: 1023px) {
    .filter-articles-head {
      margin-left: 0; } }
  @media only screen and (max-width: 767px) {
    .filter-articles-head {
      top: 20px;
      margin-left: 0;
      padding: 0 !important; } }
  .filter-articles-head .select-wraper {
    margin-left: 625px; }
    @media only screen and (max-width: 1440px) {
      .filter-articles-head .select-wraper {
        margin-left: 570px; } }
    @media only screen and (max-width: 1360px) {
      .filter-articles-head .select-wraper {
        margin-left: 520px; } }
    @media only screen and (max-width: 1279px) {
      .filter-articles-head .select-wraper {
        margin-left: 420px; } }
    @media only screen and (max-width: 767px) {
      .filter-articles-head .select-wraper {
        margin-left: 20px; } }

.filters-wrap .card {
  box-shadow: none !important; }

.filter-box .card-body {
  padding: 1.25rem; }

.product-filter-section .product-section {
  padding-top: 80px; }

.faq-section .card {
  box-shadow: none !important; }

.profile-holder {
  position: relative;
  padding-top: 40px; }
  @media only screen and (max-width: 1023px) {
    .profile-holder {
      padding-top: 0; } }
  .profile-holder h1 {
    font-size: 48px;
    font-weight: 600;
    display: block;
    text-align: center;
    margin-bottom: 40px; }
    @media only screen and (max-width: 767px) {
      .profile-holder h1 {
        font-size: 36px; } }
  .profile-holder .profile-head {
    display: inline-block;
    width: 30%;
    position: relative;
    float: left; }
    .profile-holder .profile-head img {
      margin-left: 40px;
      margin-top: 40px;
      width: 220px;
      display: inline-block; }
    @media only screen and (max-width: 1023px) {
      .profile-holder .profile-head {
        width: 100%;
        display: block;
        margin-bottom: 40px;
        text-align: center; }
        .profile-holder .profile-head img {
          margin-left: 0;
          margin-top: 0; } }
  .profile-holder .profile-body {
    display: inline-block;
    width: 70%;
    position: relative; }
    @media only screen and (max-width: 1023px) {
      .profile-holder .profile-body {
        width: 100%;
        display: block; } }
    .profile-holder .profile-body .full-column {
      width: 100% !important;
      display: block; }
    .profile-holder .profile-body .column {
      display: inline-block;
      width: 40%;
      margin-bottom: 10px; }
      @media only screen and (max-width: 1279px) {
        .profile-holder .profile-body .column {
          width: 48%; } }
      @media only screen and (max-width: 767px) {
        .profile-holder .profile-body .column {
          width: 100%;
          display: block; } }
    .profile-holder .profile-body h3 {
      font-size: 20px; }
    .profile-holder .profile-body p {
      font-size: 16px; }
  .profile-holder .profile-edit {
    position: absolute;
    right: 0;
    top: 130px;
    z-index: 99; }
    .profile-holder .profile-edit a {
      display: block;
      margin-bottom: 10px; }
      .profile-holder .profile-edit a img {
        margin-right: 5px; }
    @media only screen and (max-width: 767px) {
      .profile-holder .profile-edit {
        width: 100%;
        display: block;
        position: relative;
        top: initial;
        right: initial;
        text-align: center;
        margin-bottom: 40px; } }

.profile-edit-holder {
  padding-top: 60px; }
  .profile-edit-holder h1 {
    font-size: 48px;
    font-weight: 600;
    display: block;
    text-align: center;
    margin-bottom: 40px; }
    @media only screen and (max-width: 767px) {
      .profile-edit-holder h1 {
        font-size: 36px;
        margin-bottom: 20px; } }
  .profile-edit-holder .profile-edit-head {
    text-align: center; }
    .profile-edit-holder .profile-edit-head img {
      width: 220px; }
  .profile-edit-holder .profile-edit-head {
    margin-bottom: 20px; }
  .profile-edit-holder .profile-edit-form .column {
    padding: 0 10px;
    float: left;
    width: 50%; }
    @media only screen and (max-width: 767px) {
      .profile-edit-holder .profile-edit-form .column {
        float: none;
        width: 100%; } }
  .profile-edit-holder .button {
    display: inline-block;
    margin-top: 10px;
    border: 2px solid #8A0000;
    color: #fff !important;
    background: #8a0000;
    padding: 10px 20px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px; }

.orders-table-holder {
  width: 100%; }
  .orders-table-holder h1 {
    font-size: 48px;
    font-weight: 600;
    display: block;
    text-align: center;
    margin-bottom: 40px; }
    @media only screen and (max-width: 767px) {
      .orders-table-holder h1 {
        font-size: 36px;
        margin-bottom: 20px; } }
  .orders-table-holder .orders-table-wrap {
    width: 100%;
    overflow: auto; }
    @media only screen and (max-width: 767px) {
      .orders-table-holder .orders-table-wrap {
        width: 100%;
        overflow-x: auto; } }
    .orders-table-holder .orders-table-wrap table {
      font-family: arial, sans-serif;
      border-collapse: collapse;
      width: 100%;
      background-color: #fff;
      -webkit-box-shadow: 2px 3px 25px -8px rgba(0, 0, 0, 0.5);
      -moz-box-shadow: 2px 3px 25px -8px rgba(0, 0, 0, 0.5);
      box-shadow: 2px 3px 25px -8px rgba(0, 0, 0, 0.5); }
      @media only screen and (max-width: 767px) {
        .orders-table-holder .orders-table-wrap table {
          width: 700px; } }
    .orders-table-holder .orders-table-wrap thead th {
      font-weight: 600;
      font-size: 16px; }
    .orders-table-holder .orders-table-wrap td, .orders-table-holder .orders-table-wrap th {
      border: 1px solid #c6c6c6;
      text-align: left;
      padding: 10px;
      font-size: 15px;
      font-weight: 400; }
    .orders-table-holder .orders-table-wrap tr:hover {
      background-color: #e5e5e5; }
    .orders-table-holder .orders-table-wrap .table-add-to-cart {
      width: 100%;
      background-color: #8a0000;
      color: #fff;
      display: block;
      height: 28px;
      line-height: 28px;
      text-align: center;
      font-size: 14px;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      border-radius: 4px; }
      .orders-table-holder .orders-table-wrap .table-add-to-cart i {
        margin-top: 6px;
        margin-right: 6px; }
    .orders-table-holder .orders-table-wrap .table-see-more {
      width: 100%;
      background-color: #8a0000;
      color: #fff;
      display: block;
      height: 28px;
      line-height: 28px;
      text-align: center;
      font-size: 14px;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      border-radius: 4px; }
      .orders-table-holder .orders-table-wrap .table-see-more i {
        margin-top: 6px;
        margin-right: 6px; }

.order-table-holder h1 {
  font-size: 48px;
  font-weight: 600;
  display: block;
  text-align: center;
  margin-bottom: 80px; }
  @media only screen and (max-width: 767px) {
    .order-table-holder h1 {
      font-size: 36px;
      margin-bottom: 60px; } }

.order-table-holder .order-table-wrap {
  width: 100%;
  overflow: auto; }
  .order-table-holder .order-table-wrap table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
    background-color: #fff; }
    @media only screen and (max-width: 767px) {
      .order-table-holder .order-table-wrap table {
        width: 820px; } }
  .order-table-holder .order-table-wrap thead th {
    font-weight: 600;
    font-size: 16px; }
  .order-table-holder .order-table-wrap td, .order-table-holder .order-table-wrap th {
    border-bottom: 1px solid #c6c6c6;
    text-align: left;
    padding: 10px;
    font-size: 15px;
    font-weight: 400;
    vertical-align: middle; }
  .order-table-holder .order-table-wrap tr:hover {
    background-color: #e5e5e5; }
  .order-table-holder .order-table-wrap .table-article-wrap .table-article-head {
    display: inline-block;
    width: 120px; }
    .order-table-holder .order-table-wrap .table-article-wrap .table-article-head img {
      width: 120px; }
  .order-table-holder .order-table-wrap .table-article-wrap .table-article-content {
    display: inline-block;
    width: 280px;
    padding-left: 20px; }
    .order-table-holder .order-table-wrap .table-article-wrap .table-article-content h3 {
      font-size: 16px;
      font-weight: 600; }
      @media only screen and (max-width: 767px) {
        .order-table-holder .order-table-wrap .table-article-wrap .table-article-content h3 {
          font-size: 17px; } }
    .order-table-holder .order-table-wrap .table-article-wrap .table-article-content p {
      font-size: 15px;
      color: grey; }
  .order-table-holder .order-table-wrap .table-order-total {
    font-weight: 600;
    font-size: 18px; }

@media only screen and (max-width: 1023px) {
  .full-container {
    width: 100% !important;
    max-width: 100% !important; } }

.modal-wrap {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  z-index: 9999999;
  position: fixed;
  top: 0;
  bottom: 0;
  overflow: auto; }
  @media only screen and (max-width: 1023px) {
    .modal-wrap {
      overflow-y: auto; } }
  .modal-wrap.active-modal {
    display: block !important; }
  .modal-wrap .modal-back {
    width: 100%;
    height: 100vh;
    top: 0;
    position: fixed;
    z-index: 100; }
  .modal-wrap .modal-back-block {
    width: 100%;
    height: 100vh;
    top: 0;
    position: fixed;
    z-index: 100; }
  .modal-wrap .modal-content {
    max-width: 400px;
    width: 98%;
    position: relative;
    z-index: 9999;
    padding: 20px;
    background-color: #fff;
    animation-name: modalUp;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(195, 198, 198, 0.4) transparent;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px; }
    .modal-wrap .modal-content::-webkit-scrollbar {
      width: 7px; }
    .modal-wrap .modal-content::-webkit-scrollbar-track {
      background-color: white; }
    .modal-wrap .modal-content::-webkit-scrollbar-thumb {
      background: rgba(195, 198, 198, 0.8); }
    .modal-wrap .modal-content .modal-head {
      position: relative;
      margin-bottom: 20px; }
      .modal-wrap .modal-content .modal-head h3 {
        font-weight: 600;
        font-size: 21px;
        color: #000;
        max-width: 200px; }
        @media only screen and (max-width: 767px) {
          .modal-wrap .modal-content .modal-head h3 {
            text-align: center;
            font-size: 18px;
            line-height: 1.33;
            padding: 20px 20px 0 20px; } }
    .modal-wrap .modal-content .modal-body {
      padding: 0 !important;
      margin-bottom: 50px; }
      .modal-wrap .modal-content .modal-body .popup-img {
        max-width: 100px; }
    .modal-wrap .modal-content .modal-bottom .go-cart-button:hover {
      color: #fff !important; }

.modal-max-quantity {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  z-index: 9999999;
  position: fixed;
  top: 0;
  bottom: 0;
  overflow: auto; }
  @media only screen and (max-width: 1023px) {
    .modal-max-quantity {
      overflow-y: auto; } }
  .modal-max-quantity.active-modal {
    display: block !important; }
  .modal-max-quantity .modal-back {
    width: 100%;
    height: 100vh;
    top: 0;
    position: fixed;
    z-index: 100; }
  .modal-max-quantity .modal-back-block {
    width: 100%;
    height: 100vh;
    top: 0;
    position: fixed;
    z-index: 100; }
  .modal-max-quantity .modal-content {
    max-width: 460px;
    width: 98%;
    position: relative;
    z-index: 9999;
    padding: 20px;
    background-color: #fff;
    animation-name: modalUp;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(195, 198, 198, 0.4) transparent;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px; }
    .modal-max-quantity .modal-content::-webkit-scrollbar {
      width: 7px; }
    .modal-max-quantity .modal-content::-webkit-scrollbar-track {
      background-color: white; }
    .modal-max-quantity .modal-content::-webkit-scrollbar-thumb {
      background: rgba(195, 198, 198, 0.8); }
    .modal-max-quantity .modal-content .modal-head {
      position: relative;
      margin-bottom: 20px; }
      .modal-max-quantity .modal-content .modal-head h3 {
        font-weight: 600;
        font-size: 22px;
        color: #000;
        max-width: 360px; }
        @media only screen and (max-width: 767px) {
          .modal-max-quantity .modal-content .modal-head h3 {
            text-align: center;
            font-size: 18px;
            line-height: 1.33;
            padding: 20px 20px 0 20px; } }
    .modal-max-quantity .modal-content .modal-body {
      padding: 0 !important;
      margin-bottom: 50px; }
      .modal-max-quantity .modal-content .modal-body .popup-img {
        max-width: 100px; }
    .modal-max-quantity .modal-content .modal-bottom .go-cart-button:hover {
      color: #fff !important; }
  @media only screen and (max-width: 767px) {
    .modal-max-quantity .close-m {
      right: -5px !important;
      top: -5px !important; } }

.close-m {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  font-size: 34px;
  border: 2px solid #000;
  height: 30px;
  width: 30px;
  line-height: 27px;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%; }
  .close-m:hover {
    opacity: 0.9; }
  @media only screen and (max-width: 767px) {
    .close-m {
      right: 10%;
      top: 25px; } }

@-webkit-keyframes modalUp {
  from {
    margin: -300px auto; }
  to {
    margin: 50px auto; } }

@keyframes modalUp {
  from {
    margin: -300px auto; }
  to {
    margin: 50px auto; } }

.to-top {
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: pointer; }
  .to-top img {
    width: 48px; }
  @media only screen and (max-width: 767px) {
    .to-top {
      bottom: 45px;
      right: 5px; } }
  .to-top:hover {
    opacity: 0.6; }

.toast-wrap {
  animation-name: toast;
  opacity: 0.5;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  position: fixed;
  top: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 9999999999999; }

.toast-wrap .toast-correct {
  min-width: 320px;
  width: auto;
  padding: 25px 15px;
  background: #fff;
  border-left: 6px solid green;
  color: #4b5662;
  font-size: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 2px 13px 0px rgba(9, 43, 75, 0.4);
  -moz-box-shadow: 0px 2px 13px 0px rgba(9, 43, 75, 0.4);
  box-shadow: 0px 2px 13px 0px rgba(9, 43, 75, 0.4); }

.toast-wrap .toast-correct span {
  color: #8a0000;
  margin-right: 5px; }

.toast-wrap .toast-correct span i {
  font-size: 20px; }

.toast-wrap .toast-error {
  min-width: 320px;
  padding: 25px 15px;
  background: #fff;
  border-left: 6px solid red;
  color: #4b5662;
  font-size: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 2px 13px 0px rgba(9, 43, 75, 0.4);
  -moz-box-shadow: 0px 2px 13px 0px rgba(9, 43, 75, 0.4);
  box-shadow: 0px 2px 13px 0px rgba(9, 43, 75, 0.4); }

.toast-wrap .toast-error span {
  color: red;
  margin-right: 5px; }

.toast-wrap .toast-error span i {
  font-size: 20px; }

.toast-image {
  display: none; }

.toast-image-max {
  display: none; }

.toast-image-weight {
  display: none; }

@keyframes toast {
  0% {
    opacity: 0.5;
    margin-top: -100px;
    z-index: 999999; }
  20% {
    opacity: 1;
    margin-top: 0; }
  90% {
    opacity: 1;
    margin-top: 0;
    z-index: 999999; }
  100% {
    opacity: 0;
    margin-top: -100px;
    z-index: -1; } }

@keyframes toast {
  0% {
    opacity: 0.5;
    margin-top: -100px;
    z-index: 999999; }
  20% {
    opacity: 1;
    margin-top: 0; }
  90% {
    opacity: 1;
    margin-top: 0;
    z-index: 999999; }
  100% {
    opacity: 0;
    margin-top: -100px;
    z-index: -1; } }

.welcome-pop-up-wrap {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  z-index: 9999999;
  position: fixed;
  top: 0;
  bottom: 0;
  overflow: auto; }
  @media only screen and (max-width: 1023px) {
    .welcome-pop-up-wrap {
      overflow-y: auto; } }
  .welcome-pop-up-wrap .modal-back {
    width: 100%;
    height: 100vh;
    top: 0;
    position: fixed;
    z-index: 100; }
  .welcome-pop-up-wrap .modal-content {
    max-width: 680px;
    width: 98%;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    padding: 60px 25px;
    background-color: #fff;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px; }
    @media only screen and (max-width: 767px) {
      .welcome-pop-up-wrap .modal-content {
        padding: 30px 20px; } }
    .welcome-pop-up-wrap .modal-content .modal-head {
      position: relative;
      margin-bottom: 40px; }
      @media only screen and (max-width: 767px) {
        .welcome-pop-up-wrap .modal-content .modal-head {
          margin-bottom: 20px; } }
      .welcome-pop-up-wrap .modal-content .modal-head h3 {
        font-weight: 700;
        font-size: 24px;
        color: #212529;
        text-align: center; }
        @media only screen and (max-width: 767px) {
          .welcome-pop-up-wrap .modal-content .modal-head h3 {
            text-align: center;
            font-size: 18px;
            line-height: 1.33;
            padding: 20px 20px 0 20px; } }
    .welcome-pop-up-wrap .modal-content .modal-body {
      padding: 0 !important;
      margin-bottom: 80px;
      text-align: center; }
      @media only screen and (max-width: 767px) {
        .welcome-pop-up-wrap .modal-content .modal-body {
          margin-bottom: 40px; } }
      .welcome-pop-up-wrap .modal-content .modal-body h2 {
        font-size: 48px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 20px;
        color: #212529; }
        @media only screen and (max-width: 767px) {
          .welcome-pop-up-wrap .modal-content .modal-body h2 {
            font-size: 40px; } }
      .welcome-pop-up-wrap .modal-content .modal-body p {
        font-size: 24px;
        font-weight: 300;
        text-align: center;
        margin-bottom: 40px; }
        @media only screen and (max-width: 767px) {
          .welcome-pop-up-wrap .modal-content .modal-body p {
            font-size: 20px;
            line-height: 26px; } }
      .welcome-pop-up-wrap .modal-content .modal-body .button-yes {
        background-color: #8a0000;
        color: #fff;
        border: 2px solid #8a0000;
        letter-spacing: 2px;
        font-size: 12px;
        font-weight: 600;
        white-space: nowrap;
        padding: 7px 12px;
        margin-right: 10px; }
        @media only screen and (max-width: 767px) {
          .welcome-pop-up-wrap .modal-content .modal-body .button-yes {
            display: inline-block;
            margin-bottom: 20px;
            width: 252px;
            margin-right: initial; } }
      .welcome-pop-up-wrap .modal-content .modal-body .button-no {
        background-color: #fff;
        color: #000;
        border: 2px solid #8a0000;
        letter-spacing: 2px;
        font-size: 12px;
        font-weight: 600;
        white-space: nowrap;
        padding: 7px 12px;
        margin-right: 10px; }
        @media only screen and (max-width: 767px) {
          .welcome-pop-up-wrap .modal-content .modal-body .button-no {
            display: inline-block;
            width: 252px;
            margin-right: initial; } }
    .welcome-pop-up-wrap .modal-content .modal-bottom p {
      font-size: 16px;
      line-height: 20px;
      color: #a7a7a7;
      text-align: center;
      margin-bottom: 20px; }
      .welcome-pop-up-wrap .modal-content .modal-bottom p a {
        font-size: 16px;
        line-height: 20px;
        font-weight: 700;
        color: #000;
        text-align: center;
        cursor: pointer; }
        .welcome-pop-up-wrap .modal-content .modal-bottom p a:hover {
          color: #8a0000; }
    .welcome-pop-up-wrap .modal-content .modal-bottom h3 {
      font-size: 18px;
      font-weight: 900;
      text-align: center;
      letter-spacing: 2px; }

.select-normal {
  margin: 0 auto;
  position: relative; }
  .select-normal .js-select2 {
    width: 100%; }

.select-no-search {
  width: 100%; }

.select-holder {
  display: block;
  width: 210px;
  margin-left: 0;
  margin-bottom: 20px; }
  .select-holder .select2 {
    max-width: 100% !important;
    width: 100% !important; }

.select2-container .select2-selection--single {
  height: 40px !important; }

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px !important;
  font-size: 16px !important; }

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  background-image: url("/image/arrow-down2.svg") !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 13px !important;
  height: 13px;
  top: 17px; }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  background-image: url("/image/arrow-down2.svg") !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important; }

.select2-container--default .select2-selection--single {
  background-color: #fff !important;
  color: #000 !important;
  font-size: 18px !important;
  box-shadow: none !important;
  border: 1px solid #6f6f6f !important;
  -webkit-border-radius: 8px !important;
  -moz-border-radius: 8px !important;
  border-radius: 8px !important; }

.select2-container--open .select2-selection--single {
  -webkit-border-radius: 8px 8px 0 0 !important;
  -moz-border-radius: 8px 8px 0 0 !important;
  border-radius: 8px 8px 0 0 !important; }

.select2-dropdown {
  background-color: #fff !important;
  border: 1px solid #EAEAEB !important;
  border-top: none !important;
  color: #000 !important;
  -webkit-border-radius: 0 0 6px 6px !important;
  -moz-border-radius: 0 0 6px 6px !important;
  border-radius: 0 0 6px 6px !important; }

.select2-container--default .select2-results__option {
  border-bottom: 1px solid #EAEAEB !important;
  position: relative;
  padding-left: 40px; }
  .select2-container--default .select2-results__option:before {
    content: "✓";
    position: absolute;
    font-size: 18px;
    top: 8px;
    left: .8rem;
    color: black; }

.select2-container--default .select2-results > .select2-results__options {
  max-height: 230px !important; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #8a0000 !important;
  color: #fff !important; }
  .select2-container--default .select2-results__option--highlighted[aria-selected]:before {
    content: "✓";
    position: absolute;
    font-size: 18px;
    top: 8px;
    left: .8rem;
    color: #fff !important; }

.blog-item {
  box-shadow: none !important; }
  .blog-item .card-header {
    margin-bottom: 20px; }

.blog-wrap {
  box-shadow: none !important; }
  .blog-wrap .blog-content p {
    font-size: 16px !important;
    line-height: 28px !important;
    color: #000 !important;
    margin-bottom: 25px !important; }
    .blog-wrap .blog-content p a {
      font-size: 16px !important;
      line-height: 28px !important;
      color: #9c0000 !important;
      cursor: pointer; }
      .blog-wrap .blog-content p a:hover {
        text-decoration: underline; }
    .blog-wrap .blog-content p strong, .blog-wrap .blog-content p b {
      font-size: 16px !important;
      line-height: 28px !important;
      color: #000 !important;
      margin-bottom: 25px !important;
      font-weight: 600 !important; }
    .blog-wrap .blog-content p i {
      font-size: 16px !important;
      line-height: 28px !important;
      color: #000 !important;
      margin-bottom: 25px !important;
      font-style: italic !important; }
    .blog-wrap .blog-content p img {
      max-width: 100%; }
      @media only screen and (max-width: 767px) {
        .blog-wrap .blog-content p img {
          height: auto !important; } }
  .blog-wrap .blog-content h2 {
    font-size: 30px !important;
    line-height: 28px !important;
    color: #000 !important;
    margin-bottom: 20px !important; }
  .blog-wrap .blog-content h3 {
    font-size: 24px !important;
    line-height: 28px !important;
    color: #000 !important;
    margin-bottom: 20px !important; }
  .blog-wrap .blog-content h4 {
    font-size: 20px !important;
    line-height: 28px !important;
    color: #000 !important;
    margin-bottom: 20px !important; }
  .blog-wrap .blog-content ul {
    margin-bottom: 20px !important; }
    .blog-wrap .blog-content ul li {
      font-size: 16px !important;
      line-height: 28px !important;
      color: #000 !important;
      margin-bottom: 5px !important;
      position: relative;
      list-style-type: none; }
      .blog-wrap .blog-content ul li:last-child {
        padding-bottom: 0; }
      .blog-wrap .blog-content ul li:before {
        position: absolute;
        left: -20px;
        top: 11px;
        content: "";
        background: #a1a1a1;
        background-size: contain;
        width: 5px;
        height: 5px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%; }
      .blog-wrap .blog-content ul li:last-child {
        margin: 0; }
      .blog-wrap .blog-content ul li * {
        line-height: inherit !important; }
  .blog-wrap .blog-content ol li {
    font-size: 16px !important;
    line-height: 28px !important;
    color: #000 !important;
    margin-bottom: 25px !important;
    position: relative; }
  .blog-wrap .blog-content strong, .blog-wrap .blog-content b {
    font-size: 16px !important;
    line-height: 28px !important;
    color: #000 !important;
    margin-bottom: 25px !important;
    font-weight: 600 !important; }
  .blog-wrap .blog-content i {
    font-size: 16px !important;
    line-height: 28px !important;
    color: #000 !important;
    margin-bottom: 25px !important;
    font-style: italic !important; }
  .blog-wrap .blog-content img {
    max-width: 100%;
    margin-bottom: 20px; }

.blog-single-article-img img {
  max-width: 170px; }

.subscribe-section-full {
  background-image: url(/../image/newsletter2.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; }

.company-slider-wrap {
  padding: 0 3rem;
  position: relative; }
  .company-slider-wrap .company-slider-item .company-slider-item-head {
    width: 48%;
    display: inline-block; }
    .company-slider-wrap .company-slider-item .company-slider-item-head img {
      width: 100%;
      max-width: 750px; }
    @media only screen and (max-width: 1023px) {
      .company-slider-wrap .company-slider-item .company-slider-item-head {
        width: 100%;
        display: block;
        margin: 0 auto; }
        .company-slider-wrap .company-slider-item .company-slider-item-head img {
          max-width: 450px;
          margin: 0 auto; } }
  .company-slider-wrap .company-slider-item .company-slider-item-content {
    width: 52%;
    display: inline-block;
    float: right;
    padding-left: 18%; }
    @media only screen and (max-width: 1023px) {
      .company-slider-wrap .company-slider-item .company-slider-item-content {
        float: none;
        padding-left: initial;
        width: 100%;
        display: block; } }
    .company-slider-wrap .company-slider-item .company-slider-item-content .company-slider-item-content-box {
      max-width: 620px;
      text-align: left !important; }
      .company-slider-wrap .company-slider-item .company-slider-item-content .company-slider-item-content-box h2 {
        letter-spacing: 0;
        line-height: 58px;
        text-decoration: underline;
        font-size: 48px;
        color: #8a0000;
        font-weight: 700;
        margin-bottom: 1.5rem !important; }
        @media only screen and (max-width: 1279px) {
          .company-slider-wrap .company-slider-item .company-slider-item-content .company-slider-item-content-box h2 {
            font-size: 38px;
            line-height: 42px; } }
        @media only screen and (max-width: 767px) {
          .company-slider-wrap .company-slider-item .company-slider-item-content .company-slider-item-content-box h2 {
            font-size: 30px;
            line-height: 36px;
            padding-top: 20px; } }
      .company-slider-wrap .company-slider-item .company-slider-item-content .company-slider-item-content-box p {
        font-family: Lato, sans-serif;
        color: #a1a1a1;
        letter-spacing: 0;
        line-height: 26px;
        max-width: 50ch; }
        @media only screen and (max-width: 767px) {
          .company-slider-wrap .company-slider-item .company-slider-item-content .company-slider-item-content-box p {
            font-size: 16px !important;
            line-height: 20px !important; } }
    .company-slider-wrap .company-slider-item .company-slider-item-content a {
      border: 2px solid #8a0000;
      letter-spacing: 2px;
      font-size: 12px;
      font-weight: 700;
      font-family: Lato, sans-serif;
      white-space: nowrap;
      padding: 0 22px;
      line-height: 48px;
      color: #000;
      -webkit-transition: 0.2s;
      -moz-transition: 0.2s;
      -ms-transition: 0.2s;
      -o-transition: 0.2s;
      transition: 0.2s; }
      .company-slider-wrap .company-slider-item .company-slider-item-content a:hover {
        background-color: #8a0000;
        color: #fff !important;
        -webkit-transition: 0.2s;
        -moz-transition: 0.2s;
        -ms-transition: 0.2s;
        -o-transition: 0.2s;
        transition: 0.2s; }
  .company-slider-wrap .company-slider-item:after {
    content: "";
    display: table;
    clear: both; }
  .company-slider-wrap .slick-prev {
    width: 14px;
    position: absolute;
    z-index: 99;
    top: 50%;
    left: -50px;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
    .company-slider-wrap .slick-prev img {
      width: 14px; }
    @media only screen and (max-width: 1023px) {
      .company-slider-wrap .slick-prev {
        left: 0; } }
  .company-slider-wrap .slick-next {
    width: 14px;
    position: absolute;
    z-index: 99;
    top: 50%;
    right: -50px;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
    .company-slider-wrap .slick-next img {
      width: 14px; }
    @media only screen and (max-width: 1023px) {
      .company-slider-wrap .slick-next {
        right: 0; } }

.company-award-slider-wrap .company-award-slider-item {
  margin: 0 10px; }
  .company-award-slider-wrap .company-award-slider-item h6 {
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 16px;
    font-family: Lato, sans-serif; }

.company-award-slider-wrap .slick-prev {
  width: 14px;
  position: absolute;
  z-index: 99;
  top: 50%;
  left: -50px;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }
  .company-award-slider-wrap .slick-prev img {
    width: 14px; }

.company-award-slider-wrap .slick-next {
  width: 14px;
  position: absolute;
  z-index: 99;
  top: 50%;
  right: -50px;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }
  .company-award-slider-wrap .slick-next img {
    width: 14px; }

.gazdina-slider-holder {
  background-image: url(../../image/bcgsmoke.webp);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 30px; }

.gazdina-slider-wrap {
  padding: 0 3rem;
  position: relative; }
  .gazdina-slider-wrap .gazdina-slider-item .gazdina-slider-item-head {
    width: 48%;
    display: inline-block; }
    .gazdina-slider-wrap .gazdina-slider-item .gazdina-slider-item-head img {
      width: 100%;
      max-width: 750px; }
    @media only screen and (max-width: 1023px) {
      .gazdina-slider-wrap .gazdina-slider-item .gazdina-slider-item-head {
        width: 100%;
        display: block;
        margin: 0 auto; }
        .gazdina-slider-wrap .gazdina-slider-item .gazdina-slider-item-head img {
          max-width: 450px;
          margin: 0 auto; } }
  .gazdina-slider-wrap .gazdina-slider-item .gazdina-slider-item-content {
    width: 52%;
    display: inline-block;
    float: right;
    padding-left: 18%;
    padding-top: 40px; }
    @media only screen and (max-width: 767px) {
      .gazdina-slider-wrap .gazdina-slider-item .gazdina-slider-item-content {
        padding-left: initial;
        width: 100%;
        display: block; } }
    .gazdina-slider-wrap .gazdina-slider-item .gazdina-slider-item-content .gazdina-slider-item-content-box {
      max-width: 360px;
      text-align: left !important; }
      .gazdina-slider-wrap .gazdina-slider-item .gazdina-slider-item-content .gazdina-slider-item-content-box h2 {
        letter-spacing: 0;
        line-height: 58px;
        text-decoration: underline;
        font-size: 48px;
        color: #8a0000;
        font-weight: 700;
        margin-bottom: 1.5rem !important; }
        @media only screen and (max-width: 767px) {
          .gazdina-slider-wrap .gazdina-slider-item .gazdina-slider-item-content .gazdina-slider-item-content-box h2 {
            font-size: 30px;
            line-height: 36px; } }
      .gazdina-slider-wrap .gazdina-slider-item .gazdina-slider-item-content .gazdina-slider-item-content-box p {
        font-family: Lato, sans-serif;
        color: #a1a1a1;
        letter-spacing: 0;
        line-height: 26px;
        max-width: 50ch; }
        @media only screen and (max-width: 767px) {
          .gazdina-slider-wrap .gazdina-slider-item .gazdina-slider-item-content .gazdina-slider-item-content-box p {
            font-size: 16px !important;
            line-height: 20px !important; } }
    .gazdina-slider-wrap .gazdina-slider-item .gazdina-slider-item-content a {
      border: 2px solid #8a0000;
      letter-spacing: 2px;
      font-size: 12px;
      font-weight: 700;
      font-family: Lato, sans-serif;
      white-space: nowrap;
      padding: 0 22px;
      line-height: 48px;
      color: #fff;
      background-color: #8a0000;
      -webkit-transition: 0.2s;
      -moz-transition: 0.2s;
      -ms-transition: 0.2s;
      -o-transition: 0.2s;
      transition: 0.2s; }
      .gazdina-slider-wrap .gazdina-slider-item .gazdina-slider-item-content a:hover {
        background-color: #8a0000;
        color: #fff !important;
        -webkit-transition: 0.2s;
        -moz-transition: 0.2s;
        -ms-transition: 0.2s;
        -o-transition: 0.2s;
        transition: 0.2s; }
    @media only screen and (max-width: 1023px) {
      .gazdina-slider-wrap .gazdina-slider-item .gazdina-slider-item-content {
        width: 100%;
        display: block; } }
  .gazdina-slider-wrap .gazdina-slider-item:after {
    content: "";
    display: table;
    clear: both; }
  .gazdina-slider-wrap .slick-prev {
    width: 14px;
    position: absolute;
    z-index: 99;
    top: 50%;
    left: -50px;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
    .gazdina-slider-wrap .slick-prev img {
      width: 14px; }
    @media only screen and (max-width: 1023px) {
      .gazdina-slider-wrap .slick-prev {
        left: 0; } }
  .gazdina-slider-wrap .slick-next {
    width: 14px;
    position: absolute;
    z-index: 99;
    top: 50%;
    right: -50px;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
    .gazdina-slider-wrap .slick-next img {
      width: 14px; }
    @media only screen and (max-width: 1023px) {
      .gazdina-slider-wrap .slick-next {
        right: 0; } }

.reina-slider-holder {
  background-image: url(../../image/reina-bcg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 30px; }

.reina-slider-wrap {
  padding: 0 3rem;
  position: relative; }
  .reina-slider-wrap .reina-slider-item .reina-slider-item-head {
    width: 48%;
    display: inline-block; }
    .reina-slider-wrap .reina-slider-item .reina-slider-item-head img {
      width: 100%;
      max-width: 750px; }
    @media only screen and (max-width: 1023px) {
      .reina-slider-wrap .reina-slider-item .reina-slider-item-head {
        width: 100%;
        display: block;
        margin: 0 auto; }
        .reina-slider-wrap .reina-slider-item .reina-slider-item-head img {
          max-width: 450px;
          margin: 0 auto; } }
  .reina-slider-wrap .reina-slider-item .reina-slider-item-content {
    width: 52%;
    display: inline-block;
    float: right;
    padding-left: 18%;
    padding-top: 40px; }
    @media only screen and (max-width: 767px) {
      .reina-slider-wrap .reina-slider-item .reina-slider-item-content {
        padding-left: initial;
        width: 100%;
        display: block; } }
    .reina-slider-wrap .reina-slider-item .reina-slider-item-content .reina-slider-item-content-box {
      max-width: 420px;
      text-align: left !important; }
      .reina-slider-wrap .reina-slider-item .reina-slider-item-content .reina-slider-item-content-box h2 {
        letter-spacing: 0;
        line-height: 58px;
        text-decoration: underline;
        font-size: 48px;
        color: #d1b172;
        font-weight: 700;
        margin-bottom: 1.5rem !important; }
        @media only screen and (max-width: 767px) {
          .reina-slider-wrap .reina-slider-item .reina-slider-item-content .reina-slider-item-content-box h2 {
            font-size: 30px;
            line-height: 36px; } }
      .reina-slider-wrap .reina-slider-item .reina-slider-item-content .reina-slider-item-content-box p {
        font-family: Lato, sans-serif;
        color: #a1a1a1;
        letter-spacing: 0;
        line-height: 26px;
        max-width: 50ch; }
        @media only screen and (max-width: 767px) {
          .reina-slider-wrap .reina-slider-item .reina-slider-item-content .reina-slider-item-content-box p {
            font-size: 16px !important;
            line-height: 20px !important; } }
    .reina-slider-wrap .reina-slider-item .reina-slider-item-content a {
      border: 2px solid #d1b172;
      letter-spacing: 2px;
      font-size: 12px;
      font-weight: 700;
      font-family: Lato, sans-serif;
      white-space: nowrap;
      padding: 0 22px;
      line-height: 48px;
      color: #fff;
      background-color: #d1b172;
      -webkit-transition: 0.2s;
      -moz-transition: 0.2s;
      -ms-transition: 0.2s;
      -o-transition: 0.2s;
      transition: 0.2s; }
      .reina-slider-wrap .reina-slider-item .reina-slider-item-content a:hover {
        background-color: #d1b172;
        color: #fff !important;
        -webkit-transition: 0.2s;
        -moz-transition: 0.2s;
        -ms-transition: 0.2s;
        -o-transition: 0.2s;
        transition: 0.2s; }
    @media only screen and (max-width: 1023px) {
      .reina-slider-wrap .reina-slider-item .reina-slider-item-content {
        width: 100%;
        display: block; } }
  .reina-slider-wrap .reina-slider-item:after {
    content: "";
    display: table;
    clear: both; }
  .reina-slider-wrap .slick-prev {
    width: 14px;
    position: absolute;
    z-index: 99;
    top: 50%;
    left: -50px;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
    .reina-slider-wrap .slick-prev img {
      width: 14px; }
    @media only screen and (max-width: 1023px) {
      .reina-slider-wrap .slick-prev {
        left: 0; } }
  .reina-slider-wrap .slick-next {
    width: 14px;
    position: absolute;
    z-index: 99;
    top: 50%;
    right: -50px;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
    .reina-slider-wrap .slick-next img {
      width: 14px; }
    @media only screen and (max-width: 1023px) {
      .reina-slider-wrap .slick-next {
        right: 0; } }

.gin-slider-holder {
  background-image: url(../../image/gin-bcg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 60px; }

.gin-slider-wrap {
  padding: 0 3rem;
  position: relative; }
  .gin-slider-wrap .gin-slider-item .gin-slider-item-head {
    width: 48%;
    display: inline-block; }
    .gin-slider-wrap .gin-slider-item .gin-slider-item-head img {
      width: 100%;
      max-width: 750px; }
    @media only screen and (max-width: 1023px) {
      .gin-slider-wrap .gin-slider-item .gin-slider-item-head {
        width: 100%;
        display: block;
        margin: 0 auto; }
        .gin-slider-wrap .gin-slider-item .gin-slider-item-head img {
          max-width: 450px;
          margin: 0 auto; } }
  .gin-slider-wrap .gin-slider-item .gin-slider-item-content {
    width: 52%;
    display: inline-block;
    float: right;
    padding-left: 18%;
    padding-top: 40px; }
    @media only screen and (max-width: 767px) {
      .gin-slider-wrap .gin-slider-item .gin-slider-item-content {
        padding-left: initial;
        width: 100%;
        display: block; } }
    .gin-slider-wrap .gin-slider-item .gin-slider-item-content .gin-slider-item-content-box {
      max-width: 400px;
      text-align: left !important; }
      .gin-slider-wrap .gin-slider-item .gin-slider-item-content .gin-slider-item-content-box h2 {
        letter-spacing: 0;
        line-height: 58px;
        text-decoration: underline;
        font-size: 48px;
        color: #D4552B;
        font-weight: 700;
        margin-bottom: 1.5rem !important; }
        @media only screen and (max-width: 767px) {
          .gin-slider-wrap .gin-slider-item .gin-slider-item-content .gin-slider-item-content-box h2 {
            font-size: 30px;
            line-height: 36px; } }
      .gin-slider-wrap .gin-slider-item .gin-slider-item-content .gin-slider-item-content-box p {
        font-family: Lato, sans-serif;
        color: #fff;
        letter-spacing: 0;
        line-height: 26px;
        max-width: 50ch; }
        @media only screen and (max-width: 767px) {
          .gin-slider-wrap .gin-slider-item .gin-slider-item-content .gin-slider-item-content-box p {
            font-size: 16px !important;
            line-height: 20px !important; } }
    .gin-slider-wrap .gin-slider-item .gin-slider-item-content h6 {
      text-transform: uppercase !important; }
    .gin-slider-wrap .gin-slider-item .gin-slider-item-content a {
      border: 2px solid #D4552B;
      letter-spacing: 2px;
      font-size: 12px;
      font-weight: 700;
      font-family: Lato, sans-serif;
      white-space: nowrap;
      padding: 0 22px;
      line-height: 48px;
      color: #fff;
      background-color: #D4552B;
      -webkit-transition: 0.2s;
      -moz-transition: 0.2s;
      -ms-transition: 0.2s;
      -o-transition: 0.2s;
      transition: 0.2s; }
      .gin-slider-wrap .gin-slider-item .gin-slider-item-content a:hover {
        background-color: #D4552B;
        color: #fff !important;
        -webkit-transition: 0.2s;
        -moz-transition: 0.2s;
        -ms-transition: 0.2s;
        -o-transition: 0.2s;
        transition: 0.2s; }
    @media only screen and (max-width: 1023px) {
      .gin-slider-wrap .gin-slider-item .gin-slider-item-content {
        width: 100%;
        display: block; } }
  .gin-slider-wrap .gin-slider-item:after {
    content: "";
    display: table;
    clear: both; }
  .gin-slider-wrap .slick-prev {
    width: 14px;
    position: absolute;
    z-index: 99;
    top: 50%;
    left: -50px;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
    .gin-slider-wrap .slick-prev img {
      width: 14px; }
    @media only screen and (max-width: 1023px) {
      .gin-slider-wrap .slick-prev {
        left: 0; } }
  .gin-slider-wrap .slick-next {
    width: 14px;
    position: absolute;
    z-index: 99;
    top: 50%;
    right: -50px;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
    .gin-slider-wrap .slick-next img {
      width: 14px; }
    @media only screen and (max-width: 1023px) {
      .gin-slider-wrap .slick-next {
        right: 0; } }

.limited1-slider-wrap {
  position: relative;
  padding-right: 50px; }
  @media only screen and (max-width: 767px) {
    .limited1-slider-wrap {
      padding-right: initial;
      width: 100%;
      display: block; } }
  .limited1-slider-wrap .limited1-slider-item {
    margin: 0 5px; }
    .limited1-slider-wrap .limited1-slider-item img {
      max-width: 100%;
      width: 100%; }
      @media only screen and (max-width: 767px) {
        .limited1-slider-wrap .limited1-slider-item img {
          max-width: 350px;
          margin: 0 auto; } }
  .limited1-slider-wrap .slick-prev {
    width: 14px;
    position: absolute;
    z-index: 99;
    top: 50%;
    left: -40px;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
    .limited1-slider-wrap .slick-prev img {
      width: 14px; }
    @media only screen and (max-width: 767px) {
      .limited1-slider-wrap .slick-prev {
        left: -20px; } }
  .limited1-slider-wrap .slick-next {
    width: 14px;
    position: absolute;
    z-index: 99;
    top: 50%;
    right: 0;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
    .limited1-slider-wrap .slick-next img {
      width: 14px; }
    @media only screen and (max-width: 767px) {
      .limited1-slider-wrap .slick-next {
        right: -20px; } }

@media only screen and (max-width: 767px) {
  .limited-collection .limited-text-title {
    font-size: 30px !important;
    line-height: 36px !important; } }

.limited2-slider-wrap {
  position: relative;
  padding-left: 20px; }
  @media only screen and (max-width: 767px) {
    .limited2-slider-wrap {
      padding-left: initial; } }
  .limited2-slider-wrap .limited2-slider-item {
    margin: 0 5px; }
    .limited2-slider-wrap .limited2-slider-item img {
      max-width: 100%;
      width: 100%; }
  .limited2-slider-wrap .slick-prev {
    width: 14px;
    position: absolute;
    z-index: 99;
    top: 50%;
    left: -30px;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
    .limited2-slider-wrap .slick-prev img {
      width: 14px; }
    @media only screen and (max-width: 767px) {
      .limited2-slider-wrap .slick-prev {
        left: -20px; } }
  .limited2-slider-wrap .slick-next {
    width: 14px;
    position: absolute;
    z-index: 99;
    top: 50%;
    right: -50px;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
    .limited2-slider-wrap .slick-next img {
      width: 14px; }
    @media only screen and (max-width: 767px) {
      .limited2-slider-wrap .slick-next {
        right: -20px; } }

.slider-small-awards {
  position: relative; }
  @media only screen and (max-width: 767px) {
    .slider-small-awards h4 {
      font-size: 24px !important;
      line-height: 26px !important; }
    .slider-small-awards .slider-small-awards-item {
      margin: 0 40px !important; } }
  .slider-small-awards .slick-prev {
    width: 20px;
    position: absolute;
    z-index: 99;
    top: 50%;
    cursor: pointer;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .slider-small-awards .slick-prev img {
      width: 15px; }
  .slider-small-awards .slick-next {
    width: 20px;
    position: absolute;
    z-index: 99;
    top: 50%;
    right: 0;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .slider-small-awards .slick-next img {
      width: 15px; }
  .slider-small-awards .slick-dots {
    position: absolute;
    bottom: -20px;
    width: 100%;
    text-align: center;
    padding: 0 !important;
    margin: 0 !important; }
    .slider-small-awards .slick-dots li {
      display: inline-block;
      margin-right: 10px;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      border-radius: 50%; }
      .slider-small-awards .slick-dots li button {
        color: transparent;
        background-color: #707070;
        border: none !important;
        width: 12px;
        height: 12px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%; }
      .slider-small-awards .slick-dots li.slick-active button {
        background-color: #fff !important; }

.quantity-buttons .minusCart {
  width: 48px;
  height: 48px;
  text-align: center;
  border: 2px solid #8A0000;
  background-color: transparent;
  transition: background-color ease-in-out .3s;
  color: #000 !important;
  outline: none;
  font-size: 22px;
  padding-bottom: 4px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s; }
  .quantity-buttons .minusCart:hover {
    color: #fff !important;
    background-color: #8A0000;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s; }

.quantity-buttons .plusCart {
  width: 48px;
  height: 48px;
  text-align: center;
  border: 2px solid #8A0000;
  background-color: transparent;
  transition: background-color ease-in-out .3s;
  color: #000 !important;
  outline: none;
  font-size: 22px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s; }
  .quantity-buttons .plusCart:hover {
    color: #fff !important;
    background-color: #8A0000;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s; }

.quantity-buttons .num-input {
  border: none !important;
  text-align: center;
  font-weight: bold; }

.quantity-buttons-single {
  width: 160px; }
  .quantity-buttons-single .minus {
    display: inline-block;
    width: 48px;
    height: 48px;
    text-align: center;
    border: 2px solid #8A0000;
    background-color: transparent;
    transition: background-color ease-in-out .3s;
    color: #000 !important;
    outline: none;
    font-size: 22px;
    padding-bottom: 4px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s; }
    .quantity-buttons-single .minus:hover {
      color: #fff !important;
      background-color: #8A0000;
      -webkit-transition: 0.2s;
      -moz-transition: 0.2s;
      -ms-transition: 0.2s;
      -o-transition: 0.2s;
      transition: 0.2s; }
  .quantity-buttons-single .plus {
    display: inline-block;
    width: 48px;
    height: 48px;
    text-align: center;
    border: 2px solid #8A0000;
    background-color: transparent;
    transition: background-color ease-in-out .3s;
    color: #000 !important;
    outline: none;
    font-size: 22px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s; }
    .quantity-buttons-single .plus:hover {
      color: #fff !important;
      background-color: #8A0000;
      -webkit-transition: 0.2s;
      -moz-transition: 0.2s;
      -ms-transition: 0.2s;
      -o-transition: 0.2s;
      transition: 0.2s; }
  .quantity-buttons-single .num-input {
    display: inline-block;
    border: none !important;
    text-align: center;
    font-weight: bold; }

.contact-page .card {
  box-shadow: none !important; }

.warning-text {
  position: absolute;
  color: red;
  font-size: 12px;
  font-style: italic;
  bottom: -17px;
  left: 14px;
  z-index: 9;
  display: none; }
  .warning-text.warning-text-textarea {
    bottom: 12px; }
  .warning-text.warning-text-area {
    bottom: 3px; }
  .warning-text.warning-text-area2 {
    bottom: 8px; }
  .warning-text.warning-text-right {
    left: initial;
    right: 10px; }
  @media only screen and (max-width: 1279px) {
    .warning-text {
      font-size: 9px;
      bottom: -12px; } }

.warning {
  border: 1px solid red; }

.privacy-form {
  max-width: 640px; }
  .privacy-form textarea {
    height: 120px; }
  .privacy-form button {
    background-color: #8a0000 !important;
    border: 1px solid #8a0000 !important; }

.product-list-filter {
  margin-left: 0; }
  .product-list-filter .card {
    position: relative;
    margin: 5px 10px !important;
    width: calc(16.6666% - 20px) !important; }
    @media only screen and (max-width: 1360px) {
      .product-list-filter .card {
        width: calc(20% - 20px) !important; } }
    @media only screen and (max-width: 1279px) {
      .product-list-filter .card {
        width: calc(25% - 20px) !important; } }
    @media only screen and (max-width: 1023px) {
      .product-list-filter .card {
        width: calc(33% - 20px) !important; } }
    @media only screen and (max-width: 767px) {
      .product-list-filter .card {
        width: 100% !important; } }

.faq-holder {
  width: 100%;
  max-width: 670px;
  margin: 0 auto;
  padding-bottom: 60px;
  padding-top: 40px; }
  .faq-holder .faq-title p {
    font-size: 16px;
    line-height: 20px;
    color: #15181a; }

.footer-logo img {
  width: 210px; }

#cookieConsent {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 1000;
  background-color: #fff;
  -webkit-box-shadow: 0px -3px 13px -4px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px -3px 13px -4px rgba(0, 0, 0, 0.3);
  box-shadow: 0px -3px 13px -4px rgba(0, 0, 0, 0.3);
  font-family: Arial, sans-serif; }
  #cookieConsent h3 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 5px; }
  #cookieConsent p {
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 10px; }
    #cookieConsent p a {
      font-size: 16px;
      line-height: 18px; }
      #cookieConsent p a:hover {
        text-decoration: underline; }
  #cookieConsent .cookie-toggle {
    margin: 10px 25px 10px 0;
    display: inline-block; }
  #cookieConsent .cookie-toggle label {
    margin-left: 5px;
    line-height: 14px; }
  #cookieConsent .cookie-buttons {
    margin-top: 15px; }
  #cookieConsent input {
    -webkit-appearance: auto !important;
    -moz-appearance: auto !important;
    appearance: auto !important;
    accent-color: #333333; }
  #cookieConsent button {
    padding: 10px 22px;
    margin-right: 10px;
    font-size: 12px !important;
    text-transform: uppercase;
    border: none;
    cursor: pointer; }
  #cookieConsent #acceptAll {
    background: #8a0000;
    border: 1px solid #333333;
    color: #fff; }
  #cookieConsent #saveSettings {
    background: #fff;
    border: 1px solid #8a0000;
    color: #000; }

/* shine border */
.shine-border {
  animation: shine 1s infinite; }

@keyframes shine {
  0% {
    box-shadow: 0 3px 6px #e90d0d; }
  50% {
    box-shadow: 0 3px 6px rgba(233, 13, 13, 0); }
  100% {
    box-shadow: 0 3px 6px #e90d0d; } }

.profile-image svg {
  width: 40px;
  font-size: 30px; }

.registration-content {
  font-size: 22px;
  font-weight: 600;
  display: inline-block; }
  .registration-content a {
    font-size: 22px;
    font-weight: 600; }
  @media only screen and (max-width: 1279px) {
    .registration-content {
      display: block; } }
  @media only screen and (max-width: 767px) {
    .registration-content {
      font-size: 18px;
      font-weight: 600;
      display: block; }
      .registration-content a {
        font-size: 18px;
        font-weight: 600; } }

.forgot-pass-button {
  float: right;
  margin-top: 6px; }
  @media only screen and (max-width: 1279px) {
    .forgot-pass-button {
      float: none;
      display: inline-block; } }

.en-menu-wrap {
  margin-left: -480px; }
  @media only screen and (max-width: 1279px) {
    .en-menu-wrap {
      margin-left: -260px; } }
  @media only screen and (max-width: 767px) {
    .en-menu-wrap {
      margin-left: initial; } }

@media only screen and (max-width: 767px) {
  .category-page {
    padding-right: 15px;
    padding-left: 15px; }
    .category-page .card {
      width: 100% !important; } }

.popular-products-section-2 .card h2 {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  overflow: hidden;
  text-align: left;
  margin-top: 10px; }

.btn-open-filter {
  z-index: 9 !important; }

.open-privacy-form {
  cursor: pointer; }

@media only screen and (max-width: 767px) {
  .midlle-header .midlle-header-number {
    line-height: 18px !important; } }

@media only screen and (max-width: 767px) {
  .subscribe-section .subscribe-form .subscribe-mail {
    margin-bottom: 8px !important; } }

.mb10 {
  margin-bottom: 10px; }

.mb20 {
  margin-bottom: 20px; }

@media only screen and (max-width: 767px) {
  .mob-b0 {
    margin-bottom: 0 !important; } }

@media only screen and (max-width: 767px) {
  .mob-mb20 {
    margin-bottom: 20px !important; } }

.mob-show {
  display: none; }
  @media only screen and (max-width: 767px) {
    .mob-show {
      display: block !important; } }

@media only screen and (max-width: 767px) {
  .mob-none {
    display: none !important; } }

.none-scroll {
  overflow: hidden !important; }

.opacity0 {
  opacity: 0 !important; }

#enterYes {
  display: none;
  opacity: 0;
  position: absolute;
  left: -1000px;
  top: -1000px; }
