/*animations* */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@keyframes anim-1 {
  from {
    transform: translateY(4px);
  }
  to {
    transform: translateY(-4px);
  }
}
@keyframes anim-2 {
  from {
    -webkit-mask-position: 150%;
  }
  to {
    -webkit-mask-position: -50%;
  }
}
@keyframes anim-3 {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(8px);
  }
}
/*-animations*/
/*fonts*/
.h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.h2 {
  font-size: 56px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 110%;
}

.p1 {
  font-size: 40px;
  font-weight: 500;
  line-height: 110%;
}

.p2 {
  color: #848484;
  font-size: 32px;
  font-weight: 500;
  line-height: 130%;
}
.p2 strong {
  color: #FF000F;
  font-weight: 500;
}
.p2 b {
  font-weight: 500;
}

.p3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

@media (max-width: 1439px) {
  .h1 {
    font-size: 64px;
  }
  .p1 {
    font-size: 32px;
  }
}
@media (max-width: 1200px) {
  .h1 {
    font-size: 56px;
  }
  .p1 {
    font-size: 24px;
  }
  .p2 {
    font-size: 24px;
  }
}
/*-fonts*/
/*options*/
*, ::after, ::before {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: normal;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  background: #000000;
  color: #FFFFFF;
}

body.active {
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-thumb {
  background: #282828;
}

body::-webkit-scrollbar-track {
  background: #000000;
}

p {
  width: 100%;
  margin: 0px;
}

h1, h2, h3, h4, h5 {
  width: 100%;
  margin: 0px;
}

img {
  max-width: 100%;
}

ul, ol {
  padding: 0px;
  margin: 0px;
}

li {
  list-style-type: none;
}

span {
  display: block;
}

table {
  width: 100%;
  border-spacing: 0px;
  border-collapse: collapse;
}

th {
  border: none;
}

td {
  border: none;
}

a {
  display: block;
  outline: none;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:hover {
  text-decoration: none;
  outline: none;
}

select {
  font-family: "Montserrat", sans-serif;
  opacity: 1;
  border-radius: 0;
  background: transparent;
  padding: 0px;
  margin: 0px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}
select:hover, select:focus {
  outline: none;
  text-decoration: none;
}

textarea {
  font-family: "Montserrat", sans-serif;
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 1;
  resize: none;
  border-radius: 0;
  background: transparent;
  padding: 0px;
  margin: 0px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border: none;
}
textarea::-webkit-input-placeholder {
  color: #BEBEBE;
}
textarea::-moz-placeholder {
  color: #BEBEBE;
}
textarea:-ms-input-placeholder {
  color: #BEBEBE;
}
textarea:-moz-placeholder {
  color: #BEBEBE;
}
textarea:hover, textarea:focus {
  outline: none;
  text-decoration: none;
}

input {
  font-family: "Montserrat", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 1;
  border-radius: 0;
  background: transparent;
  padding: 0px;
  margin: 0px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border: none;
}
input::-webkit-input-placeholder {
  color: #BEBEBE;
}
input::-moz-placeholder {
  color: #BEBEBE;
}
input:-ms-input-placeholder {
  color: #BEBEBE;
}
input:-moz-placeholder {
  color: #BEBEBE;
}
input:hover, input:focus {
  outline: none;
  text-decoration: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  opacity: 0;
}

button {
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0px;
  margin: 0px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
button:hover, button:focus {
  outline: none;
  text-decoration: none;
}

html,
body {
  height: 100%;
}

.container {
  height: 100%;
  width: 100%;
  max-width: 1312px;
  padding: 0 16px;
  margin: 0 auto;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

main {
  flex: 1 0 auto;
}

footer {
  flex: 0 0 auto;
}

.section-label {
  width: fit-content;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  padding: 8px;
  text-transform: uppercase;
  background: #FFF41D;
}

@media (max-width: 1200px) {
  .wrapper {
    overflow: hidden;
  }
}
/*-options*/
/*buttons*/
.btn1 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  width: fit-content;
  white-space: nowrap;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  text-align: center;
  overflow: hidden;
  padding: 0px 16px;
}
.btn1::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #BC000B;
}
.btn1::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #910009;
  transition: 0.3s;
}

.btn2 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  width: fit-content;
  white-space: nowrap;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #848484;
  padding: 0px 16px;
}
.btn2::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -1px;
  top: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 1px solid #FF000F;
  opacity: 0;
  transition: 0.3s;
}

