html,
body {
  overflow-x: hidden;
  background: #000000;
  color: #ffffff;
}

img {
  max-width: 100%;
}

:focus {
  outline: 0 !important;
}

.newestPosts {
  margin-bottom: 120px;
}
.newestPosts h1 {
  display: block;
  margin: 0 0 35px;
  text-align: center;
}
.newestPosts__post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 865px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .newestPosts__post {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 30px;
  }
}
.newestPosts__post img {
  width: 100%;
  max-width: 308px;
  height: 250px;
  margin-right: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .newestPosts__post img {
    margin-bottom: 15px;
    margin-right: 0;
  }
}
.newestPosts__seeAll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  margin-top: 35px;
}

.textPage h1 {
  display: block;
  margin: 0 auto 30px;
  text-align: center;
}
.textPage .col-lg-10 p {
  text-align: justify;
}

@font-face {
  font-family: "Candara";
  src: url("/assets/font/candara-bold.ttf") format("ttf");
}
.title {
  font-family: "Candara";
  font-style: normal;
  font-weight: 700;
  color: #ffffff;
}
.title--1 {
  font-size: 64px;
  line-height: 78px;
}
.title--2 {
  font-size: 36px;
  line-height: 44px;
}
.title--3 {
  font-size: 24px;
  line-height: 29px;
}
.title--4 {
  font-size: 20px;
  line-height: 24px;
}

h1, h2, h3, h4 {
  font-family: "Candara";
  font-style: normal;
  font-weight: 700;
  color: #ffffff;
}

h1 {
  font-size: 64px;
  line-height: 78px;
}

h2 {
  font-size: 36px;
  line-height: 44px;
}

h3 {
  font-size: 24px;
  line-height: 29px;
}

h4 {
  font-size: 20px;
  line-height: 24px;
}

.text {
  font-family: "Candara";
  font-style: normal;
  font-weight: 700;
  color: #ffffff;
}
.text--1 {
  font-size: 16px;
  line-height: 20px;
}
.text--2 {
  font-size: 14px;
  line-height: 17px;
}

p, span {
  font-family: "Candara";
  font-style: normal;
  font-weight: 700;
  color: #ffffff;
  font-size: 16px;
  line-height: 20px;
}

a {
  font-family: "Candara";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  color: #ffffff;
}
a:hover {
  text-decoration: none;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  color: #242424;
}

