:root {
  --one: #0066AD;
  --two: #F26E22;
  --three: #013960;
  --four: #132142;
  --five: #F26E22;
}

html {
  scroll-behavior: smooth !important;
}

input:focus {
  outline-offset: 0px;
}

btn:focus {
  outline: -webkit-focus-ring-color auto 0px !important;
}

:focus {
  outline: none;
}

input:focus, select:focus, textarea:focus, button:focus {
  outline: none !important;
}
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-results-button, input[type="search"]::-webkit-search-results-decoration {
  filter: invert(27%) sepia(71%) saturate(1450%) hue-rotate(179deg) brightness(1000%) contrast(100%);
}

@media (min-width:992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width:1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width:1380px) {
  .container {
    max-width: 1380px;
  }
}

@media (min-width:1380px) {
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}

/* flickity */

.flickity-prev-next-button svg {
  display: none;
}

.flickity-prev-next-button::before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
}

.flickity-prev-next-button {
  width: 50px !important;
  height: 50px !important;
}

.flickity-button.next::before {
  content: "";
  background-image: url('../../assets/img/right.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.flickity-prev-next-button.next {
  right: 25px;
}

.flickity-button.previous::before {
  content: "";
  background-image: url('../../assets/img/left.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.flickity-prev-next-button.previous {
  left: 25px;
}

.flickity-page-dots {
  position: absolute;
  bottom: 10px;
  z-index: 3;
}

.flickity-page-dots .dot {
  border-radius: 0;
  margin: 0;
  width: 20px;
  background: white;
}

.flickity-button {
  z-index: 3;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.icon-heart {
  font-size: 10px;
  color: var(--one);
  font-weight: bold;
}

body {
  font-family: 'Baloo Thambi 2';
}

body::before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(1 57 96 / 60%);
  z-index: 9998;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition-delay: 0s;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.overlay::before {
  z-index: 9998;
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.aspect {
  position: relative;
  width: 100%;
  z-index: 0;
  transition: .3s ease;
  overflow: hidden;
}

.aspect img {
  position: absolute;
  top: 0;
  object-fit: cover;
  transition: .3s;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.aspect-4-4 {
  padding-top: 100%;
}

.aspect-4-3 {
  padding-top: 75%;
}

.aspect-2-3 {
  padding-top: 66.67%;
}

.aspect-16-9 {
  padding-top: 56.25%;
}

.aspect-vertical {
  padding-top: 600px;
}

.icon-social-media a {
  opacity: 1;
  transition: .3s;
}

.product-menu img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin: 20px;
}

.product-menu {
  color: var(--one);
}

.area-cards {
  display: inline-block;
  width: auto !important;
  left: 0px;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a {
  color: #000;
  text-decoration: none;
  background-color: transparent;
}

.section-title {
  margin: 50px 0px;
  font-family: 'Baloo Thambi 2';
}

@media (min-width: 300px) {
  #section-title h2 {
    font-weight: 100;
    font-size: 30px;
  }
}

@media (min-width: 576px) {
  #section-title h2 {
    font-weight: 100;
    font-size: 40px;
  }
}

.product-name {
  font-size: 18px;
  font-weight: 400;
}

.product-price {
  font-weight: 100;
  font-size: 16px;
  color: #666;
}

.btn-product-primary {
  margin: 20px 0px;
  color: var(--one);
  height: 50px;
}

@media (min-width: 300px) {
  .content-product-tertiary-price {
    width: 100%;
    height: 100%;
    padding: 25px;
  }
}

@media (min-width: 576px) {
  .content-product-tertiary-price {
    width: 100%;
    height: 100%;
    padding: 25px;
  }
}

@media (min-width: 768px) {
  .content-product-tertiary-price {
    width: 100%;
    height: 100%;
    padding: 25px;
  }
}

@media (min-width: 992px) {
  .content-product-tertiary-price {
    width: 50%;
    height: 100%;
    padding: 25px;
  }
}

.button-buy {
  color: var(--one);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  padding: 10px 20px;
  margin: 30px 0px 0px 0px;
  /*width: 95%;*/
}

.button-primary {
  color: rgba(0,102,173,1);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  padding: 10px 20px;
  font-size: 18px;
  letter-spacing: 5PX;
}

.button-buy:hover::before {
  opacity: 0;
  -webkit-transform: scale(0.5,0.5);
  transform: scale(0.5,0.5);
}

.button-primary:hover::before {
  opacity: 0;
  -webkit-transform: scale(0.5,0.5);
  transform: scale(0.5,0.5);
}

.button-buy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0,102,173,0.3);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.button-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0,102,173,.3);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.button-buy:hover::after {
  opacity: 1;
  -webkit-transform: scale(1,1);
  transform: scale(1,1);
}

.button-primary:hover::after {
  opacity: 1;
  -webkit-transform: scale(1,1);
  transform: scale(1,1);
}

.button-buy::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid rgba(0,102,173,0.3);
  -webkit-transform: scale(1.2,1.2);
  transform: scale(1.2,1.2);
}