@media (min-width: 1200px) {
  .btn1:hover::after {
    width: 100%;
  }
  .btn2:hover::before {
    opacity: 1;
  }
}
/*-buttons*/
/*form*/ 
.form-error {
  display: none;
  color: #A80000;
  font-size: 12px;
  margin-top: 4px;
}

.form-input {
  position: relative;
  display: block;
  width: 100%;
}

.form-input_point {
  width: 100%;
  height: 40px;
  border: 1px solid #000;
}

.form-input_point.false + .form-error {
  display: block;
}

.form-textarea {
  position: relative;
  display: block;
  width: 100%;
}

.form-textarea_point {
  width: 100%;
  height: 100px;
  border: 1px solid #000;
}

.form-textarea_point.false + .form-error {
  display: block;
}

.form-select {
  position: relative;
  display: block;
  width: 100%;
}

.form-select_point {
  width: 100%;
  height: 40px;
  border: 1px solid #000;
}
.form-select_point option {
  color: #0C0B0B;
}
.form-select_point option[value=""][disabled] {
  display: none;
}

.form-select_point:required:invalid {
  color: #B0B0B0;
}

.form-select_arrow {
  position: absolute;
  right: 10px;
  top: 30px;
}

.form-check {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  cursor: pointer;
}

.form-check_point {
  position: absolute;
  z-index: -1;
  width: 0px;
  height: 0px;
  padding: 0px;
  margin: 0px;
  opacity: 0;
}

.form-check_box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14px;
  min-width: 14px;
  height: 14px;
  border-radius: 2px;
  border: 1px solid #BFBFBF;
  margin-right: 8px;
}
.form-check_box svg {
  display: none;
}

.form-check_name {
  width: calc(100% - 24px);
  color: #1C1C1C;
  font-size: 13px;
  font-weight: 300;
  line-height: 170%;
}
.form-check_name a {
  display: inline;
  color: #1C1C1C;
  transition: 0.1s;
  text-decoration: underline;
}

.form-check_point:checked + .form-check_box {
  background: red;
}

.form-check_point:checked + .form-check_box svg {
  display: block;
}

.form-check_point.false + .form-check_box + .form-check_name + .form-error {
  display: block;
}

.form-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  background: #000;
  cursor: pointer;
}

.form-btn_point {
  color: #FFF;
  cursor: pointer;
}

/*-form*/
/*header*/
.header {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  transition: 0.3s;
}

.header.active {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0px;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header-logo img {
  width: 230px;
  height: 56px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 48px;
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 48px;
}
.header-menu a {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  transition: 0.2s;
}

.header-btn {
  padding: 0px 32px;
}

.header-contacts {
  display: none;
}

.header-label {
  display: none;
}

.header-burger {
  display: none;
}

.header-book {
  display: none;
}

@media (max-width: 1200px) {
  .header-logo img {
    width: 164px;
    height: 40px;
  }
  .header.show .header-logo {
    opacity: 1;
  }
  .header-nav {
    position: fixed;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100svh;
    background: #000;
    display: block;
    padding: 128px 16px 0px 16px;
    transform: translateX(100%);
    overflow: hidden;
    transition: 0.5s;
  }
  .header-nav.active {
    transform: translate(0);
  }
  .header-btn {
    display: none;
  }
  .header-label {
    display: block;
    color: #848484;
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 0.64px;
    margin-bottom: 16px;
    margin-top: 40px;
  }
  .header-contacts {
    display: grid;
    gap: 16px;
  }
  .header-contacts a {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 0.64px;
  }
  .header-menu {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
  }
  .header-menu a {
    color: #FFF;
    font-size: 32px;
    font-weight: 500;
    line-height: 110%;
    text-transform: none;
  }
  .header-burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }
  .header-burger span {
    width: 24px;
    height: 3px;
    background: #FFF;
    transition: 0.3s;
  }
  .header-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .header-burger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(100%);
  }
  .header-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
  }
  .header-book {
    position: absolute;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    bottom: -50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
  }
  .header-book img {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .header.two .header-logo {
    opacity: 0;
    transition: 0.3s;
  }
  .header.two.active .header-logo {
    opacity: 1;
  }
}
@media (min-width: 1200px) {
  .header-menu a:hover {
    color: #FF000F;
  }
}
/*-header*/
/*footer*/
.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: -4px;
}
.footer-logo img {
  width: 100%;
}