.btn {
  font-family: "Candara";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  padding: 3px 30px;
  background: #242424;
  border: 1px solid #000000;
  border-radius: 20px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.btn:hover {
  color: #ffffff;
  background: #000000;
  border: 1px solid #ffffff;
}

.menu {
  margin-bottom: 20px;
}
.menu__desctop {
  width: 100%;
  border-top: 5px solid #ffffff;
  border-bottom: 5px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .menu__desctop {
    display: none;
  }
}
.menu__desctop ul {
  list-style: none;
  margin: 0;
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.menu__desctop ul li a {
  font-family: "Candara";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #FFFFFF;
  margin: 0 15px;
  text-transform: uppercase;
  position: relative;
}
.menu__desctop ul li a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  left: 0;
  bottom: -2px;
  background: #ffffff;
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.menu__desctop ul li a:hover::before {
  width: 100%;
}
.menu__desctop ul li.current-menu-item a::before {
  width: 100%;
}
.menu__mobile {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #000000;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  padding-top: 70px;
  display: none;
}
.menu__mobile ul {
  list-style: none;
  margin: 0;
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.menu__mobile ul li {
  margin-bottom: 20px;
}
.menu__mobile ul li a {
  font-family: "Candara";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #FFFFFF;
  margin: 0 15px;
  text-transform: uppercase;
  position: relative;
}
.menu__mobile ul li a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  left: 0;
  bottom: -2px;
  background: #ffffff;
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.menu__mobile ul li a:hover::before {
  width: 100%;
}
.menu__mobile ul li.current-menu-item a::before {
  width: 100%;
}
.menu__mobile--mobileShow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu__glam {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 0 10px;
}
.menu__glam p {
  font-family: "Candara";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.5em;
  color: #FFFFFF;
  margin-bottom: 0;
}
.menu__logo--1 {
  width: 157px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .menu__logo--1 {
    width: 87px;
  }
}
.menu__logo--2 {
  width: 109px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .menu__logo--2 {
    display: none;
  }
}
.menu__top {
  height: 370px;
}
@media screen and (max-width: 767px) {
  .menu__top {
    height: 112px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .menu__top {
    height: 202px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}
.menu__iconsCart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #000000;
  margin: 10px 0 0;
  padding: 7px 5px 4px;
  border-radius: 18px;
}
@media screen and (max-width: 767px) {
  .menu__iconsCart {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.menu__iconsCart a {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 767px) {
  .menu__iconsCart a {
    width: 40px;
    height: 40px;
  }
}
.menu__iconsCart a img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .menu__iconsCart a img {
    width: 100%;
    height: 100%;
  }
}
.menu__iconsBar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #000000;
  padding: 6px 5px;
  margin: 10px 15px 0 10px;
  border-radius: 18px;
}
@media screen and (max-width: 767px) {
  .menu__iconsBar {
    margin: 0 17px;
  }
}
.menu__iconsBar a {
  margin: 0 7px;
}
@media screen and (max-width: 767px) {
  .menu__iconsBar a {
    margin: 0 17px;
  }
}
.menu__iconsBar a img {
  width: 20px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .menu__iconsBar a img {
    width: 30px;
  }
}
.menu__hamburgerContainer {
  position: fixed;
  z-index: 99999;
  background: #000000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 992px) {
  .menu__hamburgerContainer {
    display: none;
  }
}
.menu__hamburgerLine {
  background: #ffffff;
  display: block;
  width: 32px;
  height: 5px;
  position: absolute;
  left: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.menu__hamburgerLine--1 {
  top: 6px;
}
.menu__hamburgerLine--2 {
  bottom: 6px;
}
.menu__hamburger {
  display: block;
  width: 32px;
  height: 32px;
  position: relative;
}
.menu__hamburger--active .menu__hamburgerLine--1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 14px;
}
.menu__hamburger--active .menu__hamburgerLine--2 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: 13px;
}

@media screen and (max-width: 991px) {
  #wpadminbar {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 60px;
  }
}

footer {
  margin-top: 95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 15px;
  background: #242424;
}
footer p {
  font-family: "Candara";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
  padding: 0;
  margin: 0;
}

.page-404 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page-404 a {
  color: black;
}

.page-template-page-start header,
.page-template-page-start footer {
  display: none;
}

.startPage__logo1 {
  display: block;
  width: 350px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .startPage__logo1 {
    width: 250px;
  }
}
.startPage__logo2 {
  display: block;
  width: 408px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto 30px;
}
@media screen and (max-width: 991px) {
  .startPage__logo2 {
    width: 250px;
    margin: 0 auto;
  }
}
.startPage h1 {
  font-family: "Candara";
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 37px;
  letter-spacing: 0.5em;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .startPage h1 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.startPage p {
  font-family: "Candara";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 6px;
  text-align: center;
}
.startPage__oldLink {
  font-family: "Candara";
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 78px;
  text-align: center;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .startPage__oldLink {
    font-size: 20px;
    line-height: initial;
    margin-bottom: 20px;
  }
}
.startPage__linkAllPage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.post {
  text-align: justify;
}
.post h1 {
  text-align: center;
  display: block;
  margin: 0 auto 35px;
}
.post img {
  width: 100%;
  height: auto;
  max-height: 630px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 65px;
}

.bandPage h1 {
  display: block;
  margin: 0 auto 36px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.bandPage .bandImages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto 95px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .bandPage .bandImages {
    margin: 0 auto 40px;
  }
}
.bandPage .bandImages a {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5px;
}
@media screen and (max-width: 767px) {
  .bandPage .bandImages a {
    width: 50%;
    margin-bottom: 30px;
  }
}
.bandPage .bandImages a img {
  width: 100%;
  max-width: 265px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto 30px;
}
@media screen and (max-width: 767px) {
  .bandPage .bandImages a img {
    margin: 0 auto 15px;
  }
}
.bandPage .bandImages a span {
  font-family: "Candara";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: #FFFFFF;
}
.bandPage .bandImages a:hover {
  opacity: 0.6;
}
.bandPage__content {
  text-align: justify;
}
.bandPage__content iframe {
  width: 100%;
  height: 600px;
}
@media screen and (max-width: 767px) {
  .bandPage__content iframe {
    height: 300px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .bandPage__content iframe {
    height: 450px;
  }
}

.bandMember__allContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .bandMember__allContent {
    margin-top: 50px;
    display: block;
  }
}
.bandMember__img {
  padding: 120px 140px 0 0;
}
@media screen and (max-width: 991px) {
  .bandMember__img {
    padding: 0;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .bandMember__img {
    padding: 30px 30px 0 0;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .bandMember__img {
    padding: 120px 30px 0 0;
  }
}
.bandMember__img a img {
  width: 415px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .bandMember__img a img {
    width: 300px;
  }
}
@media screen and (max-width: 991px) {
  .bandMember__img a img {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
.bandMember__img a:hover {
  opacity: 0.6;
}
.bandMember__content {
  max-width: 520px;
}
@media screen and (min-width: 1299px) and (max-width: 1399px) {
  .bandMember__content {
    max-width: 480px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .bandMember__content {
    max-width: 400px;
  }
}
@media screen and (max-width: 991px) {
  .bandMember__content {
    text-align: center;
    max-width: 100%;
  }
}
.bandMember__content h1 {
  margin-bottom: 20px;
}
.bandMember__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 870px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 140px;
}
@media screen and (max-width: 1399px) {
  .bandMember__gallery {
    max-width: 100%;
    margin-top: 50px;
  }
}
.bandMember__gallery a {
  margin: 0 10px 30px;
}
@media screen and (max-width: 991px) {
  .bandMember__gallery a {
    margin: 0 5px 10px;
  }
}
.bandMember__gallery a img {
  width: 195px;
  height: 177px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .bandMember__gallery a img {
    width: 100px;
    height: 100px;
    margin: 0;
  }
}
.bandMember__gallery a:hover {
  opacity: 0.6;
}

.pagePresspacks__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px;
}
.pagePresspacks__presspack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 30px;
  border-bottom: 2px solid #ffffff;
  margin-bottom: 30px;
  max-width: 520px;
  width: 100%;
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .pagePresspacks__presspack {
    max-width: 450px;
  }
}
.pagePresspacks__presspack img {
  width: 195px;
  height: 180px;
  margin-right: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}
.pagePresspacks__presspack h2 {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .pagePresspacks__presspack {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .pagePresspacks__presspack img {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .pagePresspacks__presspack {
    max-width: 100%;
  }
}
.pagePresspacks h1 {
  margin-bottom: 50px;
}

.pageWatch h1 {
  display: block;
  margin: 0 auto 140px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media screen and (max-width: 991px) {
  .pageWatch h1 {
    margin: 0 auto 50px;
  }
}
.pageWatch__videos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pageWatch__videos iframe {
  width: 420px;
  height: 220px;
  max-width: 100%;
  margin-bottom: 60px;
}

.listenPage__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .listenPage__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.listenPage__left {
  max-width: 420px;
}
.listenPage__left h1 {
  text-align: left;
  margin-bottom: 48px;
}
.listenPage__left img {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
.listenPage__left h2 {
  margin-bottom: 20px;
}
.listenPage__right {
  margin-left: 20px;
  max-width: 450px;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .listenPage__right {
    max-width: 100%;
    margin-left: 0;
    padding-top: 20px;
  }
}
.listenPage__sec {
  margin-top: 100px;
}
.listenPage__sec h2 {
  margin-bottom: 60px;
}
.listenPage__sec .secCon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.listenPage__sec .secCon__yt {
  width: 100%;
  max-width: 530px;
}
.listenPage__sec .secCon__yt iframe {
  max-width: 100%;
  height: 400px;
}
.listenPage__sec .secCon__code {
  width: 100%;
  max-width: 420px;
}

.contactPage h1 {
  margin-bottom: 80px;
}
.contactPage .contactForm {
  width: 100%;
  max-width: 308px;
}
.contactPage .contactForm h2 {
  margin-bottom: 30px;
}
.contactPage__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contactPage__right {
  margin-left: 140px;
}
@media screen and (max-width: 767px) {
  .contactPage__right {
    margin-left: 0;
  }
}
.contactPage__right .bookus {
  margin-bottom: 55px;
}
.contactPage__right .bookus h2 {
  margin-bottom: 20px;
}

input,
textarea {
  font-family: "Candara";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
  background: #242424;
  padding: 1px 15px;
  border: 0px;
  margin: 8px 0 15px;
  max-width: 100%;
  width: 100%;
}

textarea {
  height: 160px;
}

input.wpcf7-form-control.has-spinner.wpcf7-submit {
  font-family: "Candara";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  padding: 3px 30px;
  background: #242424;
  border: 1px solid #000000;
  border-radius: 20px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
input.wpcf7-form-control.has-spinner.wpcf7-submit:hover {
  color: #ffffff;
  background: #000000;
  border: 1px solid #ffffff;
}

.shopPage h1 {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
}

.productLoop,
.related.products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  gap: 15px;
}

.productInLoop {
  width: 310px;
  margin: 0 auto 30px;
}
.productInLoop img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.productInLoop h2 {
  font-family: "Candara";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  display: block;
  margin: 10px auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.productInLoop .price {
  font-family: "Candara";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  display: block;
  margin: 0 auto 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.woocommerce span.onsale {
  display: none;
}
.woocommerce nav.woocommerce-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border: 0;
  margin: 50px 0 0;
}
.woocommerce nav.woocommerce-pagination ul li {
  padding: 0;
  margin: 0 5px;
  border: 0px;
  font-size: 30px;
}
.woocommerce nav.woocommerce-pagination ul li span {
  background: none !important;
  padding: 0;
}
.woocommerce nav.woocommerce-pagination ul li a {
  background: none;
  margin: 0;
  padding: 0;
}
.woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li a:focus {
  background: none;
}
.woocommerce .button,
.woocommerce button,
.woocommerce button.button,
.woocommerce button.button.alt.disabled,
.woocommerce button.button.alt {
  font-family: "Candara";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  padding: 3px 30px;
  background: #242424;
  border: 1px solid #000000;
  border-radius: 20px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.woocommerce .button:hover,
.woocommerce button:hover,
.woocommerce button.button:hover,
.woocommerce button.button.alt.disabled:hover,
.woocommerce button.button.alt:hover {
  color: #ffffff;
  background: #000000;
  border: 1px solid #ffffff;
}
.woocommerce button.button.alt.disabled {
  opacity: 0.6;
}

.featuresProducts__title {
  margin-bottom: 40px;
  font-family: "Candara";
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 78px;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .featuresProducts__title {
    font-size: 40px;
  }
}

.pageSideMenu .category {
  list-style: none;
  padding: 0;
  position: relative;
}
.pageSideMenu .category li {
  margin-bottom: 17px;
}
.pageSideMenu .category li a {
  font-family: "Candara";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
  position: relative;
}
.pageSideMenu .category li a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  left: 0;
  bottom: -2px;
  background: #ffffff;
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.pageSideMenu .category li a:hover::before {
  width: 100%;
}
.pageSideMenu .category li .subcat {
  list-style: none;
  margin-top: 4px;
  margin-left: 15px;
  padding-left: 4px;
  border-left: 1px solid #D9D9D9;
  display: none;
}
.pageSideMenu .category li .subcat li {
  margin-bottom: 0;
}
.pageSideMenu .category svg {
  width: 12px;
  height: auto;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-left: 15px;
  cursor: pointer;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}
.pageSideMenu .category__parent--active svg {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.woocommerce-info,
.woocommerce-message {
  border-top-color: #ffffff;
}
.woocommerce-info::before,
.woocommerce-message::before {
  color: #ffffff;
}

.woocommerce-error, .woocommerce-info, .woocommerce-message {
  background-color: #000000;
  color: #ffffff;
}

.woocommerce #respond input#submit, .woocommerce a.button,
.woocommerce button.button, .woocommerce input.button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  font-family: "Candara";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  padding: 3px 30px;
  background: #242424;
  border: 1px solid #000000;
  border-radius: 20px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.woocommerce #respond input#submit:hover, .woocommerce a.button:hover,
.woocommerce button.button:hover, .woocommerce input.button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  color: #ffffff;
  background: #000000;
  border: 1px solid #ffffff;
}

input#coupon_code {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.woocommerce .quantity .qty {
  width: 70px;
  height: 50px;
  padding: 0 15px 0 0;
  text-align: center;
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
  background: #0e0e0e;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #ffffff;
}

.select2-container--default .select2-selection--single,
.select2-dropdown {
  border-color: #ffffff;
  background: #242424;
}

.select2-container--default .select2-results__option[aria-selected=true], .select2-container--default .select2-results__option[data-selected=true] {
  background: #151515;
}

#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
  background-color: #0e0e0e;
}

#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before {
  display: none;
}

.woocommerce ul#shipping_method li {
  text-align: left;
}

.woocommerce ul#shipping_method li input {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.woocommerce ul#shipping_method {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

#shipping_method {
  min-width: 100%;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .coupon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    min-width: 100%;
  }
  .coupon input#coupon_code {
    margin-bottom: 20px;
  }
  .coupon button.button.wp-element-button {
    float: none;
    width: 100%;
    min-width: 100%;
    margin-bottom: 20px;
  }
}

.woocommerce-form__label-for-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.woocommerce-form__label-for-checkbox input {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 20px;
}

input#ship-to-different-address-checkbox {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 20px;
}

.woocommerce form .show-password-input, .woocommerce-page form .show-password-input {
  top: 5px;
}

section.up-sells.upsells.products {
  width: 100%;
  margin-bottom: 50px;
}
section.up-sells.upsells.products h2 {
  margin-bottom: 20px;
}

ul.wc_payment_methods.payment_methods.methods input {
  max-width: 20px;
}

.woocommerce.single-product .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 40px;
}
.woocommerce.single-product .product div.images.woocommerce-product-gallery {
  width: 530px;
  margin-right: 120px;
  float: none;
  padding-top: 50px;
}
.woocommerce.single-product .product .summary {
  float: none;
  width: 420px;
}
.woocommerce.single-product .product .summary .product_title {
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 17px;
}
.woocommerce.single-product .product .summary .price {
  margin-bottom: 40px;
}
.woocommerce.single-product .product .summary .price span {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
}
.woocommerce.single-product .product .summary .variations tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-width: 100%;
}
.woocommerce.single-product .product .summary .variations tr label {
  font-family: "Candara";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.woocommerce.single-product .product .summary .variations tr select {
  font-family: "Candara";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
  background: #242424;
  border: 1px solid #242424;
  cursor: pointer;
  padding: 1px 15px;
  margin-bottom: 15px;
}
.woocommerce.single-product .product .summary .variations a.reset_variations {
  width: 100%;
  display: block;
}
.woocommerce.single-product .product .summary .variations a.reset_variations:hover {
  opacity: 0.6;
  color: #ffffff;
}
.woocommerce.single-product .product .summary .woocommerce-variation-price {
  font-family: "Candara";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #FFFFFF;
  margin-bottom: 15px;
}
.woocommerce.single-product .product .summary .stock {
  color: #ffffff;
}
.woocommerce.single-product .product .summary .quantity .qty {
  color: #FFFFFF;
  background: #242424;
  border: 1px solid #242424;
  cursor: pointer;
  width: 76px;
  height: 46px;
  padding: 0 10px;
  font-size: 22px;
  margin-right: 30px;
}
.woocommerce.single-product .product .woocommerce-variation-add-to-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.woocommerce.single-product .product .product_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
}
.woocommerce.single-product .product .woocommerce-tabs ul.tabs li {
  color: #ffffff;
  background: #242424;
  margin-right: 5px;
  border-radius: 0;
}
.woocommerce.single-product .product .woocommerce-tabs ul.tabs li.active {
  color: #ffffff;
  background: #242424;
}
.woocommerce.single-product .product .woocommerce-Tabs-panel h2 {
  display: none;
}
.woocommerce.single-product .product .woocommerce-product-attributes {
  color: #ffffff;
}
.woocommerce.single-product div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
  width: calc(20% - 15px);
  display: inline-block;
  margin-bottom: 15px;
}
.woocommerce.single-product .woocommerce-product-gallery__image {
  width: 100%;
  margin-bottom: 40px;
}
.woocommerce.single-product figure.woocommerce-product-gallery__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 18px;
}