.button-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid rgba(0,102,173,0.5);
  -webkit-transform: scale(1.2,1.2);
  transform: scale(1.2,1.2);
}

.button-buy:hover {
  color: var(--one);
}

.button-primary:hover {
  color: var(--one);
}

@media (min-width: 300px) {
  .primary-mosaic img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
}

@media (min-width: 576px) {
  .primary-mosaic img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
}

@media (min-width: 768px) {
  .primary-mosaic img {
    width: 100%;
    height: 550px;
    object-fit: cover;
  }
}

@media (min-width: 992px) {
  .primary-mosaic img {
    width: 100%;
    height: 450px;
    object-fit: cover;
  }
}

@media (min-width: 1200px) {
  .primary-mosaic img {
    width: 100%;
    height: 550px;
    object-fit: cover;
  }
}

@media (min-width: 300px) {
  .secondary-mosaic img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
}

@media (min-width: 576px) {
  .secondary-mosaic img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
}

@media (min-width: 768px) {
  .secondary-mosaic img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
}

@media (min-width: 992px) {
  .secondary-mosaic img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
}

@media (min-width: 1200px) {
  .secondary-mosaic img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
}

@media (min-width: 300px) {
  .tertiary-mosaic img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
}

@media (min-width: 576px) {
  .tertiary-mosaic img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
}

@media (min-width: 768px) {
  .tertiary-mosaic img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
}

@media (min-width: 992px) {
  .tertiary-mosaic img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
}

@media (min-width: 1200px) {
  .tertiary-mosaic img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
}

.content-slider {
  background-color: var(--one);
  width: 100%;
 /*height: 70vh;*/
}

.head-category {
  background-color: var(--one);
  width: 100%;
  height: 60vh;
}

.content-slider-primary {
  position: relative;
}

.head-category {
  position: relative;
}

.content-slider-secondary {
  position: relative;
}

.btn-shop .icon-bag {
  color: var(--one);
  font-size: 11px;
}

.efect-zoom img:hover {
  opacity: 1;
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}

.efect-zoom img {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 0.7s ease, -webkit-transform 2s cubic-bezier(0, 0, 0.44, 1.18);
  transition: opacity 0.7s ease, -webkit-transform 2s cubic-bezier(0, 0, 0.44, 1.18);
  -o-transition: opacity 0.7s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
  transition: opacity 0.7s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
  transition: opacity 0.7s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18), -webkit-transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}

.primary-mosaic {
  overflow: hidden;
}

.efect-zoom {
  padding: 25px;
}

.tertiary-mosaic {
  overflow: hidden;
}

.secondary-mosaic {
  overflow: hidden;
}

.cuaternary-mosaic {
  padding: 25px;
}

@media (min-width: 300px) {
  .card {
    width: 200px;
    height: 200px;
    background-color: var(--one);
    border: 0;
  }
}

@media (min-width: 768px) {
  .card {
    width: 300px;
    height: 300px;
    background-color: var(--one);
  }
}