.footer-wrap {
  background: #282828;
  padding: 40px 0px 24px 0px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.footer-info {
  grid-column-start: 1;
  grid-column-end: 5;
}

.footer-p {
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
}

.footer-boxs {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  grid-column-start: 7;
  grid-column-end: 13;
}

.footer-label {
  color: #9D9D9D;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.64px;
  margin-bottom: 16px;
}

.footer-menu {
  display: grid;
  gap: 16px;
}
.footer-menu a {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.64px;
  transition: 0.2s;
}

.footer-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid #9D9D9D;
  padding-top: 24px;
  margin-top: 40px;
}

.footer-copy {
  color: #9D9D9D;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  white-space: nowrap;
}

.footer-cover {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer-ul {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-ul a {
  color: #9D9D9D;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  text-decoration: underline;
  transition: 0.2s;
}

.footer-telegram {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
}
.footer-telegram svg {
  fill: #9D9D9D;
  transition: 0.2s;
}

@media (max-width: 1200px) {
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .footer-p {
    width: 50%;
  }
  .footer-boxs {
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .footer-cover {
    align-items: flex-start;
    order: -1;
  }
}
@media (max-width: 800px) {
  .footer-top {
    gap: 40px;
  }
  .footer-p {
    width: 100%;
  }
  .footer-boxs {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
  }
  .footer-ul {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
  }
}
@media (min-width: 1200px) {
  .footer-menu a:hover {
    color: #FF000F;
  }
  .footer-ul a:hover {
    color: #FFF;
  }
  .footer-telegram:hover svg {
    fill: #FFF;
  }
}
/*-footer*/
/*content*/
.content *:first-child {
  margin-top: 0px;
}
.content h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 110%;
  margin-top: 48px;
}
.content h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 110%;
  margin-top: 32px;
}
.content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  margin-top: 32px;
}
.content a {
  display: inline;
  color: #FF000F;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: underline;
  transition: 0.2s;
}
.content ul {
  margin-top: 32px;
}
.content ul li {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  margin-top: 24px;
  padding-left: 24px;
}
.content ul li:before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF000F;
}
.content ol {
  counter-reset: item;
}
.content ol ol {
  margin-top: 16px;
}
.content ol li:before {
  content: counters(item, ".") " ";
  counter-increment: item;
}
.content .wp-block-table {
  width: 100%;
  overflow: auto;
}
@media (max-width: 800px) {
  .content h3 {
    font-size: 24px;
  }
  .content h4 {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .content a:hover {
    color: #848484;
    text-decoration: underline;
  }
}
/*-content*/
/*modal*/
.modal {
  position: fixed;
  z-index: 20;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 16px;
  display: none;
}

.modal-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.modal-box {
  position: relative;
  z-index: 2;
  width: 595px;
  height: 100%;
  background: #ECECEC;
  margin-left: auto;
}
.modal-box::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: calc(100% - 24px);
  height: 24px;
  background: linear-gradient(180deg, rgba(236, 236, 236, 0) 0%, rgb(236, 236, 236) 100%);
}

.modal-box_wrap {
  width: 100%;
  height: 100%;
  padding: 24px;
  overflow: auto;
}
.modal-box_wrap::-webkit-scrollbar {
  width: 10px;
}
.modal-box_wrap::-webkit-scrollbar-thumb {
  background: #282828;
}
.modal-box_wrap::-webkit-scrollbar-track {
  background: #ECECEC;
}

.modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-h {
  color: #000000;
}

.modal-close {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  text-transform: uppercase;
  transition: 0.1s;
}
.modal-close svg {
  fill: #000000;
  transition: 0.1s;
}

.modal-bottom {
  margin-top: 40px;
}

.modal-content {
  color: #000000;
}

@media (max-width: 800px) {
  .modal-box {
    width: 100%;
  }
  .modal-close span {
    display: none;
  }
}
@media (min-width: 1200px) {
  .modal-close:hover svg {
    fill: #FF000F;
  }
}
/*-modal*/
/*start*/
.start-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  height: 100vh;
  align-items: center;
}

.start-text {
  grid-column-end: 1;
  grid-column-end: 2;
}

.start-promo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.start-date {
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  opacity: 0.75;
}

