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

:root {
  --color: #233aff;
  --color2: #0d2554;
  --color3: #121c22;
}

body {
  font-family: "Manrope", sans-serif;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.1 !important;
}
h3,
h4,
h5,
h6 {
  line-height: 1.3 !important;
  font-weight: 600;
}
strong {
  font-weight: 500;
}
a {
}
li,
td,
th {
  line-height: 1.5;
  font-size: 16px;
}
p {
  font-size: 17px;
  line-height: 1.7;
}
.cky-btn-revisit-wrapper {
  display: none !important;
}
.btn {
  border-radius: 0px;
  padding: 15px 25px;
}
.btn-primary {
  background-color: var(--color);
  border: 1px solid var(--color);
}
.btn-primary:hover {
  background-color: black;
  border: 1px solid black;
}
.btn-outline-primary {
  border: 0;
  background-color: transparent !important;
  color: var(--color);
  padding: 10px 0 !important;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  width: fit-content;
}

.btn-outline-primary::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.2s ease;
}
.btn-outline-primary:hover {
  color: var(--color) !important;
}
.btn-outline-primary:hover::after {
  transform: scaleX(0);
}
.btn-outline-primary {
  position: relative;
  overflow: hidden;
}

.btn-outline-primary .icon-wrapper {
  display: inline-block;
  position: relative;
  width: 1em; /* lub więcej jeśli ikony są większe */
  height: 1em;
}
.bg-secondary .btn:hover {
  background-color: white !important;
  color: var(--color3) !important;
}