@media (min-width: 992px) {
  .card {
    width: 400px;
    height: 400px;
    background-color: var(--one);
  }
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.space {
  width: 100%;
  height: 30px;
}

.head-category img {
  position: absolute;
  width: 100%;
  height: 60vh;
  object-fit: cover;
  z-index: 1;
}

.category-head img {
  position: absolute;
  width: 100%;
  height: 50vh;
  object-fit: cover;
  z-index: 1;
}

.action-slide {
  position: absolute;
  width: 100%;
  height: 70vh;
  z-index: 2;
}

.category-head {
  position: absolute;
  width: 100%;
  height: 60vh;
  z-index: 2;
}

.action-slide h2 {
  font-size: 35px;
  color: var(--three);
  font-weight: 100;
}

.category-head h1 {
  font-size: 35px;
  color: var(--one);
  font-weight: 100;
}

@media (min-width: 768px) {
  .action-slide h2 {
    font-size: 60px;
    font-weight: 100;
  }
}

@media (min-width: 768px) {
  .category-head h1 {
    font-size: 60px;
    font-weight: 100;
  }
}

@media (min-width: 992px) {
  .action-slide h2 {
    font-size: 80px;
    font-weight: 100;
  }
}

@media (min-width: 992px) {
  .category-head h1 {
    font-size: 80px;
    font-weight: 100;
  }
}

.action-slide .caption {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--one);
}

@media (min-width: 300px) {
  .category-head .caption {
    font-size: 14px;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    letter-spacing: 8px;
  }
}

@media (min-width: 768px) {
  .action-slide .caption {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 10px;
  }
}

@media (min-width: 768px) {
  .category-head .caption {
    font-size: 18px;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    letter-spacing: 10px;
  }
}

.carousel-control-next, .carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: .5;
  transition: opacity .15s ease;
  z-index: 9;
}

.carousel-indicators li {
  box-sizing: content-box;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 10px !important;
  height: 10px !important;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity .6s ease;
  border-radius: 100%;
}

.content-slider-secondary img {
  width: 100%;
 /* position: absolute;
  height: 70vh;
  object-fit: cover;
  z-index: 1;*/
}

.content-slider-primary img {
  width: 100%;
  /*position: absolute;
  height: 70vh;
  object-fit: cover;
  z-index: 1;*/
}

.card-description {
  background: white;
  padding: 30px;
  margin-bottom: 10px;
  top: 100px;
}

.description-category {
  margin-top: -100px;
  position: relative;
  z-index: 9;
}

.gallery-category img {
  width: 100%;
  height: auto;
  padding: 10px 0px;
}

@media (min-width: 992px) {
  .gallery-category img {
    width: 100%;
    padding: 10px;
  }
}

.space-xl {
  width: 100%;
  height: 140px;
}

.space-lg {
  width: 100%;
  height: 100px;
}

@media (min-width: 300px) {
  .none-sm {
    display: none;
  }
}

@media (min-width: 992px) {
  .none-sm {
    display: inherit;
  }
}

@media (min-width: 300px) {
  .button-buy-mobile {
    display: flex !important;
    padding: 25px;
  }
}

@media (min-width: 992px) {
  .button-buy-mobile {
    display: none !important;
  }
}

@media (min-width: 300px) {
  .space-md {
    width: 100%;
    height: 40px;
  }
}

@media (min-width: 300px) {
  .action-slide {
    padding-bottom: 70px;
  }
}

@media (min-width: 768px) {
  .action-slide {
    padding-bottom: 0px;
  }
}

.details {
  font-size: 16px;
  color: var(--one);
  font-weight: 100;
}

.card-description h1 {
  font-size: 40px;
  font-weight: 400;
}

.scrollingwrapper {
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: light;
  scrollbar-width: thin;
}

.fancybox-is-open .fancybox-bg {
  opacity: .9;
  transition-timing-function: cubic-bezier(.22,.61,.36,1);
  background: rgba(249,245,234,.90) !important;
}