.start-p {
  margin-top: 24px;
}

.start-info {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}
.start-info span {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  white-space: nowrap;
}

.start-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

.start-video {
  grid-column-start: 2;
  grid-column-end: 3;
}
.start-video video {
  width: 100%;
}

@media (max-width: 1439px) {
  .start-p {
    max-width: 440px;
  }
}
@media (max-width: 800px) {
  .start-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0px;
    height: 100%;
  }
  .start-text {
    width: 100%;
  }
  .start-p {
    margin-top: 16px;
  }
  .start-info {
    gap: 16px;
    margin-top: 16px;
  }
  .start-info svg {
    width: 170px;
    height: auto;
  }
  .start-buttons {
    gap: 12px;
    margin-top: 16px;
  }
  .start-btn {
    width: 100%;
    padding: 0px;
  }
  .start-video {
    display: flex;
    justify-content: center;
    align-items: center;
    order: -1;
    width: 100%;
    margin: 24px 0px 16px 0px;
  }
  .start-video video {
    width: 130%;
  }
}
/*-start*/
/*about*/
.about {
  overflow: hidden;
}

.about-slider {
  padding: 120px 0px;
  overflow: visible;
}

.about-slide {
  display: flex;
  align-items: flex-end;
  width: 33.3%;
  height: 390px;
  overflow: hidden;
}

.about-slide_wrap {
  position: relative;
  height: 290px;
  padding: 0px 90px;
  transition: 0.5s;
}

.about-slide_bg1 {
  position: absolute;
  left: 0;
  top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #848484;
}
.about-slide_bg1::after {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #BC000B;
}

.about-slide_bg2 {
  position: absolute;
  left: 23px;
  top: 84px;
  width: 1px;
  height: calc(100% - 108px);
  background: #848484;
}
.about-slide_bg2::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}

.about-slide_bg3 {
  position: absolute;
  left: 16px;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #848484;
}
.about-slide_bg3::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #848484;
}

.about-slide_bg4 {
  position: absolute;
  left: 56px;
  bottom: 5px;
  width: 694px;
  height: 4px;
  background: url("../icons/dots-1.svg") center no-repeat;
  background-size: contain;
}

.about-slide_h {
  color: #282828;
  font-size: 80px;
  font-weight: 700;
  transition: 0.3s;
}

.about-slide_p {
  color: #9D9D9D;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  transition: 0.3s;
}

@media (max-width: 1200px) {
  .about-slide {
    width: 50%;
  }
  .about-slide.swiper-slide-active .about-slide_wrap {
    height: 390px;
  }
}
@media (max-width: 800px) {
  .about-slider {
    padding: 80px 0px;
  }
  .about-slide {
    width: 90%;
  }
  .about-slide_wrap {
    padding: 0px 40px 0px 80px;
  }
}
@media (min-width: 1200px) {
  .about-slide:hover .about-slide_h {
    color: #848484;
  }
  .about-slide:hover .about-slide_p {
    color: #FFF;
  }
  .about-slide.swiper-slide-prev .about-slide_wrap {
    height: 390px;
  }
  .about-slide.swiper-slide-next .about-slide_wrap {
    height: 390px;
  }
}
/*-about*/
/*info*/
.info-wrap {
  position: relative;
  padding: 250px 0px;
}

.info-img {
  position: absolute;
}

