/*
 Theme Name: stayspicy
 Author: tadamart.pl
 Version: 1.0
 */


:root {
  --color: #C12545;

  --bs-border-color: #ededed;
}

body {
  font-family: futura-pt, sans-serif;
  background-color: black;
  overflow-x: hidden !important;
}

.admin-bar {
  margin-top: 32px;
}

h1,h2,h3,h4,h5,h6 {
  font-family: collier, sans-serif;
  color: white;
  line-height: 1 !important;
}
p, li {
  font-weight: 300 !important;
  font-size: 18px;
  line-height: 1.4;
  color: white; 
}
a {
  color: white;
  transition: 0s !important;
}
a:hover {
  color: var(--color);
}
strong {
  font-weight: 500 !important;
}


@media(min-width: 992px) {
  .container-w {
    max-width: 1920px !important;
      width: 95% !important;
  }
}
@media(max-width: 991.98px) {
  .menu .navbar {
    padding: 0px !important;
  }
  .menu .navbar-nav  {
    padding: 20px 0px;
  }
}
/* ------------------------- menu ------------------------- */
.hamburger-menu {
  cursor: pointer;
  width: 27px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger-menu:hover .line2, .hamburger-menu:hover .line3 {
  width: 100%;
}
.line {
  width: 100%;
  height: 2px;
  background-color: white;
}
.line2 {
  width: 65%;
  margin-left: auto;
  transition: 0.1s ease;
}
.line3 {
  width: 30%;
  margin-left: auto;
  transition: 0.1s ease;
}
.h-social i {
  font-size: 16px;
}
.mm-image img {
  height: 100vh;
}
.modal-menu {
  background-color: black;
  height: 100%;
}
.mm-close {
  font-size: 30px;
  cursor: pointer;
  margin-bottom: 0px;
    line-height: 1;
}
.mm-inner {
  width: 100%;
  padding: 20px;
  position: relative;
  z-index: 99;
}
.modal {
  padding-right: 0px !important;
}
.mm-close {
  transition: 0.2s ease;
}
.mm-close:hover {
  transform: rotate(90deg);
}
.mm-close img {
  width: 20px;
}
.mm-inner a {
  color: white;
  margin-bottom: 15px;
}
.mm-inner .svg-glitch {
  display: block;
  max-width: 190px;
  height: 50px;
}
.menu-links {
  text-align: center;
  font-size: 24px;
}

/* -------------------------  menu ------------------------ */
/* ------------------------- MOBILE BURGER ------------------------- */
.navbar-toggler {
  padding: 0px;
  border: 0px;
}
.navbar-toggler span {
  display: block;
  background-color: white;
  height: 3px;
  width: 30px;
  margin-top: 5px;
  margin-bottom: 5px;
  position: relative;
  opacity: 1;
  transition: all 0.2s ease-out;
  transform-origin: center left;
  margin-left: auto;
}

.navbar-toggler-icon {
  background-image: none !important;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
  transform: translate(17%, -100%) rotate(45deg);
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
  transform: translate(15%, 33%) rotate(-45deg);
  width: 100%;
}

.navbar-light .navbar-toggler {
  border: 0px;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler span:nth-child(2) {
  width: 75%;
}
.navbar-toggler span:nth-child(3) {
  width: 50%;
}
/* ------------------------- MOBILE BURGER ------------------------ */


/* ------------------------- STATIC ------------------------- */
.btn1 {
  background-color: transparent;
  color: white !important;
  padding: 12px 20px !important;
  transition: 0s !important;
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  border: 0px;
}
.btn1::before {
  content: "";
  width: 20px;
  height: 20px;
  border-left: 1px solid white;
  border-top: 1px solid white;
  position: absolute;
  left: 0px;
  top: 0px;
  transition: 0.2s ease;
}
.btn1::after {
  content: "";
  width: 20px;
  height: 20px;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.2s ease;
}
.btn1:hover::after, .btn1:hover::before  {
 width: 100%;
 height: 100%;
}
.lang-switch {
  text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    padding-left: 23px;
}
.ls {
  padding: 0px;
    background-color: transparent;
    border: 0px;
}
.ls a {
  color: white;
font-weight: 500;
text-transform: uppercase;
padding-left: 24px;
margin-top: 5px;
}
.ls .dropdown-item:focus, .ls .dropdown-item:hover {
  background-color: transparent !important;
  color: var(--color);
}
.red {
  color: var(--color);
}



.half-fluid .left-half, .half-fluid .right-half {
  left: 50%;
  margin-left: -50vw;
  max-width: 100vw;
  position: relative;
  right: 50%;
  width: 100vw;
  padding: 0px;
}
.half-fluid .image {
  background-size: cover;
  background-position: center;
  min-height: 400px;
  height: 100%;
}
@media (min-width: 992px) {
  .half-fluid .left-half {
    padding-left: 0 !important;
    position: absolute;
    left: 0;
    right: 50%;
    margin-left: auto;
    width: auto;
 }
  .half-fluid .right-half {
    padding-right: 0 !important;
    position: absolute;
    right: 0;
    left: 50%;
    margin-left: auto;
    width: auto;
 }
}
.logo {
  max-width: 87px;
}
.nav-link  {
  color: white;
  font-weight: 500;
  font-size: 18px;
  margin: 0px 20px;
}
.nav-link:focus, .nav-link:hover {
  color: var(--color);
}

.hero {
  height: 100vh;
  background-position: right;
  margin-top: -112px;
  background-size: cover;
}
.hero p {
  font-size: 24px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: transparent;
}

.owl-stage {
  display: flex;
  align-items: center;
}
.owl-partners img {
  padding: 10px 40px;
}
.owl-partners .owl-nav {
  top: 16%;
}
.owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 0%;
}
.owl-nav span {
  color: white !important;
  font-size: 35px !important;
  line-height: 1;
}
.owl-nav [class*=owl-]:hover span {
  color: var(--color) !important;
}
.counter-value {
  color: var(--color);
}
.container-fluid {
  padding-left: 0px;
  padding-right: 0px;
  overflow-x: hidden;
}
.sec2 {
  position: relative;
}
.back {
  position: absolute;
  z-index: -1;
  width: 100%;
  mix-blend-mode: exclusion;
}
.sign-text {
  font-family: "Caveat", cursive;
  font-size: 33px !important;
}
.sign p {
  font-size: 14px;
}
.sl {
  bottom: 10%;
  right: 10%;
  z-index: 9;
  text-align: right;
}
.sr {
  bottom: 10%;
  left: 10%;
  z-index: 9;
}
.z {
  mix-blend-mode: exclusion;
}
.back2 {
position: relative;
}
.sec-ai .container {
  position: absolute;
  top: 7%;
  left: 0px;
  right: 0px;
}
.influ {
  min-height: 500px;
  position: relative;
}
.overlay1 {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.87) 0%, rgba(41, 53, 86, 0) 42%);
}
.influ-inner {
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.psmall {
  font-size: 14px;
}
.owl-influ .owl-nav {
  top: 33%;
  width: 96%;

  left: 2%;
}
.owl-influ .owl-nav span {
  font-size: 85px !important;
}
.f-soc a {
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 1px;
}
.talk {
  text-decoration: none;
  font-family: collier, sans-serif;
}
.footer {
  background-size: cover;
}
.mm-logo {
  max-width: 87px;
  width: 100%;
}
.m-menu__toggle {
  position: relative;
  top: 2px;
}
.small {
  font-size: 12px;
}
.form-switch .form-check-input {
  margin-left: -3.1em;
}
.form-control {
  background-color: transparent;
  width: 100%;
  border: 0px;
  border-radius: 0px;
  color: white !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0px;
  padding-bottom: 10px;
}
.wpcf7-not-valid-tip {
  font-size: 12px !important;
}

.form-check-input:checked {
  background-color: var(--color) !important;
  border-color: var(--color) !important;
}
.form-check-input:focus {
  box-shadow: none !important;
}
::placeholder {
  color: white !important;
}
.form-label {
  width: 100%;
}
textarea {
  height: 120px;
}
.form-control:focus {
  background-color: transparent;
  border-color: white !important;
  box-shadow: none !important;
}
.cky-revisit-bottom-left {
  display: none !important;
}
.contact a {
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.8;
}
.influ {
  background-size: cover;
  background-position: center;
}

@media(min-width: 1200px) {
  .pbig {
    font-size: 24px;
  }
}
@media (max-width: 1400px) {
  .nav-link {
    margin: 0px 10px;
  }
  .sec-ai .container {
    top: 3%;
}
}

@media (max-width: 1200px) {
  .nav-link {
    margin: 0px 10px;
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .lang-switch {

      border-left:0px;
      border-right: 1px solid rgba(255, 255, 255, 0.4);
      padding-right: 25px;
      margin-right: 25px;
  }
  .nav-link {
    font-size: 20px;
  }
  .talk {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
.signb img {
  max-width: 70%;
    margin: 0 auto;
    display: block;
}
.sl {
  right: 0px;
  left: 0px;
  text-align: center;
  z-index: 9;
}
.sr {
  right: 0px;
  left: 0px;
  text-align: center;
  z-index: 9;
}
.z {
  max-width: 300px;
  margin: 0 auto;
  display: block;
  width: 100%;
}
.container-fluid {
  padding: 0px 25px;
}
.sec-ai .container {
  position: relative;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.back2 {
  width: 900px !important;
  max-width: none !important;
}
.sec-ai {
  overflow-x: hidden !important;
}
.hero {
  background-image: none !important;
    margin-top: 40px !important;
    margin-bottom: 50px !important;
    background-size: cover !important;
    text-align: center !important;
   height: auto !important;
}
.herom {
  margin-top: -111px;
    z-index: -1;
    position: relative;
}
.owl-partners .owl-nav {
  top: 6%;
}
}