.fancybox-progress {
  background: white !important;
}

.fancybox-infobar {
  color: rgba(0,0,0,.5) !important;
}

.post-category {
  margin-bottom: 30px;
}

.post-category img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: .3s;
  background-position: center;
}

@media (min-width: 300px) {
  .post-category img {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 576px) {
  .post-category img {
    width: 510px;
    height: 343px;
  }
}

@media (min-width: 768px) {
  .post-category img {
    width: 690px;
    height: 464px;
  }
}

@media (min-width: 992px) {
  .post-category img {
    width: 450px;
    height: 302px;
  }
}

@media (min-width: 1200px) {
  .post-category img {
    width: 540px;
    height: 363px;
  }
}

@media (min-width: 1380px) {
  .post-category img {
    width: 660px;
    height: 444px;
  }
}

.post-category h2 {
  font-size: 25px;
  color: var(--one);
  font-weight: 200;
}

@media (min-width: 768px) {
  .post-category h2 {
    font-size: 30px;
    color: var(--one);
    font-weight: 200;
  }
}

.date {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--one);
}

.category {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--one);
}

.author {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--one);
}

.post-category-content {
  padding: 50px;
  background-color: white;
  margin-top: -50px;
  position: relative;
  width: 80%;
}

.post-search a, .post-related a {
  width: 100%;
}

.post-search {
  margin-bottom: 30px;
}

.post-search img, .post-related img {
  width: 100%;
  object-fit: cover;
  transition: .3s;
  background-position: center;
}

@media (min-width: 300px) {
  .post-search img {
    width: 100%;
  }
}

@media (min-width: 576px) {
  .post-search img {
    width: 510px;
    height: 510px;
  }
}

@media (min-width: 768px) {
  .post-search img {
    width: 690px;
    height: 690px;
  }
}

@media (min-width: 992px) {
  .post-search img {
    width: 450px;
    height: 450px;
  }
}

@media (min-width: 1200px) {
  .post-search img {
    width: 350px;
    height: 350px;
  }
}

@media (min-width: 1380px) {
  .post-search img {
    width: 430px;
    height: 430px;
  }
}

.post-search h2 {
  font-size: 25px;
  color: var(--one);
  font-weight: 200;
}

@media (min-width: 768px) {
  .post-search h2 {
    font-size: 30px;
    color: var(--one);
    font-weight: 200;
  }
}

.post-search-content, .post-related-content {
  padding: 20px;
  background-color: white;
  position: relative;
  width: 80%;
  text-align: center;
}

#error-404 img {
  width: 80%;
  margin: 50px;
}

@media (min-width: 768px) {
  #error-404 img {
    width: 40%;
    margin: 50px;
  }
}

.button-one:hover::after {
  opacity: 1;
  -webkit-transform: scale(1,1);
  transform: scale(1,1);
}

.button-one:hover::before {
  opacity: 0;
  -webkit-transform: scale(0.5,0.5);
  transform: scale(0.5,0.5);
}

.button-one:hover {
  color: var(--one);
}

.button-one::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid rgba(0,102,173,0.3);
  -webkit-transform: scale(1.2,1.2);
  transform: scale(1.2,1.2);
}

.button-one::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0,102,173,0.3);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.button-one {
  color: var(--one);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  padding: 10px 20px;
  margin: 30px 0px 0px 0px;
  width: 95%;
}

.area-buttom-one {
  width: 80%;
}

@media (min-width: 768px) {
  .area-buttom-one {
    width: 40%;
  }
}

@media (min-width: 992px) {
  .area-buttom-one {
    width: 30%;
  }
}

#error-404 {
  margin: 100px 0;
}

.text-error-one {
  font-size: 40px;
  color: var(--one);
}

@media (min-width: 768px) {
  .text-error-one {
    font-size: 50px;
    color: var(--one);
  }
}

.text-error-two {
  font-size: 25px;
  color: var(--one);
}

@media (min-width: 768px) {
  .text-error-two {
    font-size: 30px;
    color: var(--one);
  }
}