.info-img_anim {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.info-img_anim img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-img1 {
  top: 98px;
  left: -16px;
  width: 160px;
  height: 228px;
}

.info-img2 {
  top: 0;
  right: 77px;
  width: 228px;
  height: 171px;
}

.info-img3 {
  bottom: 0;
  left: 300px;
  width: 228px;
  height: 171px;
}

.info-p {
  position: relative;
  z-index: 2;
  max-width: 950px;
  margin: auto;
  text-align: center;
}
.info-p span {
  display: inline;
}

.info-slider {
  display: none;
}

@media (max-width: 1200px) {
  .info-p {
    max-width: 700px;
  }
  .info-img1 {
    top: 10px;
  }
}
@media (max-width: 800px) {
  .info-wrap {
    padding: 80px 0px 0px 0px;
  }
  .info-img {
    display: none;
  }
  .info-slider {
    pointer-events: none;
    display: block;
    overflow: visible;
    margin-top: 40px;
  }
  .info-slider .swiper-wrapper {
    transition-timing-function: linear !important;
  }
  .info-slide {
    width: fit-content;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
/*-info*/
/*book*/
.book {
  padding: 170px 0px 120px 0px;
}

.book-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.book-aside {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  grid-column-start: 1;
  grid-column-end: 4;
}

.book-video {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 550px;
}
.book-video img {
  width: 100%;
  margin-top: -70px;
}

.book-a {
  margin-top: -30px;
}

.book-cover {
  position: relative;
  z-index: 2;
  grid-column-start: 5;
  grid-column-end: 13;
}

.book-promo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.book-date {
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  opacity: 0.75;
}

.book-top {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  align-items: flex-start;
}

.book-text {
  grid-column-start: 1;
  grid-column-end: 7;
}

.book-p {
  margin-top: 24px;
}

.book-info {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}
.book-info span {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  white-space: nowrap;
}

.book-buttom {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

.book-price {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  color: #FF000F;
  font-size: 24px;
  font-weight: 700;
  line-height: 110%;
  white-space: nowrap;
}
.book-price span {
  color: #848484;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  padding-bottom: 2px;
  text-decoration: line-through;
}

.book-contain {
  grid-column-start: 7;
  grid-column-end: 9;
}

.book-sub {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
}

.book-ul {
  margin-top: 16px;
}
.book-ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
  padding: 12px 0px;
  border-top: 1px solid #282828;
}
.book-ul span:nth-child(1) {
  color: #848484;
  font-size: 12px;
  font-weight: 500;
  line-height: 110%;
}
.book-ul span:nth-child(2) {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 110%;
}

.book-content {
  margin-top: 100px;
}

.book-mob {
  display: none;
}

@media (max-width: 1200px) {
  .book {
    padding: 100px 0px 80px 0px;
  }
  .book-wrap {
    display: block;
  }
  .book-aside {
    display: none;
  }
}
@media (max-width: 800px) {
  .book-video {
    width: 330px;
    min-width: 330px;
  }
  .book-aside {
    margin-bottom: 32px;
  }
  .book-top {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .book-contain {
    width: 100%;
  }
  .book-p {
    margin-top: 16px;
  }
  .book-buttom {
    gap: 16px;
    margin-top: 16px;
  }
  .book-price {
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 0px;
    white-space: nowrap;
  }
  .book-price span {
    padding: 0px;
  }
  .book-btn {
    width: 100%;
  }
  .book-info {
    gap: 16px;
    margin-top: 16px;
  }
  .book-info svg {
    width: 170px;
    height: auto;
  }
  .book-content {
    margin-top: 48px;
  }
  .book-mob {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .book-video {
    width: 100%;
    margin-top: -40px;
  }
  .book-video img {
    width: 140%;
    min-width: 140%;
    margin-top: 0px;
  }
}
/*-book*/
/*author*/
.author {
  padding: 170px 0px 140px 0px;
}

.author-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.author-aside {
  position: sticky;
  top: 120px;
  grid-column-start: 1;
  grid-column-end: 5;
}

.author-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.author-icon {
  margin-top: 12px;
}

.author-a {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: #848484;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  text-decoration: underline;
  transition: 0.2s;
  margin-top: 16px;
}

.author-cover {
  grid-column-start: 6;
  grid-column-end: 13;
}

.author-promo {
  position: relative;
  padding-left: 250px;
  margin-top: 100px;
}

.author-promo_video {
  position: absolute;
  left: -50px;
  top: 50%;
  width: 300px;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.author-promo_video img {
  width: 119%;
  min-width: 119%;
}

.author-promo_text {
  position: relative;
  z-index: 2;
}

.author-promo_gap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.author-promo_label {
  width: fit-content;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  padding: 8px;
  background: #FFF41D;
}

.author-promo_date {
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  opacity: 0.75;
}

.author-promo_h {
  color: #FFF;
  font-size: 32px;
  font-weight: 700;
  line-height: 110%;
}

.author-promo_p {
  color: #FFF;
  font-size: 24px;
  font-weight: 500;
  line-height: 110%;
  margin-top: 16px;
}

.author-promo_price {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  color: #FF000F;
  font-size: 24px;
  font-weight: 700;
  line-height: 110%;
  margin-top: 24px;
}
.author-promo_price span {
  color: #848484;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  padding-bottom: 3px;
  text-decoration: line-through;
}

.author-promo_a {
  margin-top: 24px;
}

@media (max-width: 1200px) {
  .author {
    padding: 100px 0px 80px 0px;
  }
  .author-wrap {
    display: block;
  }
  .author-aside {
    position: static;
    top: 0;
  }
  .author-content {
    margin-top: 56px;
  }
}
@media (max-width: 800px) {
  .author-content {
	position: relative;
	z-index: 2;
    margin-top: 48px;
  }
  .author-promo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px;
    margin-top: -30px;
  }
  .author-promo_video {
    position: static;
    transform: translate(0);
    width: 100%;
    margin: 20px 0px;
  }
  .author-promo_video img {
    width: 140%;
    min-width: 140%;
  }
  .author-promo_text {
    margin-top: -26px;
  }
}
@media (min-width: 1200px) {
  .author-a:hover {
    color: #FF000F;
    text-decoration: underline;
  }
}
/*-author*/
/*mistake*/
.mistake {
  padding: 110px 0px 120px 0px;
}

.mistake-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mistake-p {
  margin-top: 24px;
}

.mistake-a {
  margin-top: 24px;
}

@media (max-width: 800px) {
  .mistake {
    padding: 80px 0px;
  }
}
/*-mistake*/
/*policy*/
.policy {
  padding: 170px 0px 120px 0px;
}

.policy-wrap {
  max-width: 842px;
  margin: auto;
}

.policy-content {
  margin-top: 56px;
}

@media (max-width: 1200px) {
  .policy {
    padding: 100px 0px 80px 0px;
  }
}
@media (max-width: 800px) {
  .policy-h {
    font-size: 7.47vw;
  }
  .policy-content {
    margin-top: 48px;
  }
}
/*-policy*/
/*payola*/
.payola {
  padding: 170px 0px 120px 0px;
}

.payola-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.payola-aside {
  position: sticky;
  top: 120px;
  grid-column-start: 1;
  grid-column-end: 6;
}

.payola-promo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.payola-label {
  width: fit-content;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  padding: 8px;
  background: #FFF41D;
}

.payola-date {
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  opacity: 0.75;
}

.payola-p {
  font-size: 24px;
  font-weight: 500;
  line-height: 130%;
  margin-top: 16px;
}

.payola-price {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  color: #FF000F;
  font-size: 32px;
  font-weight: 700;
  line-height: 110%;
  margin-top: 16px;
}
.payola-price span {
  color: #848484;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  padding-bottom: 4px;
  text-decoration: line-through;
}

.payola-cover {
  position: relative;
  padding-left: 250px;
  margin-top: 40px;
}

.payola-img {
  position: absolute;
  z-index: -1;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.payola-img img {
  width: 360px;
  height: 360px;
}

.payola-sub {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
}

.payola-ul {
  margin-top: 16px;
}
.payola-ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
  padding: 12px 0px;
  border-top: 1px solid #282828;
}
.payola-ul span:nth-child(1) {
  color: #848484;
  font-size: 12px;
  font-weight: 500;
  line-height: 110%;
}
.payola-ul span:nth-child(2) {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 110%;
}

.payola-form {
  grid-column-start: 7;
  grid-column-end: 13;
}

#customer_details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.payola-inline-error-message {
  display: none;
}

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
  width: 100%;
}

.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
  width: 100%;
}

.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
  width: 100%;
}

.woocommerce h3 {
  font-family: "Montserrat", sans-serif;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 24px;
}

.woocommerce-billing-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.woocommerce form .form-row {
  padding: 0px;
  margin: 0px;
}

.woocommerce form .form-row label {
  display: none;
}

.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
  color: #FFF;
  height: 56px;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  padding: 0px 12px;
  border-radius: 0px;
  background: #3A3A3A;
  border: 1px solid #3A3A3A;
}