/* Ikony nakładamy na siebie */
.btn-outline-primary .icon-wrapper i {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateX(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Stan początkowy */
.btn-outline-primary .bi-arrow-down-right {
  opacity: 1;
  z-index: 1;
}

.btn-outline-primary .bi-chevron-right {
  opacity: 0;
  transform: translateY(-50%) translateX(-10px);
  z-index: 0;
}

/* Hover efekt */
.btn-outline-primary:hover .bi-arrow-down-right {
  opacity: 0;
  transform: translateY(-50%) translateX(10px);
}

.btn-outline-primary:hover .bi-chevron-right {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.btn-secondary {
  background-color: white;
  color: black;
  padding: 20px 30px;
  width: fit-content;
  border: 0px !important;
}
.btn-secondary i {
  transition: 0.3s ease;
}
.btn-secondary:hover {
  background-color: var(--color) !important;
  color: white !important;
}
.btn-secondary:hover i {
  transform: rotate(45deg);
}
.e-catalogue-btn {
  padding: 35px 50px;
}
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-toggle::after {
  display: inline-block;
  margin-left: 25px;
  vertical-align: center;
  font-family: "bootstrap-icons";
  content: "\f285";
}
.dropdown-toggle::after {
  border: 0px !important;
}
.dropdown-submenu:hover > .dropdown-submenu-menu,
.dropdown-submenu:focus-within > .dropdown-submenu-menu {
  display: block;
  left: 100%;
  top: 0;
  margin-top: -1px;
}
.dropdown-submenu-menu {
  display: none;
  position: absolute;
  z-index: 1000;
  min-width: 10rem;
  padding: 0.5rem 0;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
/* Style dla mobilnego menu offcanvas */
.offcanvas {
  max-width: 80%;
}

/* Style dla mobilnego menu */
.mobile-menu ul {
  list-style: none;
  padding-left: 0;
}

.mobile-menu .nav-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu .nav-link {
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Style dla submenu */
.mobile-menu .submenu {
  display: none;
  padding-left: 1rem;
}

.mobile-menu .submenu.show {
  display: block;
}

.mobile-menu .submenu-level-2 {
  padding-left: 1rem;
}

.mobile-menu .submenu-level-3 {
  padding-left: 1rem;
}

.mobile-menu .has-submenu > .nav-link::after {
  content: "\F282";
  font-family: "bootstrap-icons";
  transition: transform 0.3s;
}

.mobile-menu .has-submenu.active > .nav-link::after {
  transform: rotate(90deg);
}
.navbar a {
  font-weight: 500;
  color: black;
}
.navbar a:hover {
  color: var(--color) !important;
}
.logo {
  width: 100%;
  max-width: 225px;
}
.e-catalogue-btn {
  width: fit-content;
}
header {
  -webkit-box-shadow: 0 15px 38px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 15px 38px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.navbar-nav > li {
  margin: 0 10px;
  font-size: 15px;
}
.dropdown-menu {
  background-color: var(--color3);
  border: 0px;
  border-radius: 0px;
  padding: 25px 0px;
  border: 1px solid rgba(255, 255, 255, 0);
  margin-top: 0px !important;
}
.dropdown-menu a {
  color: white;
}
.dropdown-menu a:hover {
  color: var(--color);
}
.dropdown-menu a {
  padding: 7px 35px;
  display: flex;
  justify-content: space-between;
}
.dropdown-item:focus,
.dropdown-item:hover {
  background-color: transparent !important;
}
.nav-link .bi-chevron-down::before {
  transition: 0.2s ease !important;
}
.nav-link:hover .bi-chevron-down::before {
  transform: rotate(180deg);
}
.dropdown-menu .dropdown-item {
  transition: 0.2s ease !important;
}
.dropdown-menu .dropdown-item:hover {
  transform: translateX(10px) !important;
}
.hfix {
  height: 86px;
}
.hero-swiper {
  height: 91vh;
}
.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: auto !important;
  left: 28px !important;
}
.hero-swiper .swiper-slide {
  background-size: cover;
  background-position: center;
  margin-left: 75px;
}
.navbar-toggler i {
  font-size: 35px !important;
  line-height: 1 !important;
  top: -5px !important;
  right: 10px !important;
  position: relative !important;
}
.swiper-pagination-bullet {
  height: 15px !important;
  width: 15px !important;
  margin: 15px 0px !important;
}
.swiper-pagination-bullet-active {
  background: var(--color) !important;
}
.h-max {
  max-width: 750px;
  width: 100%;
}
.squares div {
  width: 70px;
  height: 70px;
  z-index: 9;
}
.square-blue {
  background-color: var(--color);
}
.square-white {
  background-color: white;
  margin-top: -70px;
}
.squares2 .square-blue {
  background-color: #e1e6e9;
}
.squares2 .square-white {
  margin-top: 0px;
}
.text-primary {
  color: var(--color2) !important;
}
.text-secondary {
  color: var(--color) !important;
}
.fw-bold {
  font-weight: 800 !important;
}
.side-info .border-bottom {
  border-bottom: 4px solid var(--color) !important;
}
.text-light {
  color: #4a5257 !important;
}
.border-end {
  border-width: 2px !important;
}
.line {
  width: 100%;
  height: 10px;
  background-color: var(--color);
}
.bg-light {
  background-color: #e1e6e9 !important;
}
.bg-color {
  width: calc(100% - 75px);
}
.bg-primary {
  background-color: var(--color) !important;
}
.bg-secondary {
  background-color: var(--color3) !important;
}
.main-offer-slider .card {
  min-height: 520px;
}
.main-offer-slider .card img {
  object-fit: cover;
}
.main-offer-slider .num {
  top: -53px;
  left: 30px;
  font-size: 60px !important;
}
.product-swiper {
  padding-top: 50px;
}
.main-offer-slider .card img {
  filter: grayscale(1);
  transition: 0.3s ease;
}
.main-offer-slider .card:hover img {
  filter: grayscale(0);
}
.main-offer-slider .card {
  transition: 0.3s ease;
}
.main-offer-slider .card:hover {
  transform: translateY(-15px);
}
.main-offer-slider h5 {
  font-weight: 500;
}

.main-offer-slider .card-body {
  margin-bottom: 20px;
  transition: all 0.1s ease;
}
.main-offer-slider .card:hover .card-body {
  margin-bottom: 0;
}
.main-offer-slider .card-description {
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease;
  margin-bottom: 0;
}
.main-offer-slider .card:hover .card-description {
  max-height: 100px !important;
  opacity: 1 !important;
  margin-top: 10px !important;
}
.main-offer-slider .card:hover .card-arrow {
  transform: rotate(90deg);
}
.main-offer-slider .card-body i {
  transition: transform 0.3s ease;
}
.bg-color {
  height: 90%;
}
.mt-min {
  margin-top: -25px;
}
.back-img {
  background-size: cover;
  background-position: center;
}
.soc i {
  font-size: 70px;
}
.soc a {
  color: #b8b8b8;
  transition: 0.3s ease;
}
.soc a:hover {
  color: var(--color2);
}
.bg-dark {
  background-color: #0b0e15 !important;
}
.list-unstyled a {
  text-decoration: none;
  color: white !important;
  margin-bottom: 10px !important;
  display: block !important;
}
footer a {
  transition: 0.3s ease;
}
footer a:hover {
  color: var(--color) !important;
}
.nn1 {
  font-size: 70px !important;
}
.squares3 .square-blue {
  background-color: var(--color3);
}
.text-dark {
  color: #4a5257 !important;
}
.ppf-img {
  max-width: 350px;
  height: fit-content;
}
.product-swiper2 .border,
.product-swiper3 .border {
  border: 1px solid #2b363d !important;
}
.product-swiper2 a i:before,
.product-swiper3 a i:before {
  transition: 0.3s ease;
}
.product-swiper2 a:hover i:before,
.product-swiper3 a:hover i:before {
  transform: rotate(-45deg);
}
.card2 img {
  z-index: 1;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0;
  transition: 0.3s ease;
}
.product-swiper2 a:hover img,
.product-swiper3 a:hover img {
  opacity: 1;
}
.text-up {
  position: relative;
  z-index: 99;
  position: absolute;
  bottom: 35px;
}
.card2 {
  min-height: 550px;
}
.min1 {
  min-height: 58px;
}
.vid-modal .modal-body {
  padding: 0px !important;
}
.modal-content {
  border-radius: 0px !important;
  border: 0px !important;
}
.vid-modal .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 9;
}
.nav-tabs {
  border-bottom: 2px solid var(--color) !important;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  border: 2px solid var(--color) !important;
  border-bottom: 1px solid var(--color) !important;
  background-color: #ebedf3;
}
.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  color: var(--color2) !important;
  padding: 15px !important;
}
.nav-tabs .nav-link {
  border: 2px solid #ebedf3 !important;
  border-bottom: 1px solid var(--color) !important;
}
.nav-tabs li {
  margin-right: 10px;
}
.nav-tabs li:last-child {
  margin-right: 0px;
}
.list-b ul {
  padding-left: 0px !important;
}
.list-b li {
  list-style-type: none;
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}
.list-b li::before {
  content: "\F26D";
  font-family: "Bootstrap-icons";
  position: absolute;
  left: 0;
  font-size: 16px;
}
.bigi {
  font-size: 200px;
}
.ddbig {
  font-size: 8rem;
}
.svg {
  max-width: 400px;
}
.desc h3,
.desc h4 {
  font-weight: 400 !important;
}
.accordion-item {
  background-color: transparent;
  border: 0px;
}
.accordion-button:not(.collapsed) {
  background-color: transparent;
}
.accordion-button {
  background-color: transparent;
  font-weight: 600 !important;
  color: white !important;
  padding: 20px 0px !important;
  border-bottom: 2px solid #2b343a !important;
  font-size: 20px !important;
  border-radius: 0px !important;
}
.accordion-item p,
.text-light2 {
  color: #b7bdc1 !important;
}
.accordion-button:focus,
.accordion-button:not(.collapsed) {
  box-shadow: none !important;
}
.accordion-button.collapsed::after {
  filter: invert(1);
}
.accordion-body {
  padding: 20px 0px !important;
}
.form-control {
  background-color: transparent;
  border: 0px;
  border-bottom: 2px solid #2b343a;
  border-radius: 0px;
  padding: 10px 0px;
  color: white !important;
}

.form-control:focus {
  box-shadow: none;
  background-color: transparent;
  color: white;
  border-bottom: 2px solid #2b343a;
}
.form-control::placeholder {
  color: white;
}
.lab-sp {
  font-size: 14px;
  color: white;
}
.wpcf7-not-valid-tip {
  font-size: 12px;
}
textarea {
  height: 150px;
}
.form-label {
  width: 100% !important;
}
.wpcf7-list-item-label,
.wpcf7-list-item-label a {
  font-size: 11px !important;
  color: white !important;
  line-height: 1.2 !important;
}
.wpcf7-list-item {
  line-height: 1;
}
.form-check {
  padding-left: 5px !important;
}
.accept {
  margin-top: -20px;
}
.wpcf7 .btn {
  padding: 15px 25px;
}
table thead th {
  background-color: var(--color3) !important;
  color: white !important;
  padding: 20px !important;
}
table td {
  padding: 20px !important;
}
table td a {
  margin: 0px 2px;
  color: var(--color2) !important;
}
table a {
  display: table-cell;
  padding: 0px 2px;
}
.dz-icon {
  background: #fff;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 25px;
  border: 5px solid var(--color3);
}
.dz-box {
  position: relative;
  margin-top: 100px;
}
.faq-section .accordion-button {
  border-bottom: 0px !important;
  padding-top: 0px !important;
}
.faq-section .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
  color: white;
}
.faq-section .accordion-body {
  padding-top: 0px !important;
}
.faq-section .accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}
.faq-section .accordion-item:last-child {
  border-bottom: 0px !important;
}

.faq-section .accordion-button.collapsed::after {
  filter: brightness(0) invert(1);
}
.icc1 {
  filter: invert(23%) sepia(97%) saturate(2878%) hue-rotate(235deg) brightness(97%) contrast(94%);
  max-height: 70px;
  height: 70px;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  color: white !important;
}
/* Ukryj menu mobilne na dużych ekranach */
@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }
  .dropdown-submenu {
    position: relative;
  }
  .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100% !important;
    margin-top: -6px;
  }
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
  .mtmin {
    margin-top: -200px !important;
  }
}