.single-image {
  width: 100%;
}

@media (min-width: 992px) {
  .single-image {
    width: 50%;
    margin-top: 0;
  }
}

.single-image figure{
  position: relative;
}

.single-head {
  width: 90%;
  background-color: white;
  margin-top: -30px;
  position: initial;
}

@media (min-width: 992px) {
  .single-head {
    width: 50%;
  }
}

.single-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: .3s;
  background-position: center;
}

@media (min-width: 300px) {
  .single-image img {
    width: 100%;
    height: 300px;
  }
}

@media (min-width: 576px) {
  .single-image img {
    width: 100%;
    height: 400px;
  }
}

@media (min-width: 768px) {
  .single-image img {
    width: 100%;
    height: 500px;
  }
}

@media (min-width: 992px) {
  .single-image img {
    width: 100%;
    height: 600px;
  }
}

@media (min-width: 1200px) {
  .single-image img {
    width: 100%;
    height: 700px;
  }
}

@media (min-width: 1380px) {
  .single-image img {
    width: 100%;
    height: 70vh;
  }
}

.single-head {
  padding: 50px 30px;
}

@media (min-width: 992px) {
  .single-head {
    padding: 70px;
  }
}

@media (min-width: 1200px) {
  .single-head {
    padding: 100px;
  }
}

.single-head h1 {
  font-size: 30px;
  font-weight: 200;
  margin: 15px 0;
}

@media (min-width: 768px) {
  .single-head h1 {
    font-size: 40px;
    font-weight: 200;
  }
}

@media (min-width: 1200px) {
  .single-head h1 {
    font-size: 50px;
    font-weight: 200;
  }
}

.author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: solid 2px var(--one);
  margin: 10px;
}

.abstrac {
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
}

@media (min-width: 768px) {
  .abstrac {
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
  }
}

.btn-share {
  width: 40px;
  height: 40px;
  color: var(--one);
  border: solid 2px var(--one);
  border-radius: 50%;
  transition: .3s;
  cursor: pointer;
  margin: 10px;
  font-size: 20px;
}

.btn-share:hover {
  color: var(--three);
  border: solid 2px var(--three);
  border-radius: 50%;
}

.single-share {
  margin: 20px 0;
}

.single-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .single-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
  }
}

.single-content figure {
  padding: 0 10px;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .single-content figure {
    padding: 0 50px;
  }
}

.single-content figure img {
  width: 100%;
  height: auto;
}

.single-content figure .figure-caption {
  margin: 0px;
  border-top: solid 0px var(--one);
  border-left: solid 3px var(--one);
  padding-top: 0px;
  padding-left: 10px;
  font-size: 12px;
  color: var(--one);
  font-weight: 400;
}

.single-content ul {
  list-style: none;
  padding: 0;
}

.single-content ul li:hover {
  background: #f6f6f6;
}