.woocommerce form .form-row .input-text:focus {
  border: 1px solid #FFF;
}

.woocommerce form .form-row.woocommerce-invalid input.input-text, .woocommerce form .form-row.woocommerce-invalid select {
  border-color: #FF000F;
}

.zen-ui-select {
  margin-bottom: 12px;
}

.zen-ui-select__value {
  display: flex;
  align-items: center;
  color: #FFF;
  height: 56px;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  padding: 0px 28px 0px 12px !important;
  border-radius: 0px;
  background: #3A3A3A;
  border: 1px solid #3A3A3A;
}

.zen-ui-select__value-text:first-letter {
  text-transform: uppercase;
}

.zen-ui-select__value > svg {
  fill: #FFF;
}

.zen-ui-select__value.disabled {
  color: #FFF;
  background: #3A3A3A;
}

.zen-ui-select__value.disabled > svg {
  fill: #FFF;
}

.zen-ui-select__value:hover {
  color: #FFF;
  background: #3A3A3A;
}

.zen-ui-select__value:hover > svg {
  fill: #FFF;
}

.zen-ui-select__options {
  border: none;
}

.zen-ui-select__option {
  color: #000;
}

.zen-ui-select__option:hover {
  background: #848484;
}

.zen-ui-select__option--current {
  color: #FFF;
  background: #848484;
}