/* XX-Large devices (larger desktops) */
@media (max-width: 1400px) {
  .navbar-nav > li {
    margin: 0 5px;
    font-size: 14px;
  }
}

/* X-Large devices (large desktops) */
@media (max-width: 1200px) {
  .navbar-nav > li {
    margin: 0 0px;
    font-size: 13px;
  }
  .e-catalogue-btn {
    padding: 35px 20px;
  }
}

/* Large devices (desktops) */
@media (max-width: 992px) {
  .ddbig {
    font-size: 100px !important;
  }
  .nav-fill .nav-item .nav-link,
  .nav-justified .nav-item .nav-link {
    font-size: 15px !important;
  }
  .hpf-tabs .nav-justified .nav-item,
  .hpf-tabs .nav-justified > .nav-link {
    flex-basis: auto !important;
    flex-grow: 1 !important;
  }
  .hpf-tabs .nav-item {
    width: 35% !important;
    margin-right: 0px;
  }

  .desktop-menu {
    display: none;
  }
  .hfix {
    height: 57px;
  }
  .no img {
    width: 90% !important;
  }
  .hero-swiper .swiper-slide {
    margin-left: 0px;
  }
  .swiper-pagination-vertical.swiper-pagination-bullets,
  .swiper-vertical > .swiper-pagination-bullets {
    left: 12px !important;
  }
  .hero-swiper p,
  p {
    font-size: 14px !important;
  }
  .sec2 h3 {
    font-size: 18px !important;
  }
  .bg-color {
    width: 100%;
  }
  .squares {
    display: none !important;
  }
  .main-offer-slider .card {
    min-height: 350px;
  }
  .navbar-nav > li,
  .mobile-menu .nav-link {
    margin: 0 0px;
    font-size: 15px;
  }
  .hero-swiper {
    padding-bottom: 60px;
  }
  .hero-swiper .swiper-pagination .swiper-pagination-bullet {
    margin: 0px 5px !important;
  }
}

/* Medium devices (tablets) */
@media (max-width: 768px) {
}

/* Small devices (landscape phones) */
@media (max-width: 576px) {
}