.single-content ul li {
  position: relative;
  display: block;
  padding: 15px;
  background: #fff;
  text-decoration: none;
  transition: all .3s ease-out;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.single-content ul li::after {
  position: absolute;
  content: '';
  border: .3em solid transparent;
  left: -1em;
  top: 50%;
  margin-top: -.5em;
  transition: all .3s ease-out;
}

.single-content ul li:hover::after {
  left: -.5em;
  border-left-color: var(--primary);
}

.single-content ul li:hover:after {
  left: -.5em;
  border-left-color: var(--one);
}

.single-content ul li:before {
  content: "•";
  position: absolute;
  left: -2em;
  top: 50%;
  margin-top: -1em;
  background: var(--one);
  height: 1.5em;
  width: 1.5em;
  line-height: 1.4em;
  text-align: center;
  font-weight: bold;
  color: white;
}

.figure-caption {
  position: absolute;
  bottom: 0;
  left: 0;
}

.single-content ol {
  list-style: none;
  padding: 0;
}

.single-content ol li:hover {
  background: #f6f6f6;
  border-radius: 5px;
}

.single-content ol li {
  position: relative;
  display: block;
  padding: 15px;
  background: #fff;
  text-decoration: none;
  transition: all .3s ease-out;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  counter-increment: my-awesome-counter;
}

.single-content ol li::after {
  position: absolute;
  content: '';
  border: .3em solid transparent;
  left: -1em;
  top: 50%;
  margin-top: -.5em;
  transition: all .3s ease-out;
}

.single-content ol li:hover::after {
  left: -.5em;
  border-left-color: var(--primary);
}

.single-content ol li:hover:after {
  left: -.5em;
  border-left-color: var(--one);
}

.single-content ol li:before {
  content: counter(my-awesome-counter);
  position: absolute;
  left: -2em;
  top: 50%;
  margin-top: -1em;
  background: var(--one);
  height: 1.5em;
  width: 1.5em;
  line-height: 1.4em;
  text-align: center;
  font-weight: bold;
  color: white;
}

.table-hover tbody tr {
  color: #212529;
  background-color: var(--five);
  background-color: white;
  transition: .3s;
}

.table-hover tbody tr {
  color: #212529;
  background-color: var(--five);
  background-color: white;
  transition: .3s;
  font-weight: 400;
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: var(--five);
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: var(--five);
  transition: .3s;
}

.table-striped tbody tr:nth-of-type(2n + 1):hover {
  background-color: var(--five);
  transition: .3s;
}

.single-content table {
  color: gray;
}

.single-content table {
  color: var(--one);
}

.single-content .table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 30px;
}

@media (min-width: 992px) {
  .single-content .table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 100px;
  }
}

.blockquote p {
  margin-bottom: 30px;
  font-size: 25px;
  line-height: 30px;
}

@media (min-width: 992px) {
  .blockquote p {
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 40px;
  }
}

blockquote {
  font-size: 20px !important;
  display: block;
  background: #fff;
  font-size: 30px;
  padding: 100px 0px 10px 0px;
  margin: 0 0 0px !important;
  position: relative;
  line-height: 1.2;
  font-style: italic;
  top: -20px;
}

@media (min-width: 992px) {
  blockquote {
    font-size: 30px !important;
    display: block;
    background: #fff;
    padding: 15px 30px 10px 115px;
    margin: 0 0 20px !important;
    position: relative;
    font-size: 30px;
    line-height: 1.2;
    top: 0px;
  }
}

blockquote::after {
  content: "";
}

blockquote::before {
  content: "\201C";
  font-size: 260px;
  color: var(--one);
  position: absolute;
  left: -20px;
  top: -33px;
  font-family: arial;
}

@media (min-width: 992px) {
  blockquote::before {
    content: "\201C";
    font-size: 301px;
    color: var(--one);
    position: absolute;
    left: 50px;
    top: -33px;
  }
}

.blockquote footer {
  background: transparent;
  font-size: 16px;
  margin: 15px 30px;
  color: var(--one);
  font-style: normal;
  font-weight: 600;
  border-top: 0;
  padding: 0;
}

@media (min-width: 992px) {
  .blockquote footer {
    background: transparent;
    font-size: 16px;
    margin: 15px 100px;
    color: var(--one);
    font-style: normal;
  }
}

.single-content .blockquote p {
  padding: 0 30px 0 30px;
}

@media (min-width: 992px) {
  .single-content .blockquote p {
    padding: 0 50px 0 100px;
  }
}

.single-content a {
  background-color: transparent;
  color: var(--one);
  text-decoration: none;
  background-image: linear-gradient(var(--one),var(--one));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 2px;
  transition: background-size .5s;
  padding-bottom: 4px;
}

.single-content a:hover {
  background-size: 0% 2px;
  color: var(--one);
}

.single-content iframe {
  width: 95%;
  background-color: var(--four);
  margin: 0 10px;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .single-content iframe {
    width: 90%;
    margin: 0 50px;
    margin-bottom: 30px;
  }
}

.single-content {
  margin: 0;
}

@media (min-width: 992px) {
  .single-content {
    margin: 50px 0;
  }
}