.zen-ui-select__search {
  border: none;
}

.zen-ui-select__search-input {
  height: 48px;
  font-size: 16px;
}

.wcus-payola-fields {
  margin: 40px 0px;
}

.woocommerce-shipping-totals {
  display: none;
}

.cart-subtotal {
  display: none;
}

.product-remove {
  display: none;
}

.wp-block-woocommerce-cart-order-summary-shipping-block {
  display: none;
}

.wc-block-components-sale-badge {
  display: none !important;
}

.wc-block-cart-item__remove-link {
  display: none !important;
}

.wc-block-components-sidebar-layout {
  display: block !important;
  margin: 0px !important;
}

.wc-block-components-sidebar-layout .wc-block-components-main {
  width: 100% !important;
  padding: 0px !important;
}

.wc-block-cart-items thead {
  display: none !important;
}

.wc-block-components-sidebar {
  width: 100% !important;
  padding: 0px !important;
}

.wp-block-woocommerce-cart-order-summary-totals-block {
  display: none !important;
}

.wc-block-cart__submit-button {
  margin-left: auto !important;
}

.wc-block-cart-item__total {
  display: none !important;
}

.wc-block-cart__totals-title {
  display: none !important;
}

.wc-block-components-totals-item {
  padding: 0px !important;
}

.wc-block-cart-item__image {
  padding: 0px !important;
}

.wc-block-cart {
  padding-top: 0px !important;
}

.woocommerce-message {
  display: none !important;
}

.woocommerce .quantity .qty {
  background: #FFF;
  color: #000;
}

.wcus-checkout-fields + h3 {
  display: none;
}

.cqoc_container {
  display: none;
}

.shop_table thead {
  display: none;
}

.product-total {
  display: none;
}

#order_review_heading {
  display: none;
}

.woocommerce-additional-fields {
  margin: 40px 0px 28px 0px;
}

.woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th {
  padding: 0px;
  border: none;
}

.checkout-inline-error-message {
  display: none !important;
}

.woocommerce-privacy-policy-text {
  color: #9D9D9D;
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
}
.woocommerce-privacy-policy-text a {
  display: inline;
  color: #FF000F;
  font-weight: 500;
  text-decoration: underline;
}

.woocommerce-terms-and-conditions-checkbox-text {
  position: relative;
  color: #9D9D9D;
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
  padding-left: 30px;
}
.woocommerce-terms-and-conditions-checkbox-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #9D9D9D;
}
.woocommerce-terms-and-conditions-checkbox-text:after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  display: inline-block;
  transform: rotate(45deg);
  height: 10px;
  width: 6px;
  border-bottom: 2px solid #9D9D9D;
  border-right: 2px solid #9D9D9D;
  opacity: 0;
}
.woocommerce-terms-and-conditions-checkbox-text a {
  display: inline;
  color: #FF000F;
  text-decoration: underline;
}

.input-checkbox:checked + .woocommerce-terms-and-conditions-checkbox-text:after {
  opacity: 1;
}

.woocommerce-form__label-for-checkbox {
  line-height: 0 !important;
}
.woocommerce-form__label-for-checkbox abbr {
  display: none;
}

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

#add_payment_method #payment ul.payment_methods, .woocommerce-cart #payment ul.payment_methods, .woocommerce-checkout #payment ul.payment_methods {
  padding: 0px;
  border: none;
}

#add_payment_method #payment div.form-row, .woocommerce-cart #payment div.form-row, .woocommerce-checkout #payment div.form-row {
  padding: 0px;
}