.line {
  width: 100%;
  height: 0px;
  background-color: var(--three);
}

@media (min-width: 992px) {
  .line {
    width: 100%;
    height: 1px;
    background-color: var(--three);
  }
}

.author-img img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: solid 5px var(--four);
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .author-img img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: solid 5px var(--four);
    margin-bottom: 15px;
  }
}

.product_slider h3 {
  font-size: 18px;
}

.product_slider {
  width: 60%;
  padding: 0 15px;
}

@media (min-width: 576px) {
  .product_slider{
    width: 28%;
  }
}

@media (min-width: 768px) {
  .product_slider{
    width: 33.3%;
  }
}

@media (min-width: 992px) {
  .product_slider{
    width: 25%;
  }
}

.blockquote-footer {
  text-align: center;
}

.error-404 {

}

#search-mobile {
  background-image: linear-gradient(to top, rgb(255,255,255) 1px, rgb(255,255,255) 1px, rgba(255,255,255, 0) 1px, rgba(255,255,255, 0) 1px);
  border: none;
  background-size: 0% 100%;
  transition: 0.35s ease-in-out;
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 100%;
}

#search-mobile:hover {
  background-size: 100% 100%;
}

#search-mobile {
  -webkit-box-shadow: inset 0 -1px 0 0 rgba(255,255,255,0.3);
  box-shadow: inset 0 -1px 0 0 rgba(255,255,255,0.3);
  margin: 30px 0 15px 0;
  width: 100%;
}

#search-mobile form {
  width: 100%;
}

#search-mobile input {
  border: 0;
  background-color: transparent;
  font-size: 1.1em;
  color: white;
  width: 100%;
}

#search-mobile input::placeholder {
  font-size: 1.1em;
  color: #61859d;
}

.icon-search {
  font-size: 30px;
  width: 30px;
  height: 30px;
  margin: 0 10px;
}

.btn_summit{
  border: none;
  width: 50px;
  height: 50px;
  background: transparent;
  color:white;
  font-size: 30px;
  padding: 0;
}

.btn_summit:hover{
  background: transparent;
  color:white;
}

/* Storefront conbine */

.space{
 width: 100%;
 height: 50px;
}

.cart__content a {
  margin-bottom: 10px;
  color: white !important;
  transition: .3s;
}

.cart__content a:hover{
  margin-bottom: 10px;
  color:#ffffffcc !important;
}

.cart__content .buttons a{
  background-color: var(--one);
  transition: .3s;
  width: 100%;
  text-align: center;
}

.cart__content .buttons a:hover{
  background-color: var(--four);
}

.form-control:focus {
  box-shadow: none !important;
}


.cover .wp-block-image, .cover-1 .wp-block-image {
  margin: 0 ;
}

.content-slider .cover > :is(h1,h2){
  font-size: 40px;
  color: white;
  font-weight: 100;
}

.content-slider .cover-1 > :is(h1,h2){
  font-size: 40px;
  color: white;
  font-weight: 100;
}

.content-slider .cover:first-child, .content-slider .cover-1:first-child{
  position: relative;
  z-index: 1;
}

.content-slider .cover:nth-child(2), .content-slider .cover-1:nth-child(2){
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: center;
  text-align: center;
  color: var(--three);
  top: calc(30% - 10px);
}

.content-slider .cover:nth-child(3), .content-slider .cover-1:nth-child(3){
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  text-align: center;
  color: var(--three);
  top: calc(30% - 10px);
}

.content-slider .cover:nth-child(4), .content-slider .cover-1:nth-child(4){
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  text-align: center;
  color: var(--three);
  top: calc(30% - 10px);
}

.content-slider .cover:nth-child(5), .content-slider .cover-1:nth-child(5){
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  text-align: center;
  color: var(--three);
  top: calc(30% - 10px);
}