.place-order button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  width: 100%;
  white-space: nowrap;
  color: #FFF;
  font-size: 14px;
  font-weight: 500 !important;
  line-height: 100%;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  text-align: center;
  overflow: hidden;
  padding: 0px;
  margin-top: 18px !important;
}
.place-order button::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #BC000B;
}
.place-order button::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #910009;
  transition: 0.3s;
}

.woocommerce table.shop_table th {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: 100%;
}

.woocommerce-Price-amount bdi {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #FF000F;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}

.woocommerce-invalid #terms {
  outline: none;
}

.woocommerce form .form-row label.checkbox, .woocommerce-page form .form-row label.checkbox {
  cursor: pointer;
}

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

.wc_payment_methods {
  margin-bottom: 24px !important;
}

.wc_payment_method {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  background: #3A3A3A;
  padding: 12px;
}

.product-name {
  padding: 0px !important;
  border: none !important;
}

.woocommerce .quantity .qty {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: transparent;
  pointer-events: none;
  height: 48px;
  width: 40px;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 110%;
  padding-left: 10px;
}

.product-name {
  width: 100%;
}

.cart_item {
  position: relative;
  height: 72px;
}

.woocommerce-error, .woocommerce-info, .woocommerce-message {
  color: #FFF;
  background: #3A3A3A;
  font-size: 14px;
  line-height: 110%;
  font-weight: 400;
}
.woocommerce-error a, .woocommerce-info a, .woocommerce-message a {
  display: inline;
  color: #FFF;
  font-weight: 400;
  font-size: 14px;
  line-height: 110%;
  pointer-events: none;
}

.woocommerce-error::before {
  color: #BC000B;
}

.woocommerce-error {
  border-top-color: #BC000B;
  display: grid;
  gap: 4px;
}

.woocommerce-thankyou-order-received {
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 24px;
}

.woocommerce ul.order_details {
  display: grid;
  margin-bottom: 0px;
}

.woocommerce ul.order_details li {
  padding-right: 0px;
  margin-right: 0px;
  border: none;
  border-top: 1px solid #282828;
  color: #848484;
  font-size: 12px;
  font-weight: 500;
  line-height: 110%;
  padding: 10px 0px;
}
.woocommerce ul.order_details li strong {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  margin-top: 4px;
}
.woocommerce ul.order_details li bdi {
  justify-content: flex-start;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  margin-top: 4px;
}

.woocommerce-order .product-name {
  display: flex;
  align-items: center;
  gap: 32px;
}

.woocommerce ul.order_details li:last-of-type {
  border-top: 1px solid #282828;
}

.shop_table.order_details tfoot {
  display: none;
}

.woocommerce-order-details__title {
  display: none;
}

.woocommerce-table__product-name {
  padding: 10px 0px !important;
  border-top: 1px solid #282828 !important;
}
.woocommerce-table__product-name a {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  pointer-events: none;
}
.woocommerce-table__product-name strong {
  color: #848484;
  margin-top: 4px;
}

.woocommerce-order-details {
  margin-bottom: 24px !important;
}

.woocommerce-column__title {
  margin-bottom: 24px;
}

.woocommerce-customer-details address {
  padding: 0px !important;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 200%;
}
.woocommerce-customer-details p {
  display: flex;
  align-items: center;
}

.payola.active .payola-aside {
  display: none;
}
.payola.active .payola-form {
  grid-column-start: 4;
  grid-column-end: 10;
}

.update_totals_on_change {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quantity {
  justify-content: flex-start !important;
}
.quantity .screen-reader-text {
  width: 48px !important;
  height: 48px !important;
  background: #3A3A3A !important;
}

@media (max-width: 1200px) {
  .payola {
    padding: 100px 0px 80px 0px;
  }
  .payola-wrap {
    display: block;
  }
  .payola-aside {
    position: static;
    top: 0;
    margin-bottom: 40px;
  }
  .payola-cover {
    padding-left: 150px;
  }
  .payola-img {
    left: -50px;
    top: -24px;
    transform: translate(0);
  }
  .payola-img img {
    width: 200px;
    height: 200px;
  }
}
@media (min-width: 1200px) {
  .place-order button:hover::after {
    width: 100%;
  }
  .woocommerce-privacy-policy-text a:hover {
    color: #FFF;
  }
  .woocommerce-terms-and-conditions-checkbox-text a:hover {
    color: #FFF;
  }
}
/*-payola*/