@media (min-width: 768px) {

  .content-slider .cover > :is(h1,h2){
    font-size: 60px;
  }
  
  .content-slider .cover-1 > :is(h1,h2){
    font-size: 60px;
  }
  
  .content-slider .cover:nth-child(2), .content-slider .cover-1:nth-child(2){
    top: calc(40% - 10px);
  }
  
  .content-slider .cover:nth-child(3), .content-slider .cover-1:nth-child(3){
    top: calc(40% - 10px);
  }
  
  .content-slider .cover:nth-child(4), .content-slider .cover-1:nth-child(4){
    top: calc(40% - 10px);
  }
  
  .content-slider .cover:nth-child(5), .content-slider .cover-1:nth-child(5){
    top: calc(40% - 10px);
  }

}

.content-slider .wp-block-button__link:not(.has-background) {
  background-color: transparent;
}

.content-slider .wp-block-button__link:not(.has-text-color) {
  color: var(--three);
}


.content-slider .wp-block-button__link {
  color: var(--three);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  padding: 10px 20px;
  font-size: 18px;
  letter-spacing: 5PX;
  cursor: pointer;
}

.content-slider .wp-block-button__link:hover::before {
  opacity: 0;
  -webkit-transform: scale(0.5,0.5);
  transform: scale(0.5,0.5);
}

.content-slider .wp-block-button__link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0,102,173,0.5);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.content-slider .wp-block-button__link:hover::after {
  opacity: 1;
  -webkit-transform: scale(1,1);
  transform: scale(1,1);
}

.content-slider .wp-block-button__link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid rgba(0,102,173,0.5);
  -webkit-transform: scale(1.2,1.2);
  transform: scale(1.2,1.2);
}

.content-slider .wp-block-button__link:hover {
  color:var(--one);
}

.cover p, .cover-1 p{
  margin: 0;
}

.area-buttons a{
  display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.area-buttons a img{
  width: 100px;
  height: 100px;
  margin: 10px 20px;
  object-fit: cover;
}

.area-buttons a h2{
  background-color: transparent;
  color: white !important;
  text-decoration: none;
  background-image: linear-gradient(var(--one),var(--one));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size .5s;
  padding-bottom: 2px;
  font-size: 16px;
  text-align: center;
}

.area-buttons a:hover >  h2 {
  background-size: 100% 2px;
  color: var(--one);
  width: fit-content;
}

.contentmenu a {
  margin-bottom: 10px;
  display: block;
}

.contentmenu a span {
  background-color: transparent;
  color: white;
  text-decoration: none;
  background-image: linear-gradient(var(--one),var(--one));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size .5s;
  padding-bottom: 2px;
  text-align: center;
  margin-bottom: 10px;
}

.contentmenu a span:hover {
  background-size: 100% 2px;
  color: white;
}

.collapsible-menu {
  cursor: pointer;
  font-weight: 400;
}

.collapsible-menu.active, .collapsible-menu:hover {
}

.collapsible-menu:after {
  content: '\002B';
  float: right;
  margin-left: 5px;
  color: var(--one);
}

.collapsible-menu.active:after {
  content: "\2212";
  color: var(--one);
}

.contentmenu {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  display: flex;
  flex-direction: column;
}

.txt-blue{
  color: var(--one);
}

.line-blue{
  width: 100%;
  height: 1px;
  background: var(--one);
  margin-top: -1px;
}

.d__responsive__none{
  display: block;
}

@media (min-width: 576px) {
  .d__responsive__none{
    display: none;
  }
}

/* size guide */

.data-size {
  border-bottom: solid 3px var(--one);
}

.data-size strong {
  font-weight: bold;
  color: var(--one);
}

.btns-size a {
  width: 40px;
  height: 40px;
  background: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  transition: .3s;
}

.btns-size a.active {
  background: var(--one);
  color: white;
}

.btn-close {
  background: none;
  opacity: 1;
  position: absolute;
}

.btn-close:hover {
  opacity: 1;
}

.link-size{
  color: var(--one) !important;
}

.link-size:hover{
  color: var(--two) !important;
}

.stars{
  height: 26px;
}

.has-text-align-center{
  text-align: center !important;
}


.offer {
 /* color: red !important; */
}